Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Parth Universal Team. If you also belong to the team, you can get access from here

Parth Universal Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Parth Universal Interview Questions and Answers

Updated 1 Nov 2023

Parth Universal Interview Experiences

Popular Designations

2 interviews found

I applied via Campus Placement and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

2 coding question
1 st - Find the triplet from array, don't exactly remember
2nd - Question related to BFS in graph similar to rotten oranges
was able to solve 1 and selected for next round
out of 150, 10 were selected for next round

Round 3 - Technical 

(2 Questions)

  • Q1. Questions on project, DBMS queries (3 queries on JOINS), MVC architecure as it was included in my project
  • Q2. DSA Question - Find subarray with given target, was able to give brute force and then optimised it with hashmap, coded in online editor + approach Find Kth largest element in BST , only approach

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall the interviewer were freindly. What i did't know i said i dnt know and they asked next question

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Nov 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Two questions were asked. One was a medium difficulty question based on hashmap and arrays while the other was a hard difficulty question based on graph and dp.

Round 3 - Technical 

(1 Question)

  • Q1. 2-3 medium difficulty DP questions were asked. Resume was discussed. Some development questions from reactjs, nextjs were asked.
Round 4 - HR 

(1 Question)

  • Q1. The confirmation of selection was conveyed. Job location and other basic things were discussed.

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to be good(not expert) at DSA and at the same time you need to be a development pro.

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I applied via Recruitment Consultant and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic communication skills were tested. Sone techical questn too. Versant test is mandatory

Interview Preparation Tips

Interview preparation tips for other job seekers - Please never go for these third party vendors. They misguide you regarding profile . I went for this third party vendor named savantis solution and it really misguided me

Interview Questionnaire 

2 Questions

  • Q1. They asked me on java and I have joined as a fresher they not much questions as I got selected as fresher on oops concepts and collections
  • Q2. Please be confident while facing interview and they will check your communication skills

Interview Questionnaire 

1 Question

  • Q1. Who is the most important person have to transform you in your life?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just speak your mind you will be selected.

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Walk-in and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Where do you want to see yourself after 5 years?
  • Q2. What are your preferences?
  • Q3. If given a chance on what do you want to make changes on the project if you've been assigned to achieve positive results with fewer efforts?
  • Q4. What are your expectations?
  • Q5. How do you want a corporate structure to be?
  • Q6. Why did you leave your last company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions asked to a fresher I would expect those to be a friendly manner and allow him to speak what he can and not just the questions you ask.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Company Website and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is recursion ? what is inheritance? what is heap? write a code to find the largest element in an array?
  • Ans. 

    Recursion is a process in which a function calls itself. Inheritance is a mechanism in OOP where a class inherits properties of another class. Heap is a region of memory used for dynamic memory allocation.

    • Recursion can be used to solve problems that can be broken down into smaller sub-problems.

    • Inheritance allows for code reuse and helps in creating a hierarchy of classes.

    • Heap is used for dynamic memory allocation in la...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not loose your confidence till the end of the interview and be clear with your voice .

Skills evaluated in this interview

Parth Universal Interview FAQs

How many rounds are there in Parth Universal interview?
Parth Universal interview process usually has 3-4 rounds. The most common rounds in the Parth Universal interview process are Coding Test, Technical and Resume Shortlist.
What are the top questions asked in Parth Universal interview?

Some of the top questions asked at the Parth Universal interview -

  1. DSA Question - Find subarray with given target, was able to give brute force an...read more
  2. 2-3 medium difficulty DP questions were asked. Resume was discussed. Some devel...read more
  3. Questions on project, DBMS queries (3 queries on JOINS), MVC architecure as it...read more

Tell us how to improve this page.

Parth Universal Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

Infosys Interview Questions
3.6
 • 7.7k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
ITC Interview Questions
3.9
 • 552 Interviews
Tata Group Interview Questions
4.2
 • 358 Interviews
Adani Group Interview Questions
3.9
 • 186 Interviews
View all

Parth Universal Reviews and Ratings

based on 15 reviews

3.3/5

Rating in categories

3.7

Skill development

3.6

Work-life balance

4.1

Salary

2.8

Job security

3.5

Company culture

3.5

Promotions

3.7

Work satisfaction

Explore 15 Reviews and Ratings
Software Development Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer 1
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Parth Universal with

Adani Group

3.9
Compare

Tata Group

4.2
Compare

Reliance Industries

4.0
Compare

Mahindra & Mahindra

4.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview