Upload Button Icon Add office photos
Premium Employer

i

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

Enterprise Minds

Compare button icon Compare button icon Compare
3.3

based on 60 Reviews

Filter interviews by

Enterprise Minds Interview Questions and Answers

Updated 26 Jun 2024

Enterprise Minds Interview Experiences

Popular Designations

6 interviews found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 25 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Introdue your self, project explanation
  • Q2. Few technical question you previous project
Round 2 - Technical 

(2 Questions)

  • Q1. SQL scenario based questions
  • Q2. Python list, python pandas and numpy

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

Java Developer - SDE Interview Questions & Answers

user image Anonymous

posted on 28 Mar 2023

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2023. 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 tips
Round 2 - Technical 

(10 Questions)

  • Q1. How can you make a class Immutable.
  • Ans. 

    To make a class Immutable, we need to ensure that its state cannot be modified after creation.

    • Make all fields final and private

    • Do not provide any setters

    • Ensure that any mutable objects are not exposed through getters

    • Make the class final or use private constructor to prevent subclassing

    • Override equals() and hashCode() methods to ensure that objects can be compared based on their state

  • Answered by AI
  • Q2. We are given List of Integers, we have to replace odd numbers with it's square using stream
  • Ans. 

    Replace odd numbers with their square using stream on a given List of Integers.

    • Use stream() method to convert the List of Integers into a stream.

    • Use map() method to apply the square function to each odd number.

    • Use filter() method to filter out even numbers.

    • Use collect() method to convert the stream back to a List.

    • Example: List numbers = Arrays.asList(1, 2, 3, 4, 5); numbers.stream().map(n -> n % 2 == 0 ? n : n * n).col

  • Answered by AI
  • Q3. Difference between Spring and Spring Boot
  • Ans. 

    Spring is a framework for building Java applications, while Spring Boot is a tool for simplifying and automating the configuration of Spring applications.

    • Spring provides a comprehensive framework for building Java applications, including features such as dependency injection, AOP, and MVC.

    • Spring Boot is built on top of Spring and provides a streamlined way to configure and run Spring applications, with features such as...

  • Answered by AI
  • Q4. There are 2 beans, how to select one of them
  • Ans. 

    Choose based on requirements and configuration

    • Identify the requirements for the bean

    • Check the configuration of both beans

    • Choose the bean that meets the requirements and has the appropriate configuration

  • Answered by AI
  • Q5. Difference between @Qualifier and @ Primary
  • Ans. 

    The @Qualifier annotation is used to differentiate between beans of the same type, while @Primary is used to give priority to a bean.

    • Both annotations are used to resolve ambiguity when multiple beans of the same type are present.

    • @Qualifier is used to specify a unique identifier for a bean, which can be used to inject that specific bean.

    • @Primary is used to give priority to a bean when multiple beans of the same type are...

  • Answered by AI
  • Q6. What are annotations
  • Ans. 

    Annotations are a form of metadata that provide additional information about code.

    • Annotations are denoted by the '@' symbol and can be applied to classes, methods, fields, and parameters.

    • They can be used to provide information to the compiler, tools, and runtime environments.

    • Examples of annotations include @Override, @Deprecated, and @SuppressWarnings.

    • Annotations can also be used to create custom annotations for specif

  • Answered by AI
  • Q7. What is singleton Pattern
  • Ans. 

    Singleton pattern restricts the instantiation of a class to one object.

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

    • Provides a global point of access to the instance

    • Implemented by making the constructor private and providing a static method to access the instance

    • Example: java.lang.Runtime#getRuntime()

    • Example: Database connection pool

  • Answered by AI
  • Q8. Different CRUD operations
  • Ans. 

    CRUD stands for Create, Read, Update, and Delete. These are the basic operations performed on data in a database.

    • Create - inserting new data into the database

    • Read - retrieving data from the database

    • Update - modifying existing data in the database

    • Delete - removing data from the database

  • Answered by AI
  • Q9. How to handle exception, if any 3rd party operation is down
  • Ans. 

    Use try-catch block to handle the exception and provide fallback mechanism

    • Wrap the 3rd party operation in a try-catch block

    • Catch the specific exception thrown by the operation

    • Provide a fallback mechanism to handle the exception

    • Log the exception for debugging purposes

  • Answered by AI
  • Q10. Some coding assignments on Collections

