Upload Button Icon Add office photos

Filter interviews by

Ebaotech Interview Questions and Answers

Updated 4 Oct 2024

Ebaotech Interview Experiences

Popular Designations

7 interviews found

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

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

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

Test Manager Interview Questions asked at other Companies

Q1. 1. Summary of your experience 2. Difference between retest and regression 3. Severity vs priority with examples for all 4 types 4. drop vs delete in db 5. Primary, foreign and unique key in db 6. Test plan details 7. truncate in db 8. BVA a... read more
View answer (1)

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 ?

Senior Business Analyst Interview Questions asked at other Companies

Q1. Difference between annuity and pension, types of annuity and pension, actions done on a policy, policy flow, RI insurance and it’s types and difference between them. Coinsurance, what are the charges when u cancel policy in 1st year vs 3rd ... read more
View answer (1)
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

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)

Ebaotech interview questions for popular designations

 Software Engineer

 (2)

 Software Developer

 (1)

 Senior Business Analyst

 (1)

 Test Engineer

 (1)

 Test Manager

 (1)

 Associate Software Engineer

 (1)

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

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

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

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

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

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

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

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

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

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.
What are the top questions asked in Ebaotech interview?

Some of the top questions asked at the Ebaotech interview -

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

Tell us how to improve this page.

Ebaotech Interview Process

based on 5 interviews

Interview experience

3.6
  
Good
View more

Interview Questions from Similar Companies

Goldman Sachs Interview Questions
3.5
 • 378 Interviews
Deutsche Bank Interview Questions
3.9
 • 366 Interviews
Synechron Interview Questions
3.5
 • 365 Interviews
Udaan Interview Questions
3.9
 • 334 Interviews
Bajaj Finance Interview Questions
4.0
 • 311 Interviews
PhonePe Interview Questions
4.0
 • 305 Interviews
View all

Ebaotech Reviews and Ratings

based on 48 reviews

3.5/5

Rating in categories

3.1

Skill development

3.2

Work-life balance

3.5

Salary

3.3

Job security

3.0

Company culture

3.0

Promotions

2.9

Work satisfaction

Explore 48 Reviews and Ratings
Associate Software Engineer
64 salaries
unlock blur

₹3.5 L/yr - ₹10 L/yr

Software Engineer
40 salaries
unlock blur

₹3.9 L/yr - ₹15 L/yr

Senior Software Engineer
40 salaries
unlock blur

₹10.9 L/yr - ₹28 L/yr

Software Developer
39 salaries
unlock blur

₹5.9 L/yr - ₹16.3 L/yr

Consultant
28 salaries
unlock blur

₹8 L/yr - ₹26 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.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview