Upload Button Icon Add office photos

Filter interviews by

Ebaotech Interview Questions and Answers

Updated 4 Oct 2024
Popular Designations

Ebaotech Interview Experiences

7 interviews found

I applied via Recruitment Consulltant and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Cleared this round waiting for the result
  • Q2. Knowledge about the sql data analytics FS BRD Client facing user story’s use case ?
  • Ans. 

    Understanding SQL data analytics in the context of functional specifications and user stories for client-facing applications.

    • SQL data analytics involves querying databases to extract insights, e.g., analyzing patient data trends in healthcare.

    • Functional Specifications (FS) outline system requirements; for example, a report generation feature for client dashboards.

    • Business Requirements Document (BRD) details project obj...

  • Answered by AI

Test Manager Interview Questions & Answers

user image Anonymous

posted on 12 Jul 2024

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

(2 Questions)

  • Q1. Test Strategy and Test Plan
  • Q2. Testing reports and metrics
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Oct 2023.

Round 1 - Technical 

(3 Questions)

  • Q1. About Manual testing concepts
  • Q2. Selenium and automation
  • Q3. Test Lead interview questions
Round 2 - One-on-one 

(3 Questions)

  • Q1. Behavioral questions
  • Q2. Testing scenarios
  • Q3. Role plays and questions
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

Software Engineer Interview Questions & Answers

user image Shrikant Kachare

posted on 8 Feb 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Company Website and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Java oop collection
  • Q2. Hashmap internal working
  • Q3. Custom Mutable class creation
  • Ans. 

    Creating a custom mutable class involves defining attributes and methods to modify its state.

    • Define the class with an __init__ method to initialize attributes.

    • Use setter methods to modify attributes, ensuring encapsulation.

    • Implement __str__ or __repr__ for a readable string representation.

    • Consider implementing methods for comparison and equality.

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

I applied via Naukri.com and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic java oop collection

I applied via Naukri.com and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic Java question, string collection, link list

Interview Preparation Tips

Interview preparation tips for other job seekers - it's an excellent product-based company for extended long-term growth
Are these interview questions helpful?

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Ebaotech?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview in Jun 2017.

Interview Questionnaire 

1 Question

  • Q1. Questions related to core java, advanced java, programs,

Interview Preparation Tips

Round: Technical + HR Interview
Experience: Previous work experience scenarios based questions

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions on DSA and OS.

  • Q1. 

    LRU Cache Design Problem Statement

    Design and implement a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    • get(key) - Retrieve the value associated with the...
  • Ans. 

    Design and implement a Least Recently Used (LRU) cache data structure that supports get and put operations with a specified capacity.

    • Implement a doubly linked list to keep track of the order of keys based on their usage.

    • Use a hashmap to store key-value pairs for quick access and updates.

    • When a key is accessed or updated, move it to the front of the linked list to mark it as the most recently used.

    • When the cache reaches...

  • Answered by AI
  • Q2. 

    Maximum of All Subarrays of Size K

    Given an array of non-negative integers and an integer K representing the length of a subarray, your task is to determine the maximum elements for each subarray of size ...

  • Ans. 

    Find the maximum elements for each subarray of size K in a given array.

    • Iterate through the array and maintain a deque to store the indices of elements in decreasing order.

    • Pop elements from the deque that are out of the current window.

    • Keep track of the maximum element in each subarray of size K.

    • Return the maximum elements for each subarray.

  • Answered by AI
  • Q3. What is virtual memory?
  • Ans. 

    Virtual memory is a memory management technique that allows a computer to compensate for physical memory shortages by temporarily transferring data from RAM to disk storage.

    • Virtual memory allows programs to use more memory than is physically available on the system.

    • It helps in multitasking by allowing multiple programs to run simultaneously without running out of memory.

    • Virtual memory uses a combination of RAM and disk...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAGoldman Sachs interview preparation:Topics to prepare for the interview - Coding Skills, Operating Systems , Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. Tell me about your internship, B.Tech project(BTP), CV
  • Q2. Implement LRU cache.
  • Ans. 

    Implement LRU cache

    • LRU stands for Least Recently Used

    • It is a cache eviction policy that removes the least recently used item

    • It can be implemented using a doubly linked list and a hash map

    • Newly accessed items are moved to the front of the list

    • When the cache is full, the item at the end of the list is removed

  • Answered by AI
  • Q3. What is virtual memory? Will we need virtual memory even if we have infinite amount of RAM?
  • Ans. 

    Virtual memory is a memory management technique that allows a computer to use more memory than it physically has.

    • Virtual memory uses a combination of RAM and hard disk space to store data.

    • It allows programs to use more memory than is physically available.

    • If a program tries to access memory that is not currently in RAM, it will be swapped in from the hard disk.

    • Even if we had infinite RAM, virtual memory would still be n...

  • Answered by AI
  • Q4. Given an array, Find out maximum length of subarray where max of subarray <= 2*min of subarray
  • Ans. 

    Find maximum length of subarray where max <= 2*min.

    • Iterate through array and keep track of max and min values.

    • Update max length when condition is met.

    • Time complexity: O(n)

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: No CPI cut off and It was open for all departments.