Interview Preparation Tips

Interview preparation tips for other job seekers - All the questions were answered correctly by me, it's just that i took more time to think on some questions.
So I would suggest to be concise and confident.

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. React native context
  • Q2. Redux toolkit architecture

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 (169)
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2022. There were 3 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 

Was an easy question on leetcode which involved use of object in javascript.

Round 3 - One-on-one 

(1 Question)

  • Q1. Based on scalability questions and problems you have faced in past…

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 (169)

Enterprise Minds interview questions for popular designations

 Software Engineer

 (4)

 Data Analyst

 (1)

Round 1 - Coding Test 

Python code with list, string related medium level questions

Round 2 - Technical 

(1 Question)

  • Q1. Based on projects which I done previously, some technical challenges i have ever faced, situation based questions like database.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join enterprise minds India pvt ltd because at the starting they are very sweet after that they can remove without any reason trust me without any reason they can remove.

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 (169)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Asked DSA. Ased question

Round 2 - One-on-one 

(1 Question)

  • Q1. Asked about core Java concepts,collections in java, OOPs

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 (169)

Jobs at Enterprise Minds

View all

Interview questions from similar companies

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

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. How do you go about SDLC process
  • Ans. 

    I follow the Software Development Life Cycle (SDLC) process to ensure successful project delivery.

    • I start with requirements gathering and analysis to understand the project scope and objectives.

    • I then move on to design, where I create a detailed plan for how the system will be built.

    • Next, I proceed to development, where the actual coding and implementation of the system takes place.

    • After development, I conduct thorough...

  • Answered by AI
  • Q2. What are roles and responsibilities of a BA
  • Q3. How do you deduce a complex problem statement
  • Ans. 

    By breaking down the problem into smaller components and analyzing each part individually

    • Identify the key components of the problem statement

    • Break down the problem into smaller, more manageable parts

    • Analyze each part individually to understand its impact on the overall problem

    • Consider different perspectives and potential solutions

    • Collaborate with team members or stakeholders to gain additional insights

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Explain the difference between BRD and FRD
  • Ans. 

    BRD is a document that outlines business requirements, while FRD is a document that details functional requirements.

    • BRD focuses on what the business needs, while FRD focuses on how those needs will be met.

    • BRD is high-level and non-technical, while FRD is detailed and technical.

    • BRD is created before FRD in the project lifecycle.

    • Example: BRD may state the need for a customer relationship management system, while FRD will...

  • Answered by AI
  • Q2. How do you go about creating user stories, how do you allocate the points
  • Ans. 

    User stories are created by collaborating with stakeholders and allocating points based on complexity and effort required.

    • Collaborate with stakeholders to gather requirements and understand user needs

    • Break down features into smaller, manageable user stories

    • Prioritize user stories based on business value and dependencies

    • Allocate points based on complexity, effort, and risk involved

    • Use techniques like Planning Poker to a

  • Answered by AI
  • Q3. What is the SOP while creating a requirement gathering doc
  • Ans. 

    The SOP for creating a requirement gathering doc involves planning, interviewing stakeholders, documenting requirements, and obtaining approval.

    • Plan the requirement gathering process by identifying stakeholders and their needs

    • Conduct interviews with stakeholders to gather detailed requirements

    • Document the requirements in a clear and organized manner

    • Obtain approval from stakeholders to ensure alignment with business goa

  • Answered by AI
Round 3 - One-on-one 

