Upload Button Icon Add office photos

Filter interviews by

Mindchipps Consulting Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I applied via Referral and was interviewed in Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Personality based question and to present slide on a specific topic

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly the HR round for the intro, followed by the TL with personality based questions and lastly the presentation based round

I applied via Referral and was interviewed before Oct 2021. 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 - Aptitude Test 

That was 1 hour apti test with subjective questions

Round 3 - Coding Test 

This was coding round with DSA. Good basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to get internship from a good organisation. You get chance to see and work in corporate culture

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

Interview Questionnaire 

1 Question

  • Q1. Questions on Machine Learning, SQL, Excel, Python and Statistics

Interview Preparation Tips

Interview preparation tips for other job seekers - Have an all-round understanding of SQL. Machine Learning and Python are next on the list. Build your numerical ability and logical reasoning.

Analyst Interview Questions & Answers

Ducat user image Yatharth Antil

posted on 2 Feb 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Only introduction?
  • Q2. Past experiences

Interview Preparation Tips

Interview preparation tips for other job seekers - Just chilll.

Interview Questionnaire 

5 Questions

  • Q1. Basic core java. like what is java, feature of java, overloading and overriding, encapsulation, abstract, interface, how to achieve encapsulation
  • Q2. String , stringbuffer, STRINGBUILDER, immutable mutable, string constant pool
  • Q3. What is collection. Also explain concrete class of collection. Hashmap. All class and interface
  • Ans. 

    A collection is a group of objects that can be stored, manipulated, and retrieved as a single unit.

    • Concrete classes of collection include ArrayList, LinkedList, HashSet, and TreeSet.

    • HashMap is a concrete class of the Map interface, which is a type of collection that stores key-value pairs.

    • Other classes and interfaces in the collection framework include Queue, Stack, Vector, and Collection.

  • Answered by AI
  • Q4. Servlets jsp also asked ur interviewer
  • Q5. And database

Skills evaluated in this interview

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

I was interviewed in Dec 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Self introduction
  • Q2. Salary
Round 2 - One-on-one 

(2 Questions)

  • Q1. Two wheeler to work
  • Ans. 

    Yes, I have a two wheeler for commuting to work.

    • I have a reliable two wheeler for daily commute.

    • It helps me avoid traffic congestion and reach work on time.

    • I ensure regular maintenance to keep it in good condition.

  • Answered by AI
  • Q2. Experience relevant to field
  • Ans. 

    I have 5 years of experience in B2B sales, consistently exceeding targets and building strong client relationships.

    • 5 years of experience in B2B sales

    • Consistently exceeded sales targets

    • Built strong client relationships

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Document processing
  • Q2. Mail application submit

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. Tell me something about yourself.
  • Ans. 

    I am a highly experienced consultant with a strong background in problem-solving and strategic planning.

    • Over 10 years of experience in consulting roles

    • Expertise in analyzing complex business challenges and developing effective solutions

    • Proven track record of successfully implementing strategies and driving organizational growth

    • Strong communication and interpersonal skills, able to build relationships with clients and s...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 3 rounds of interview, 1st round mostly general technical round, did not get shortlisted for second round.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected
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 - One-on-one 

(2 Questions)

  • Q1. What is happening in the global industry right now? Current Trends in interest rates How will you increase profitability of swiggy? Market sizing guesstimate
  • Ans. 

    Global industry is experiencing fluctuating interest rates, focus on increasing profitability of companies like Swiggy, and market sizing guesstimates.

    • Interest rates are currently fluctuating due to economic uncertainties and central bank policies.

    • To increase profitability of Swiggy, focus on optimizing operational efficiency, expanding customer base, and enhancing delivery services.

    • Market sizing guesstimates involve e...

  • Answered by AI
  • Q2. Introduce yourself. Why Redseer. Why consulting
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. List and tuple differences
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • Lists are mutable, meaning their elements can be changed after creation.

    • Tuples are immutable, meaning their elements cannot be changed after creation.

    • Lists are defined using square brackets [], tuples using parentheses ().

    • Lists are typically used for collections of similar items, tuples for fixed collections of dissimilar items.

  • Answered by AI
  • Q2. Generators in python
  • Ans. 

    Generators in Python are functions that allow you to iterate over a sequence of items without storing them all in memory at once.

    • Generators are created using a function with 'yield' instead of 'return'.

    • They are used to generate a sequence of values lazily, one at a time.

    • Generators are memory efficient as they do not store all values in memory at once.

    • Example: def my_generator(): for i in range(5): yield i

    • Example: ...

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Firstly They have asked me to introduce myself and further, they questions from manly 3 section from my resume
  • Q2. OOPS 1: Difference between Method overloading and method overriding 2: What is inheritance and it's benifits 3: Define encapsulation and Abstraction.
  • Ans. 

    Questions related to OOPS concepts in software engineering.

    • Method overloading is having multiple methods with the same name but different parameters, while method overriding is having a method in a subclass with the same name and parameters as a method in its superclass.

    • Inheritance is the ability of a class to inherit properties and methods from its parent class. It allows for code reuse and promotes modularity.

    • Encapsu...

  • Answered by AI
  • Q3. SQL 1: Difference between primary key and unique key 2: Why we use Normalisation and there different types 3: Some questions from SQL query, Join, delete, update, etc.
  • Ans. 

    Answers to SQL related questions for Software Engineer interview

    • Primary key uniquely identifies a record in a table, while unique key ensures that no two records have the same value for a specific column

    • Normalization is used to eliminate data redundancy and improve data integrity. Types include 1NF, 2NF, 3NF, BCNF, 4NF, 5NF

    • SQL queries can be used to retrieve data from one or more tables using joins. Delete and update s

  • Answered by AI
  • Q4. Aptitude 1: One question from number series

Interview Preparation Tips

Interview preparation tips for other job seekers - If you're going for the interview process for Milliman just well prepared all the above mentioned points, last but not least be genuine about your project

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

Milliman Interview Questions
3.7
 • 20 Interviews
Ven Consulting Interview Questions
3.5
 • 17 Interviews
Gi Group Interview Questions
3.9
 • 15 Interviews
Selectsys Interview Questions
3.6
 • 15 Interviews
VHS Consulting Interview Questions
3.7
 • 14 Interviews
Ducat Interview Questions
3.6
 • 12 Interviews
View all

Mindchipps Consulting Reviews and Ratings

based on 28 reviews

4.6/5

Rating in categories

4.3

Skill development

4.4

Work-life balance

4.5

Salary

4.2

Job security

4.5

Company culture

4.4

Promotions

4.3

Work satisfaction

Explore 28 Reviews and Ratings
Software Engineer
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Devops Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Automation Test Engineer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Mindchipps Consulting with

Shah Technical Consultants

3.5
Compare

Gi Group

3.9
Compare

Yashi Consulting Services

3.6
Compare

VHS Consulting

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