Upload Button Icon Add office photos
Engaged Employer

i

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

Dunzo Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Dunzo Sdet-I Interview Questions and Answers

Updated 15 Dec 2022

Dunzo Sdet-I Interview Experiences

1 interview found

Sdet-I Interview Questions & Answers

user image Anonymous

posted on 15 Dec 2022

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

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't give an interview with DUNZO as SDET . They simply waste our time with multiple rounds.

Interview questions from similar companies

Sdet-I Interview Questions & Answers

Amazon user image Anonymous

posted on 25 May 2015

Interview Questionnaire 

16 Questions

  • Q1. Given an array and a number, check whether there are any 3 elements in the array which add up to the given number
  • Ans. 

    Check if any 3 elements in an array add up to a given number

    • Sort the array in ascending order

    • Use nested loops to iterate through all possible combinations of 3 elements

    • Check if the sum of the 3 elements equals the given number

    • Return true if a match is found, else false

  • Answered by AI
  • Q2. Given a number, find the nearest perfect square(modified binary search)
  • Ans. 

    Given a number, find the nearest perfect square using modified binary search.

    • Start with low=0 and high=num.

    • While low<=high, find mid=(low+high)/2.

    • If mid*mid==num, return mid.

    • If mid*mid

    • If mid*mid>num, update high=mid-1.

    • Return the closest perfect square to num.

  • Answered by AI
  • Q3. Write a method to check whether two binary trees are mirrors of each other -----/
  • Q4. Write a method to print the boundaries of a binary tree -----/
  • Q5. Fill an array with the next greater elements (using stack) -----/
  • Q6. Given a binary tree, count the number of occurrences where there are two nodes with the same horizontal distance. To make it clearer, if we assume each node in a cell of a matrix, then count the number of ...
  • Ans. 

    Count occurrences of two nodes with same horizontal distance in a binary tree

    • Traverse the tree using BFS or DFS and keep track of horizontal distance of each node

    • Store nodes with same horizontal distance in a hash table and increment count if collision occurs

    • Recursively traverse left and right subtrees with updated horizontal distance

    • Time complexity: O(n), Space complexity: O(n)

  • Answered by AI
  • Q7. Given a linked list, write a program to check if it is a palindrome
  • Ans. 

    Program to check if a linked list is a palindrome

    • Traverse the linked list and push each element onto a stack

    • Traverse the linked list again and compare each element with the top of the stack

    • If all elements match, the linked list is a palindrome

  • Answered by AI
  • Q8. Write some test methods for stress testing of Furniture class
  • Ans. 

    Test methods for stress testing of Furniture class

    • Create a large number of Furniture objects and check for memory leaks

    • Simulate heavy usage by continuously calling methods and check for performance issues

    • Test the Furniture class with maximum allowed input values and check for any errors or crashes

  • Answered by AI
  • Q9. Some discussion on automation testing
  • Q10. Discussion about my current job role
  • Q11. Several behavioral and team fit questions
  • Q12. What are the things you will consider (both from Developer’s perspective and User perspective) while trying to develop an application for computer aided competitive examinations like CAT, GMAT etc
  • Ans. 

    Considerations for developing an application for computer aided competitive exams

    • User-friendly interface for easy navigation

    • Accurate and reliable question bank

    • Timed tests to simulate real exam conditions

    • Option to save and resume tests

    • Detailed performance analysis and feedback

    • Compatibility with different devices and operating systems

    • Regular updates and bug fixes

    • Developer should consider the security of the application t...

  • Answered by AI
  • Q13. Given a singly linked list, write a recursive method to reverse every 3 nodes in the list. I did not write a clean code for this. He moved on because of lack of time
  • Ans. 

    Reverse every 3 nodes in a singly linked list using recursion

    • Create a recursive function that takes in a node and a count

    • If count is less than 3, return the node

    • Reverse the first 3 nodes and call the function recursively with the 4th node and count 1

    • Connect the reversed nodes to the rest of the list

    • Return the new head of the reversed list

  • Answered by AI
  • Q14. Again discussion of my current job role and about the projects I have worked on
  • Q15. Tell me 3 things that you want to learn/change in yourself
  • Ans. 

    I want to learn/change 3 things about myself

    • Improve my communication skills

    • Develop better time management habits

    • Learn a new programming language

  • Answered by AI
  • Q16. Again several team fit questions

Interview Preparation Tips

Round: Technical Interview
Experience: 1. Given an array and a number, check whether there are any 3 elements in the array which add up to the given number.
  For example:
     Given an array {1,2,3,4,5} and the number 9, return true, as 2,3,4 add up to 9.
     Given an array {1,2,3,4,5} and the number 3, return false, as there are no 3 elements which add up to 3, in the array.
2. Given a number, find the nearest perfect square(modified binary search)
  For example:
     Given 50, return 49
     Given 25, return 25

Round: Technical Interview
Experience: System: The user gives a book id to be downloaded and the location in which the book is to be stored. The system downloads the book (if it exists) in the location given by the user and returns a url through which the user can access the book.
I was asked to design automated test cases for the system. The interviewer kept adding more and more constraints to the system and we discussed about the pros and cons of my approach.

College Name: NA

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Oops Programming

Sdet-I Interview Questions & Answers

Paytm user image Anonymous

