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

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

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

Jobs at Enterprise Minds

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

A question that is both tricky and simple.

Round 2 - Technical 

(1 Question)

  • Q1. Questions about biochemistry
Round 3 - Aptitude Test 

Questions based on both numerical data and case studies.

Round 4 - One-on-one 

(2 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. What interests you in working for this company?
  • Ans. 

    I am interested in working for this company because of its innovative projects and strong reputation in the industry.

    • Innovative projects that challenge me to grow as a programmer

    • Strong reputation in the industry for quality work

    • Opportunities for career advancement and professional development

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. All employees having same salary in the smae department sql and pysprk
  • Q2. How to create pipeline in databricks
  • Ans. 

    To create a pipeline in Databricks, you can use Databricks Jobs or Apache Airflow for orchestration.

    • Use Databricks Jobs to create a pipeline by scheduling notebooks or Spark jobs.

    • Utilize Apache Airflow for more complex pipeline orchestration with dependencies and monitoring.

    • Leverage Databricks Delta for managing data pipelines with ACID transactions and versioning.

  • Answered by AI
  • Q3. Palindrome, 2nd char in every word make is to upper case, sql rank and dense rank releated questions , given 2 tables country and city we need to calculate total population in each continent by joining the...
  • Q4. String manuplation questions inpython

Interview Preparation Tips

Interview preparation tips for other job seekers - PRepare well on pyspark
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. What are Agile Values? Scrum Values? Scrum Ceremonies? Story Points?
  • Ans. 

    Agile values include individuals and interactions over processes and tools, while Scrum values include commitment, courage, focus, openness, and respect.

    • Agile values prioritize individuals and interactions over processes and tools

    • Scrum values include commitment, courage, focus, openness, and respect

    • Scrum ceremonies include Sprint Planning, Daily Standup, Sprint Review, and Sprint Retrospective

    • Story points are a unit of...

  • Answered by AI
  • Q2. As project manager what docs do you prepare? How do you contribute as a PM?
  • Ans. 

    As a project manager, I prepare various documents such as project plans, schedules, budgets, risk assessments, and progress reports. I contribute by leading the team, managing resources, and ensuring project success.

    • Prepare project plans outlining scope, objectives, deliverables, and timelines

    • Create schedules to allocate tasks and track progress

    • Develop budgets to manage project costs effectively

    • Conduct risk assessments...

  • Answered by AI
  • Q3. Capacity? Velocity? etc Agile/Scrum-based questions (bookish) this round was taken by Rajni
Round 2 - One-on-one 

(6 Questions)

  • Q1. Megha took my final round and asked me questions about Agile/Scrum, Stroy Points (estimation).
  • Q2. Ques on explaining Sprint Planning, Retro, Review, using Doc/Excel (screen sharing)
  • Q3. Ques on Conflict and Resource Management, some scenario-based question.
  • Q4. How will you make a low-performing resource a high-performing one?
  • Ans. 

    Provide clear expectations, offer support and training, provide feedback and recognition, set goals and milestones.

    • Clearly communicate expectations and goals to the resource.

    • Offer support and training to help the resource improve their skills and knowledge.

    • Provide regular feedback and recognition for progress made.

    • Set specific goals and milestones to track improvement.

    • Create a development plan with the resource to addr...

  • Answered by AI
  • Q5. Megha did not hire me because she felt I had adequate knowledge and practical experience. (insecurities) Anyway, good luck with your interview.
  • Q6. What is Scrum of Scrums? What is PI planning?
  • Ans. 

    Scrum of Scrums is a scaled agile framework where multiple Scrum teams coordinate their work. PI planning is a key event in SAFe where teams plan their work for the upcoming Program Increment.

    • Scrum of Scrums involves representatives from each Scrum team meeting regularly to discuss dependencies and progress.

    • PI planning is a two-day event where teams align on their objectives, dependencies, and priorities for the upcomi...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Magic Edtech Project Manager interview:
  • Agile Methodology
  • Waterfall
  • Scrum
  • Project Management
Interview preparation tips for other job seekers - Be well prepared with your bookish as well as practical answers.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Complete Computer Science Fundamentals like Computer networks, DBMS, Operating Systems, Linux, Data Structure and Algoritgms
  • Q2. All Linux Commands
  • Ans. 

    Linux commands are used to interact with the operating system and perform various tasks.

    • ls - list directory contents

    • cd - change directory

    • pwd - print working directory

    • mkdir - make directory

    • rm - remove files or directories

    • cp - copy files or directories

    • mv - move files or directories

    • grep - search for patterns in files

    • chmod - change file permissions

    • sudo - execute a command as a superuser

  • Answered by AI
  • Q3. OSI models, HTTPs request codes
  • Q4. Difference b/w list and tuple
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified after creation, tuple cannot.

    • List uses square brackets [], tuple uses parentheses ().

    • List is used for collections of items that may change, tuple for fixed collections.

    • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. Discussion about resume, job description and role
Round 3 - Aptitude Test 

UCAT exam - 40 question - 20min

Skills evaluated in this interview

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 ABAP, SAP MM, SAP SD and Javascript.
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.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k 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 65 reviews

3.3/5

Rating in categories

3.1

Skill development

3.4

Work-life balance

3.5

Salary

3.1

Job security

3.2

Company culture

3.0

Promotions

3.1

Work satisfaction

Explore 65 Reviews and Ratings
SAP ABAP Consultant

Hyderabad / Secunderabad

6-9 Yrs

Not Disclosed

Sap Fiori Consultant

Hyderabad / Secunderabad

6-9 Yrs

₹ 8-18 LPA

Servicenow Developer

Hyderabad / Secunderabad

6-9 Yrs

₹ 12-22 LPA

Explore more jobs
Software Engineer
86 salaries
unlock blur

₹4.5 L/yr - ₹17 L/yr

Senior Software Engineer
39 salaries
unlock blur

₹10 L/yr - ₹32.4 L/yr

Software Developer
17 salaries
unlock blur

₹6 L/yr - ₹14 L/yr

Devops Engineer
16 salaries
unlock blur

₹2.7 L/yr - ₹13 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