Round: Test
Experience: In muliple choice question Mostly questions were base on maths, probability, c programs, algorithms, Systems. If you are prepared then Questions were not that much tough. Keep strong concepts of Operating systems. For subjective part, Some problems were from maths proofs, some were from probability, some were from algo. We had to write algorithms. etc
Duration: 180 minutes

Round: Problem Statement
Experience: Questions were doable.

Round: Interview
Experience: Everyone was cool, They made me feel comfortable and then started asking questions.
Tips: If you have good rank in online coding competition, do mention it in CV.Most of the students think that GS asks only probability-puzzles. They did not asked me any question on probability or puzzle. Everything they asked was based on Algorithms problems and Operating system. I think it depends on team for which they are hiring. Most important point is don’t lose hope because you have low CPI or you are not good at something. Keep Operating systems fundamental concepts strong.

General Tips: We should balance in Placement and Compititive online coding. Keep in mind Placements and Compititive online coding are some what different things. Keep on improving our mistakes on daily basis. I would strongly suggest you to do introspection daily it will help you to find out your weaknesses and strong points, where we are going wrong etc. There are two thing on which we shoud focus.1. Preparation (I have told everything requered for preparation).2. Get output of all hard work. How to keep our mind on 100% output while the actual exam(placement).For this, I used to go for physical exercise daily in the morning and medidate for 20-30 minutes. Along with exercise i used to do Sudarshan Kriya(Art of Living). Meditation has lot of power :).
Skill Tips: Keep your OS fundamentals strong. To improve codgin skills practice as many problems as you can. Regularly participate in online coding competitions it really helps to solve or approach any new problem. Many time instead of correct answer the approach to solve the problems is very important. How you think, How you approach the problem is checked in interview.
Skills: Coding Skills, Operating Systems , Problem solving skills
College Name: IIT Guwahati
Motivation: The name GS itself enogh for motivation.

Skills evaluated in this interview

Ebaotech Interview FAQs

How many rounds are there in Ebaotech interview?
Ebaotech interview process usually has 1-2 rounds. The most common rounds in the Ebaotech interview process are One-on-one Round, Technical and Coding Test.
How to prepare for Ebaotech 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 Ebaotech. The most common topics and skills that interviewers at Ebaotech expect are Bfsi Sales, Channel Management, IT Product Sales, IT Sales and IT Services Sales.
What are the top questions asked in Ebaotech interview?

Some of the top questions asked at the Ebaotech interview -

  1. Knowledge about the sql data analytics FS BRD Client facing user story’s use ...read more
  2. Explain Hashmap internal work...read more
  3. explain String and ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.6/5

based on 5 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Goldman Sachs Interview Questions
3.5
 • 392 Interviews
Deutsche Bank Interview Questions
3.9
 • 390 Interviews
Synechron Interview Questions
3.5
 • 378 Interviews
Bajaj Finance Interview Questions
4.0
 • 356 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
PhonePe Interview Questions
4.0
 • 345 Interviews
View all

Ebaotech Reviews and Ratings

based on 52 reviews

3.5/5

Rating in categories

3.0

Skill development

3.2

Work-life balance

3.5

Salary

3.3

Job security

2.8

Company culture

2.8

Promotions

2.9

Work satisfaction

Explore 52 Reviews and Ratings
Associate Software Engineer
63 salaries
unlock blur

₹3.5 L/yr - ₹10 L/yr

Software Developer
49 salaries
unlock blur

₹10.2 L/yr - ₹16.5 L/yr

Senior Software Engineer
42 salaries
unlock blur

₹18 L/yr - ₹30 L/yr

Software Engineer
39 salaries
unlock blur

₹4.8 L/yr - ₹15 L/yr

Java Developer
29 salaries
unlock blur

₹3.5 L/yr - ₹4.9 L/yr

Explore more salaries
Compare Ebaotech with

HDB Financial Services

3.9
Compare

AU Small Finance Bank

4.2
Compare

Bajaj Finance

4.0
Compare

Equitas Small Finance Bank

4.4
Compare
write
Share an Interview