Upload Button Icon Add office photos
Premium Employer

i

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

BigBasket Verified Tick

Compare button icon Compare button icon Compare
3.9

based on 4.4k Reviews

Filter interviews by

BigBasket Senior Sdet Engineer Interview Questions and Answers

Updated 10 Jul 2024

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via LinkedIn

Round 1 - Technical 

(5 Questions)

  • Q1. Find string in array
  • Ans. 

    Search for a specific string in an array of strings.

    • Iterate through the array and compare each string with the target string.

    • Use a loop to go through each element in the array and check for a match.

    • Consider using built-in methods like indexOf() or includes() for efficient searching.

    • Handle cases where the target string is not found in the array.

  • Answered by AI
  • Q2. Find string in array
  • Ans. 

    Search for a specific string in an array of strings.

    • Iterate through the array and compare each string with the target string.

    • Use a loop to go through each element in the array and check for a match.

    • Consider using built-in methods like indexOf or includes for efficient searching.

  • Answered by AI
  • Q3. Subarray in given array
  • Ans. 

    Find all subarrays in a given array of strings

    • Iterate through the array and consider each element as the starting point of a subarray

    • For each starting point, iterate through the array to find all possible subarrays

    • Store each subarray found in a separate list

  • Answered by AI
  • Q4. Stack for balance paranthesis
  • Ans. 

    Use stack data structure to check for balanced parentheses in a string.

    • Create an empty stack to store opening parentheses

    • Iterate through the string and push opening parentheses onto the stack

    • When encountering a closing parenthesis, pop from the stack and check if it matches the corresponding opening parenthesis

    • If stack is empty at the end and all parentheses have been matched, the string is balanced

  • Answered by AI
  • Q5. Mean heap fo minimising the cost
  • Ans. 

    A mean heap is a data structure that minimizes the cost of accessing the smallest element.

    • Mean heap is a type of binary heap where the value of each node is less than or equal to the values of its children.

    • It is useful for finding the minimum element quickly, as the root node always contains the smallest value.

    • Insertion and deletion operations in a mean heap have a time complexity of O(log n).

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Java coding question with moderate level

Round 2 - Technical 

(1 Question)

  • Q1. How to test a s/w for Lift
  • Ans. 

    Testing a lift system involves multiple steps to ensure its functionality and safety.

    • 1. Verify the lift system's basic functionality such as going up and down smoothly.

    • 2. Test emergency stop functionality to ensure safety measures are in place.

    • 3. Check for proper alignment of doors and sensors to prevent accidents.

    • 4. Conduct load testing to ensure the lift can handle its maximum capacity.

    • 5. Test communication systems b...

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Previous projects
  • Ans. 

    I have worked on various projects involving test automation, performance testing, and quality assurance.

    • Developed automated test scripts using Selenium WebDriver for web applications

    • Conducted performance testing using JMeter to identify bottlenecks and optimize system performance

    • Implemented quality assurance processes to ensure software meets requirements and standards

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Gasstation problem on letcode
  • Q2. LCS problem on leetcode
Round 2 - Coding Test 

Quick sort for numbers from 0 to million

Interview Preparation Tips

Interview preparation tips for other job seekers - LC easy should be fine
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Easy Interview basic questions

Round 2 - Technical 

(1 Question)

  • Q1. Desing Tic Tac Toe
Round 3 - HR 

(1 Question)

  • Q1. Final Round behavioural questions

Sde1 Interview Questions & Answers

Uber user image Anonymous

posted on 12 Jun 2023

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in May 2023. There were 3 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 - Coding Test 

Very Easy questions just do it

Round 3 - One-on-one 

(4 Questions)

  • Q1. What is your introduction
  • Q2. Why SDE 1 only not SDE 2
  • Ans. 

    SDE 1 is an entry-level position where candidates gain foundational skills before advancing to SDE 2.

    • SDE 1 focuses on learning and building foundational skills in software development.

    • SDE 2 requires more experience and expertise in software development.

    • Advancing from SDE 1 to SDE 2 is a common career progression in tech companies.

    • SDE 1 roles often involve working on smaller projects or components of larger projects.

    • SDE...

  • Answered by AI
  • Q3. If bully happens will you bully someone
  • Ans. 

    No, I believe in standing up against bullying and supporting those who are being bullied.

    • I do not support bullying in any form and believe in treating others with respect and kindness.

    • I would try to intervene and help the person being bullied, either by talking to the bully or seeking help from a teacher or supervisor.

    • I believe in creating a positive and inclusive environment where everyone feels safe and respected.

  • Answered by AI
  • Q4. If taken leave can you work 7 days a week

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep yourself you only and you will get a wholesome of 60 LPA

Sde1 Interview Questions & Answers

Times Internet user image Subhajit Biswas

posted on 15 Jan 2022

I applied via Campus Placement and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Different between C and C++
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports classes and objects while C does not.

    • C++ has better support for polymorphism and inheritance.

    • C++ has a standard template library (STL) while C does not.

    • C++ allows function overloading while C does not.

    • C++ has exception handling while C does not.

  • Answered by AI
  • Q2. What is encapsulation?
  • Ans. 

    Encapsulation is the process of hiding implementation details and exposing only necessary information to the user.

    • Encapsulation is achieved through access modifiers like public, private, and protected.

    • It helps in achieving data abstraction and information hiding.

    • Encapsulation provides better control over the data and prevents unauthorized access.

    • Example: A class with private variables and public methods to access those...

  • Answered by AI
  • Q3. One DSA question.
  • Q4. About SQL they asked few questions
  • Q5. One puzzle in the end

Interview Preparation Tips

Interview preparation tips for other job seekers - It was quick and easy interview.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via LinkedIn and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

DSA medium level 2 question based on graph and recursion

Round 2 - Technical 

(2 Questions)

  • Q1. DSA question on dynamic programming
  • Q2. Question on graph (topological sort)

Interview Preparation Tips

Interview preparation tips for other job seekers - keep working hard

Sde1 Interview Questions & Answers

Flipkart user image Anonymous

posted on 24 Jun 2024

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

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 DSA questions were there in the coding round

Round 2 - Technical 

(2 Questions)

  • Q1. DSA based question
  • Q2. DSA question medium level
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Asking for my Hobbies
  • Q2. Ctc was discussed with me

BigBasket Interview FAQs

How many rounds are there in BigBasket Senior Sdet Engineer interview?
BigBasket interview process usually has 1 rounds. The most common rounds in the BigBasket interview process are Technical.

Tell us how to improve this page.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Swiggy Interview Questions
3.8
 • 423 Interviews
DMart Interview Questions
4.0
 • 391 Interviews
JustDial Interview Questions
3.5
 • 326 Interviews
Zomato Interview Questions
3.8
 • 314 Interviews
PolicyBazaar Interview Questions
3.6
 • 308 Interviews
Blinkit Interview Questions
3.7
 • 173 Interviews
View all
BigBasket Senior Sdet Engineer Salary
based on 7 salaries
₹14 L/yr - ₹27 L/yr
13% less than the average Senior Sdet Engineer Salary in India
View more details

BigBasket Senior Sdet Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

3.0

Salary

4.0

Job security

3.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Business Development Executive
676 salaries
unlock blur

₹2 L/yr - ₹5.2 L/yr

Inventory Executive
425 salaries
unlock blur

₹2 L/yr - ₹5.1 L/yr

Operations Controller
382 salaries
unlock blur

₹1.8 L/yr - ₹5.4 L/yr

Shift Incharge
373 salaries
unlock blur

₹1.9 L/yr - ₹5.1 L/yr

Customer Support Executive
327 salaries
unlock blur

₹1.5 L/yr - ₹4.5 L/yr

Explore more salaries
Compare BigBasket with

Milkbasket

3.9
Compare

Amazon

4.1
Compare

Blinkit

3.7
Compare

Nature's Basket

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