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

Indus Valley Partners Interview Questions, Process, and Tips for Experienced

Updated 18 Jan 2025

Top Indus Valley Partners Interview Questions and Answers for Experienced

View all 9 questions

Indus Valley Partners Interview Experiences for Experienced

Popular Designations

8 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding Rount
DSA Round + Puzzle
SQL + Project Discussion
JS

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is normalization
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization helps in minimizing data redundancy by dividing the database into multiple tables.

    • It ensures data integrity by avoiding update anomalies.

    • Normalization is achieved through a series of rules called normal forms, such as 1NF, 2NF, 3NF, etc.

    • Example: In a database, instead of storing customer details i...

  • Answered by AI
  • Q2. What is reflection
  • Ans. 

    Reflection is the ability of a program to examine and modify its own structure and behavior at runtime.

    • Allows accessing metadata of types and members at runtime

    • Enables dynamic instantiation of objects

    • Facilitates invoking methods dynamically

  • Answered by AI

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (11)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(4 Questions)

  • Q1. What is singleton design pattern
  • Ans. 

    Singleton design pattern restricts the instantiation of a class to a single instance and provides global access to it.

    • Used when only one instance of a class is required throughout the application

    • Provides a global point of access to the instance

    • Implemented using a private constructor, static method, and static variable

    • Example: Logger class, Database connection class

  • Answered by AI
  • Q2. C# LINQ queries for group and sum data from data table
  • Ans. 

    C# LINQ queries for group and sum data from data table

    • Use GroupBy() method to group data based on a specific column

    • Use Sum() method to calculate the sum of a column

    • Use Select() method to select the required columns

  • Answered by AI
  • Q3. Solid design principles
  • Ans. 

    Solid design principles are a set of guidelines for writing maintainable and scalable code.

    • Single Responsibility Principle (SRP) - each class should have only one responsibility

    • Open/Closed Principle (OCP) - classes should be open for extension but closed for modification

    • Liskov Substitution Principle (LSP) - subclasses should be able to replace their parent classes without affecting the program's correctness

    • Interface Se...

  • Answered by AI
  • Q4. OOPS concepts ,like association and all

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are an experienced software Engineer, focus on designing part of the system.

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jul 2022. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. More question was related to past experience
Round 2 - One-on-one 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. Questions related to past exp
  • Q3. Explain trade life cycle
  • Ans. 

    Trade life cycle is the process of a trade from initiation to settlement.

    • Trade initiation: Trade is proposed and agreed upon by parties involved.

    • Trade execution: Trade is executed on the exchange or over-the-counter market.

    • Trade confirmation: Parties confirm the details of the trade.

    • Trade settlement: Payment and transfer of securities are completed.

    • Trade reconciliation: Ensuring all details match between parties' recor...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Generic questions which are asked in most hr rounds

Senior Operations Analyst Interview Questions asked at other Companies

Q1. How will you resolve the issue if you get a highly escalated Severity 1 issue, and you have to resolve it in 30 minutes?
View answer (1)

Indus Valley Partners interview questions for popular designations

 Business Analyst

 (5)

 Associate Software Engineer

 (5)

 Software Engineer

 (4)

 Associate Engineer

 (4)

 Senior Operations Analyst

 (2)

 Operations Associate

 (2)

 Analyst

 (2)

 Implementation Engineer

 (2)

I applied via Referral and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. How can you fit in to this role
  • Q2. Questions about Finacial products, CDS, Asset Management

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared on Financial topics, especially Asset Management and Hedge Funds.
Be well verse with your CV, especially work experience and projects

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. I have asked several questions in this interview related to previous Job work and MySql related Questions.
  • Q2. 1: what's the difference between Sql and Mysql?
  • Ans. 

    MySQL is a relational database management system based on SQL.

    • MySQL is an open-source RDBMS while SQL is a language used to manage RDBMS.

    • MySQL supports multiple storage engines while SQL does not.

    • MySQL has better performance and scalability than SQL.

    • MySQL has better security features than SQL.

    • MySQL has a larger community and more resources available than SQL.

  • Answered by AI
  • Q3. 2: What's the difference between Clustered and non-clustered Index?
  • Ans. 

    Clustered index determines the physical order of data in a table while non-clustered index creates a separate structure.

    • Clustered index sorts and stores the data rows in the table based on their key values.

    • Non-clustered index creates a separate structure that contains the key values and a pointer to the data row.

    • A table can have only one clustered index while multiple non-clustered indexes can be created.

    • Clustered inde...

  • Answered by AI
  • Q4. 3:what are the constraint in Sql?
  • Ans. 

    Constraints in SQL are rules that limit the type of data that can be inserted, updated or deleted from a table.

    • Primary Key Constraint

    • Foreign Key Constraint

    • Unique Constraint

    • Check Constraint

    • Not Null Constraint

  • Answered by AI
  • Q5. 4: how many type of Joins in Mysql and more questions related to Sql