posted on 2 Nov 2022

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on dsa and there should be a project to show to interviewer.

Interview Preparation Tips

Skills: Coding Skills, Speaking Skills, Confidence, Hardwork, Intelligence, Time Management, How Well You Can Handle Stress
College Name: IIT Patna

I appeared for an interview before Aug 2016.

Interview Preparation Tips

Round: Group Discussion
Experience: Initially, the moderators made sure that each person on the table got a chance to speak, but only the ones who could voice themselves were chosen to move ahead.
Tips: Never give the person you're confronting a chance to completely validate his/her point of view.
Duration: 20 minutes

Round: Technical + HR Interview
Experience: My skills as a salesman were put to test. Faced heavy grilling from the interviewer.
Tips: Never stop speaking until and unless you're asked to.

Round: Stress Interview
Experience: This was basically the final round, conducted by the national sales head, of thr division that I had been shortlisted for. So one can only imagine the kind of 'stress' he put me through.

I applied via Recruitment Consultant and was interviewed before Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1.what do you know about Swiggy and it's business model. 2.simple SQL queries 3. Vlookup.
  • Ans. 

    Swiggy is an Indian food delivery company that operates through a website and mobile app.

    • Swiggy was founded in 2014 and is headquartered in Bangalore, India.

    • It partners with local restaurants to provide food delivery services to customers.

    • Swiggy's business model is based on charging a commission fee from the restaurants for every order placed through their platform.

    • It has expanded to over 500 cities in India and has ov...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not join as MIS in Swiggy. Work of MIS will be just copy paste nothing else. Join only if you have financial problems. Here you can't get any hike nor they will make permanent.

Skills evaluated in this interview

I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you thing your a customer then you will maintain qty

I applied via Naukri.com and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What makes wright for this position
  • Ans. Over the Years, I have acquired relevant skills and experience, which I have brought it to your organization .
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Do continue your practice and no excuses for this preparation of interview , you will be break your goals.

I appeared for an interview before Dec 2020.

Interview Questionnaire 

3 Questions

  • Q1. How to make revenue ?
  • Ans. 

    To make revenue, a sales manager can focus on increasing sales, expanding customer base, and optimizing pricing strategies.

    • Implement effective sales strategies and techniques

    • Identify and target potential customers

    • Build and maintain strong customer relationships

    • Optimize pricing strategies to maximize profit

    • Offer additional products or services to existing customers

    • Provide exceptional customer service

    • Analyze market trend

  • Answered by AI
  • Q2. How to handle team ?
  • Ans. 

    To handle a team effectively, a sales manager should provide clear goals, effective communication, support and motivation, and foster a positive team culture.

    • Set clear goals and expectations for the team

    • Communicate effectively and regularly with the team

    • Provide support and resources to help the team succeed

    • Motivate and inspire team members through recognition and rewards

    • Foster a positive team culture by encouraging col...

  • Answered by AI
  • Q3. Allocate target individuals , motivate team, provide correct decision to team , work as a team

Interview Preparation Tips

Interview preparation tips for other job seekers - what answer did you learn from filled work give it boldly .
Contribute & help others!
anonymous
You can choose to be anonymous

Dunzo Interview FAQs

How many rounds are there in Dunzo Sdet-I interview?
Dunzo interview process usually has 5 rounds. The most common rounds in the Dunzo interview process are Technical, Resume Shortlist and Coding Test.
What are the top questions asked in Dunzo Sdet-I interview?

Some of the top questions asked at the Dunzo Sdet-I interview -

  1. I don't know what he was expecting as job description shows one and they are ai...read more
  2. They give me two matrix to sl...read more
  3. They are aiming to reje...read more

Recently Viewed

SALARIES

Melorra

SALARIES

Fynd

SALARIES

Times Internet

SALARIES

GfK MODE

SALARIES

Shuttl

SALARIES

Disprz

SALARIES

Dunzo

SALARIES

Dunzo

INTERVIEWS

Bigtec Labs

No Interviews

SALARIES

Adobe

Tell us how to improve this page.

Dunzo Sdet-I Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 752 Interviews
Swiggy Interview Questions
3.8
 • 428 Interviews
BigBasket Interview Questions
3.9
 • 359 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
Zomato Interview Questions
3.8
 • 312 Interviews
Zepto Interview Questions
3.5
 • 207 Interviews
Blinkit Interview Questions
3.7
 • 181 Interviews
View all
Dunzo Sdet-I Salary
based on 7 salaries
₹11.5 L/yr - ₹18 L/yr
7% less than the average Sdet-I Salary in India
View more details

Dunzo Sdet-I Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

4.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Community Operations Specialist
116 salaries
unlock blur

₹2.6 L/yr - ₹4.3 L/yr

Store Manager
104 salaries
unlock blur

₹3.8 L/yr - ₹7 L/yr

Procurement Manager
104 salaries
unlock blur

₹3.5 L/yr - ₹7 L/yr

Delivery Boy
91 salaries
unlock blur

₹0.5 L/yr - ₹4.5 L/yr

Inward Executive
90 salaries
unlock blur

₹1.9 L/yr - ₹3.5 L/yr

Explore more salaries
Compare Dunzo with

Swiggy

3.8
Compare

Zepto

3.5
Compare

Porter

3.9
Compare

Rapido

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