Upload Button Icon Add office photos
Engaged Employer

i

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

Indus Valley Partners Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Indus Valley Partners Associate Engineer Interview Questions and Answers

Updated 18 Mar 2023

Indus Valley Partners Associate Engineer Interview Experiences

4 interviews found

Round 1 - Aptitude Test 

SQL, English

Round 2 - Technical 

(1 Question)

  • Q1. Oops concepts, reasoning
Round 3 - Technical 

(1 Question)

  • Q1. Basic SQL and MySQL and Advance topics
Round 4 - HR 

(5 Questions)

  • Q1. What is your family background?
  • Q2. Why are you looking for a change?
  • Q3. Where do you see yourself in 5 years?
  • Q4. What are your strengths and weaknesses?
  • Q5. Tell me about yourself.
Round 5 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all GD tips

Interview Preparation Tips

Interview preparation tips for other job seekers - Well my first interview was good
Round 1 - Technical 

(1 Question)

  • Q1. WAP to check palendrom of any number
  • Ans. 

    A program to check if a number is a palindrome or not.

    • Convert the number to a string

    • Reverse the string

    • Compare the original string with the reversed string

    • If they are equal, the number is a palindrome

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Tell something about Polimorphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • It can be achieved through method overloading or method overriding.

    • Example: A shape class can have multiple subclasses like circle, square, rectangle, etc. All these subclasses can have a method called area() which can be called on any object of the shape class.

    • P...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Wap to check prime factor
  • Ans. 

    A program to check if a number is a prime factor or not.

    • Take input number from user

    • Loop through all numbers from 2 to n/2

    • If n is divisible by any number, it is not a prime factor

    • If n is not divisible by any number, it is a prime factor

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more n more coding and learn oops concepts

Skills evaluated in this interview

Associate Engineer Interview Questions Asked at Other Companies

asked in Nagarro
Q1. Count Ways To Reach The N-th Stair Problem Statement You are give ... read more
asked in Nagarro
Q2. Trailing Zeros in Factorial Problem Find the number of trailing z ... read more
asked in Nagarro
Q3. Convert First Letter to Upper Case Given a string STR, transform ... read more
asked in Tata Steel
Q4. What are the test done during maintenance of a power transformer?
asked in Tata Steel
Q5. how to control the speed of an EOT crane without VFD?
Round 1 - Technical 

(1 Question)

  • Q1. Tell something about Polimorphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they were objects of the same class.

    • It can be achieved through method overloading and method overriding.

    • Example: A shape class can have different subclasses like circle, square, and triangle, each with their own implementation of the draw method.

    • Polymorphism makes code more flexible and re

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Wap to check prime factor
  • Ans. 

    A program to check if a number is a prime factor or not.

    • Take input number from user

    • Loop through all numbers from 2 to n/2

    • If n is divisible by any number, it is not a prime factor

    • If n is not divisible by any number, it is a prime factor

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more n more coding and learn oops concepts

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2022. There were 2 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Basic SQL Functions, Clauses and Simple Procs
  • Q2. Basic Object Oriented Programming Concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - SQL, OOPS ,Confidence and Good Communication Skills

Indus Valley Partners interview questions for designations

 Associate

 (1)

 Associate Software Engineer

 (5)

 Operations Associate

 (2)

 Data Associate

 (1)

 Support Associate

 (1)

 Logistics Associate

 (1)

 Associate Software Developer

 (1)

 Fund Accounting Associate

 (1)

Associate Engineer Jobs at Indus Valley Partners

View all

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 was interviewed in Oct 2020.

Interview Questionnaire 

3 Questions

  • Q1. Final round is HR. In this round they will explain the working hours, CTC, etc and some set of HR questions will be also expected here
  • Q2. Tell me some of your strengths Weaknesses Where would you see yourself after 5 years Etc
  • Q3. Followed by 1st round written Examination F2F Technical interview is done. In this round we any expect all the technical questions of our subjects and the interviewer will check for our personality, commun...

Interview Preparation Tips

Interview preparation tips for other job seekers - All the Best Guys.prepare well and face the interview.

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 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 Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

Interview Questionnaire 

1 Question

  • Q1. A-Z in MySQL, programming languages(only concepts)
Contribute & help others!
anonymous
You can choose to be anonymous

Indus Valley Partners Interview FAQs

How many rounds are there in Indus Valley Partners Associate Engineer interview?
Indus Valley Partners interview process usually has 3 rounds. The most common rounds in the Indus Valley Partners interview process are Technical, Aptitude Test and HR.
How to prepare for Indus Valley Partners Associate Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Indus Valley Partners. The most common topics and skills that interviewers at Indus Valley Partners expect are SQL, MySQL, Communication Skills, Javascript and SQL Server.
What are the top questions asked in Indus Valley Partners Associate Engineer interview?

Some of the top questions asked at the Indus Valley Partners Associate Engineer interview -

  1. WAP to check palendrom of any num...read more
  2. Tell something about Polimorph...read more
  3. Wap to check prime fac...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

OpenText Technologies

No Interviews

INTERVIEWS

Indus Valley Partners

No Interviews

INTERVIEWS

Indus Valley Partners

No Interviews

INTERVIEWS

Bitcomm Technologies

No Interviews

INTERVIEWS

Indus Valley Partners

No Interviews

SALARIES

Indus Valley Partners

INTERVIEWS

Balkrishna Industries

No Interviews

SALARIES

OpenText Technologies

Tell us how to improve this page.

Indus Valley Partners Associate Engineer Interview Process

based on 2 interviews

1 Interview rounds

  • Technical Round
View more
Indus Valley Partners Associate Engineer Salary
based on 51 salaries
₹6 L/yr - ₹8.5 L/yr
25% more than the average Associate Engineer Salary in India
View more details

Indus Valley Partners Associate Engineer Reviews and Ratings

based on 3 reviews

4.5/5

Rating in categories

3.6

Skill development

4.1

Work-life balance

3.9

Salary

4.5

Job security

4.5

Company culture

3.6

Promotions

3.9

Work satisfaction

Explore 3 Reviews and Ratings
Associate Engineer

Noida

1-3 Yrs

Not Disclosed

Associate Engineer or Engineer

Noida

1-2 Yrs

₹ 6-6.95 LPA

Explore more jobs
Business Analyst
173 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
166 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
161 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Associate
108 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
105 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Indus Valley Partners with

Advent Construction

3.5
Compare

Edelweiss

3.9
Compare

Evalueserve

3.3
Compare

Genpact

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