Upload Button Icon Add office photos

Filter interviews by

Ebaotech Associate Software Engineer Interview Questions and Answers

Updated 2 Aug 2024

Ebaotech Associate Software Engineer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Simple collection based coding question

Round 2 - Technical 

(2 Questions)

  • Q1. Explain Hashmap internal working
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and uses hashing to map keys to values for efficient retrieval.

    • Hashmap uses an array of linked lists to store key-value pairs.

    • When a key is inserted, its hash code is calculated to determine the index in the array where it will be stored.

    • If multiple keys have the same hash code (collision), they are stored in the same linked list at that index.

    • To retrieve a value,...

  • Answered by AI
  • Q2. Explain String and SCP
  • Ans. 

    String is a data type used to represent text in programming. SCP stands for String Constant Pool, a memory area in Java for storing unique string literals.

    • String is a sequence of characters enclosed in double quotes.

    • SCP is a special memory area in Java where unique string literals are stored to save memory.

    • String literals are stored in SCP and reused if they already exist.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Assignment 

2 hard DSA questions

Round 2 - Coding Test 

2 dsa questions were asked.
prefix search
binary tree camera

Round 3 - Coding Test 

Parling lot low level design

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

I applied via campus placement at Cummins College of Engineering for Women, Pune and was interviewed before May 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

3 coding questions with 10 test cases each. For an hour.

Round 2 - Technical 

(1 Question)

  • Q1. Questions asked around Java, c++
Round 3 - Technical 

(1 Question)

  • Q1. Asked to share screen and do some coding for given scenario
Round 4 - Quiz round 

(1 Question)

  • Q1. Asked questions like: 1. You want to cut a cake in 8 pieces, how many minimum cuts are required? 2.
Round 5 - HR 

(1 Question)

  • Q1. Normal details discussion about your background, family and interest in the given role

Interview Preparation Tips

Topics to prepare for Deutsche Bank Associate Software Engineer interview:
  • Java
  • Javascript
  • Database management system
  • Angularjs
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. JAVA Basics like HashMap internal working, collection framework, exception handelling.
  • Q2. Spring boot related basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Common JAVA interview questions were asked. If basics are strong you can clear it easily.
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 - HR 

(1 Question)

  • Q1. How much your getting and how much expecting?
Round 3 - Technical 

(1 Question)

  • Q1. What is case management?
  • Ans. 

    Case management is the process of managing and coordinating the various aspects of a case or project.

    • It involves identifying and assessing the needs of the case or project

    • Developing a plan of action to address those needs

    • Assigning tasks and responsibilities to team members

    • Monitoring progress and making adjustments as necessary

    • Ensuring that all stakeholders are informed and involved in the process

    • Examples include legal ...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. How soon you will join?
  • Ans. 

    I can join within 2 weeks.

    • I have completed all my prior commitments and can start immediately.

    • I just need to give a two-week notice to my current employer.

    • I am excited about this opportunity and can't wait to start contributing to the team.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - interview will be simple only but don't join with out reading reviews and work culture

I applied via Company Website and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. About work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on your Technical skill and that is more than enough aprt from other skills.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology (NIT), Raipur and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

The DSA round happens with pseudo code

Round 2 - Technical 

(2 Questions)

  • Q1. Question asked from my resume
  • Q2. How I implemented everything
Round 3 - HR 

(2 Questions)

  • Q1. Why you want to join
  • Q2. Where do you see yourself in five years

Interview Preparation Tips

Interview preparation tips for other job seekers - I haven’t clear the second round
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
No response

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

Round 1 - Coding Test 

Data structures and algo. 2 ques were asked in hackerrank

Round 2 - One-on-one 

(1 Question)

  • Q1. Questions related to System design
Round 3 - One-on-one 

(1 Question)

  • Q1. Basic question related to Spring and Java
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Mcq+coding which are medium level questions

Round 2 - Technical 

(3 Questions)

  • Q1. Multiple inheritance allowed in java?
  • Ans. 

    No, multiple inheritance is not allowed in Java.

    • Java does not support multiple inheritance for classes to avoid the diamond problem.

    • However, multiple inheritance is allowed for interfaces in Java.

    • Example: class A extends B, C is not allowed, but interface X extends Y, Z is allowed.

  • Answered by AI
  • Q2. Diff btw static and final
  • Ans. 

    Static is used to define class-level variables and methods, while final is used to define constants and prevent inheritance or modification.

    • Static variables and methods belong to the class itself, while final variables cannot be changed once initialized.

    • Static members can be accessed without creating an instance of the class, while final members must be accessed through an instance.

    • Static variables are shared among all...

  • Answered by AI
  • Q3. What is data encapsulation?
  • Ans. 

    Data encapsulation is the concept of bundling data and methods that operate on the data into a single unit, known as a class.

    • Encapsulation hides the internal state of an object and only exposes the necessary functionalities through methods.

    • It helps in achieving data abstraction and information hiding.

    • Example: A class 'Car' encapsulates data like speed, color, and methods like accelerate() and brake().

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. What are company core values
  • Ans. 

    Company core values are the fundamental beliefs that guide the behavior and decisions of employees.

    • Integrity - acting with honesty and transparency in all dealings

    • Innovation - constantly seeking new and better ways to solve problems

    • Customer focus - prioritizing the needs and satisfaction of customers

    • Teamwork - collaborating effectively with colleagues to achieve common goals

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Assignment 

2 hard DSA questions

Round 2 - Coding Test 

2 dsa questions were asked.
prefix search
binary tree camera

Round 3 - Coding Test 

Parling lot low level design

Ebaotech Interview FAQs

How many rounds are there in Ebaotech Associate Software Engineer interview?
Ebaotech interview process usually has 2 rounds. The most common rounds in the Ebaotech interview process are Coding Test and Technical.
What are the top questions asked in Ebaotech Associate Software Engineer interview?

Some of the top questions asked at the Ebaotech Associate Software Engineer interview -

  1. Explain Hashmap internal work...read more
  2. explain String and ...read more

Tell us how to improve this page.

Ebaotech Associate Software Engineer Salary
based on 60 salaries
₹3.5 L/yr - ₹10 L/yr
11% more than the average Associate Software Engineer Salary in India
View more details

Ebaotech Associate Software Engineer Reviews and Ratings

based on 5 reviews

3.5/5

Rating in categories

2.4

Skill development

2.8

Work-life balance

3.7

Salary

2.9

Job security

3.3

Company culture

3.1

Promotions

2.6

Work satisfaction

Explore 5 Reviews and Ratings
Associate Software Engineer
60 salaries
unlock blur

₹3.5 L/yr - ₹10 L/yr

Software Engineer
41 salaries
unlock blur

₹4.7 L/yr - ₹14 L/yr

Senior Software Engineer
39 salaries
unlock blur

₹10.9 L/yr - ₹28 L/yr

Software Developer
29 salaries
unlock blur

₹4.1 L/yr - ₹16.5 L/yr

Consultant
28 salaries
unlock blur

₹8 L/yr - ₹24 L/yr

Explore more salaries
Compare Ebaotech with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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