Interview Preparation Tips

Interview preparation tips for other job seekers - My advise is Just prepare for the Sql Basics to Advance, Interviewer is gonna start from Basic Sql and they will go into deep level of Sql thefore you should have good knowledge if Sql and if you have any experience in any programming language that would be benefit for you.

Skills evaluated in this interview

Implementation Engineer Interview Questions asked at other Companies

Q1. What is the SI unit of current?
View answer (5)

Jobs at Indus Valley Partners

View all

I applied via Recruitment Consultant and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About the current role I am handling!!

Interview Preparation Tips

Interview preparation tips for other job seekers - Be realistic
To the point

Senior HR Executive Interview Questions asked at other Companies

Q1. 3. Do you have knowledge about labour laws, PF proceedings and contract laws?
View answer (2)

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

Interview Questionnaire 

1 Question

  • Q1. All the questions would be from sql server and C# and asp.net

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through 50 questions links on google for interview of the above mentioned topics, whichever topics would be there in the links, go through those topics on KUDVENKAT channel on YOUTUBE because of the DETAILED EXPLAINATION by Mr. VENKAT

Implementation Engineer Interview Questions asked at other Companies

Q1. What is the SI unit of current?
View answer (5)

Interview questions from similar companies

I was interviewed before Sep 2016.

Interview Questionnaire 

1 Question

  • Q1. It was an online technical test. Questions were related to ME outlook, mobile device management , Networking and many more

Interview Preparation Tips

Round: Grammar Round
Experience: It was a written English grammar test to analyse how grammatically sound you are.
Tips: Just revise your basic English grammar like prepositions verbs nd essay/paragraph writing

Round: COMMUNICATION SKILLS Round
Experience: In this round they ask you to speak something on the given topic or sometimes group discussion . Basically they test your vocabulary, your thought process, pronunciation, accent and above all confidence.
Tips: Be confident in whatever you speak. Remember if you get nervous you will need with your words .

Round: Technical Interview
Experience: This was an online test and it had 50 questions all objective types.
Tips: Be technically sound. You cannot Google them as these search engines are blocked

College Name: Babu Banarasi Das National Institute Of Technology And Management (BBDNITM)

I applied via Recruitment Consultant and was interviewed before Sep 2018. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1.  overloading ,inheritance concepts,structures,pointers

Interview Preparation Tips

Interview preparation tips for other job seekers - have good understanding of basics and have expertise on any specific area.

Indus Valley Partners Interview FAQs

How many rounds are there in Indus Valley Partners interview for experienced candidates?
Indus Valley Partners interview process for experienced candidates usually has 2 rounds. The most common rounds in the Indus Valley Partners interview process for experienced candidates are One-on-one Round, Resume Shortlist and Technical.
How to prepare for Indus Valley Partners interview for experienced candidates?
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, Communication Skills, Excel, Javascript and SQL Server.
What are the top questions asked in Indus Valley Partners interview for experienced candidates?

Some of the top questions asked at the Indus Valley Partners interview for experienced candidates -

  1. 2: What's the difference between Clustered and non-clustered Inde...read more
  2. 1: what's the difference between Sql and Mysq...read more
  3. 3:what are the constraint in Sq...read more
How long is the Indus Valley Partners interview process?

The duration of Indus Valley Partners interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Indus Valley Partners Interview Process for Experienced

based on 4 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
Evalueserve Interview Questions
3.3
 • 112 Interviews
Edelweiss Interview Questions
3.9
 • 58 Interviews
View all

Indus Valley Partners Reviews and Ratings

based on 213 reviews

3.3/5

Rating in categories

2.9

Skill development

3.0

Work-life balance

3.3

Salary

3.8

Job security

3.3

Company culture

2.8

Promotions

2.8

Work satisfaction

Explore 213 Reviews and Ratings
SSE

Noida

4-9 Yrs

Not Disclosed

Operations Analyst

Noida

0-2 Yrs

Not Disclosed

Software Engineer

Noida

8-13 Yrs

Not Disclosed

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