(3 Questions)

  • Q1. How proficient are you with using tools such as Jira, Cofluence, SQL
  • Ans. 

    I am highly proficient in using Jira, Confluence, and SQL for various business analysis tasks.

    • I have extensive experience using Jira for project management, issue tracking, and agile development.

    • I am skilled in using Confluence for documentation, collaboration, and knowledge sharing within teams.

    • I have strong SQL skills for data analysis, querying databases, and generating reports.

    • I have used these tools in previous pr...

  • Answered by AI
  • Q2. How do you handle disagreements within internal stakeholders
  • Q3. What values do you look in a collegue
  • Ans. 

    I look for values such as integrity, teamwork, communication, and adaptability in a colleague.

    • Integrity - honesty, trustworthiness, and ethical behavior

    • Teamwork - collaboration, support, and willingness to help others

    • Communication - clear and effective communication skills

    • Adaptability - ability to adjust to changing circumstances and problem-solve

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Quantiphi Analytics Solutions Private Limited Senior Business Analyst interview:
  • Insurance
  • Requirement Analysis
  • Stakeholder Management
Interview preparation tips for other job seekers - Regular Business Analyst questions as found on the web, be yourself, answer what you know and tell you don't if you can't answer.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(4 Questions)

  • Q1. Tell me your self introduction
  • Q2. What is DNS
  • Q3. What is letest version of windows
  • Q4. How to be configured office 365

Interview Preparation Tips

Interview preparation tips for other job seekers - Get your resume right when applying for a
job
A few things are very important while giving an interview
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Scenario based leadership questions
  • Q2. Revenue, margin, leadership skills
  • Q3. Conflict management, stakeholder management
Round 2 - One-on-one 

(3 Questions)

  • Q1. Portfolio management
  • Q2. CI CD pipeline based questions, some other technical questions
  • Q3. Stakeholder management, project metrics, leadership, team upskilling, resource management, risk management
Round 3 - One-on-one 

(2 Questions)

  • Q1. Solution architecture questions scenario based
  • Q2. DR activity scenario based questions
Round 4 - HR 

(2 Questions)

  • Q1. Cultural fit related
  • Q2. Leadership and team handling related questions
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Behavior, worst personality, useless manager
  • Q2. Always keeping eyes on girls one of the worst manager

Interview Preparation Tips

Interview preparation tips for other job seekers - One of the most concerning behaviors was exhibited by an HR manager named Shoeb Ahmed. Despite having ten years of experience, he struggled to collaborate effectively with coworkers and demonstrated inappropriate conduct towards female employees. Unfortunately, no action was taken against him, leading to our eventual departure from the company

Enterprise Minds Interview FAQs

How many rounds are there in Enterprise Minds interview?
Enterprise Minds interview process usually has 2 rounds. The most common rounds in the Enterprise Minds interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Enterprise Minds 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 Enterprise Minds. The most common topics and skills that interviewers at Enterprise Minds expect are SAP FICO, SAP MM, SAP ABAP, SAP Implementation and SAP SD.
What are the top questions asked in Enterprise Minds interview?

Some of the top questions asked at the Enterprise Minds interview -

  1. How to handle exception, if any 3rd party operation is d...read more
  2. We are given List of Integers, we have to replace odd numbers with it's square...read more
  3. There are 2 beans, how to select one of t...read more

Tell us how to improve this page.

Enterprise Minds Interview Process

based on 8 interviews

Interview experience

3.6
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all

Enterprise Minds Reviews and Ratings

based on 60 reviews

3.3/5

Rating in categories

3.1

Skill development

3.3

Work-life balance

3.4

Salary

3.1

Job security

3.2

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 60 Reviews and Ratings
Data Engineer Lead(Azure, Python or Java)

Hyderabad / Secunderabad

7-12 Yrs

₹ 25-27.5 LPA

DB2 Developer

Hyderabad / Secunderabad

5-10 Yrs

₹ 7-8.5 LPA

Azure DevOps Engineer with Terraform

Pune

8-13 Yrs

₹ 25-30 LPA

Explore more jobs
Software Engineer
81 salaries
unlock blur

₹4 L/yr - ₹13.3 L/yr

Senior Software Engineer
38 salaries
unlock blur

₹10 L/yr - ₹33 L/yr

Software Developer
17 salaries
unlock blur

₹6 L/yr - ₹14 L/yr

Devops Engineer
14 salaries
unlock blur

₹2.7 L/yr - ₹12.5 L/yr

Front end Developer
13 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Explore more salaries
Compare Enterprise Minds with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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