Upload Button Icon Add office photos

Filter interviews by

Hyperface SDE Interview Questions and Answers

Updated 27 Aug 2024

Hyperface SDE Interview Experiences

1 interview found

SDE Interview Questions & Answers

user image Anonymous

posted on 27 Aug 2024

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

I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

This had coding MCQ along with aptitude 15qs in 20mins.

Round 2 - Coding Test 

3 questions
1 is database design and rest 2 were dsa

Top trending discussions

View All
Salary Discussions, Hike & Promotions
2w
a senior executive
GF salary Vs. My salary
Me and my gf have been dating for 5 years. Back in 2020, I started my career with a package of ₹5 LPA. Over the years, I’ve reached ₹22 LPA in 2025. She started her journey with ₹3 LPA(2020) and is now earning ₹8 LPA(2025). We’ve been in a live-in relationship for around 2 years, and the idea was to share expenses equally. But, equal sharing never really happened. If we go to a café she likes, especially with friends, I will pay the entire bill. We only split the house rent and grocery bills. I told her lots of time to cut down these costly cafe expenses or earn more money, increase your package, study and work hard, but.....she is now in her comfort zone. Being from a tech background, I have seen people upgrade their skills and package for a good life in metro cities. I am ready to support her in her studies, but she is like I am earning enough for myself.... No, you are not. I love her, but I don't know how to overcome this issue between us. Please suggest!
Got a question about Hyperface?
Ask anonymously on communities.

Interview questions from similar companies

SDE Interview Questions & Answers

Zepto user image Anonymous

posted on 22 Jun 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Had online coding round as part of screening. Questions were easy and made it through but didn't hear back form the recruiter

SDE Interview Questions & Answers

CARS24 user image Anonymous

posted on 19 Apr 2024

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Standard Leetcode Medium Problem.

SDE Interview Questions & Answers

Zepto user image Anonymous

posted on 16 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is state props drilling
  • Ans. 

    State props drilling is the process of passing down props from a parent component to a deeply nested child component.

    • Involves passing props through multiple levels of components

    • Can lead to prop drilling if not managed properly

    • Can be avoided by using context or Redux for state management

  • Answered by AI
  • Q2. Javascript tic tac toe

Skills evaluated in this interview

SDE Interview Questions & Answers

Meesho user image Shashirith Sonu

posted on 15 Oct 2023

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

I applied via Campus Placement and was interviewed before Oct 2022. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. DESIGN CALENDER
  • Ans. 

    Design a calendar system that manages events, reminders, and scheduling for users efficiently.

    • Define user requirements: Understand what features users need, such as event creation, reminders, and recurring events.

    • Choose data structures: Use arrays or linked lists for storing events, and hash maps for quick access to dates.

    • Implement user interface: Design a simple UI for users to view, add, and edit events easily.

    • Consid...

  • Answered by AI
  • Q2. DESIGN FACEBOOK
  • Ans. 

    Design a social networking platform with features like user profiles, news feed, messaging, and photo sharing.

    • Create user profiles with customizable information and privacy settings

    • Implement a news feed algorithm to display relevant content to users

    • Include messaging functionality for private communication between users

    • Allow users to share photos and videos on their profiles and in posts

  • Answered by AI
  • Q3. LLD ROUND ON BOTH THIS QUESTIONS
Round 2 - HR 

(2 Questions)

  • Q1. WHY DO YOU WANT TO JOIN
  • Q2. ARE YOU FREE FOR THIS ROLE

Skills evaluated in this interview

SDE Interview Questions & Answers

Swiggy user image Anonymous

posted on 22 Jun 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It had 9 uqestions , one problem solving , one SQL , one API and 6 mcq

Round 2 - Assignment 

Easy assignment , if you hav eOOps knowledge you can do it

SDE Interview Questions & Answers

Meesho user image Vaibhav Garg

posted on 2 Dec 2024

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

DSA - 3 Coding Questions

Round 2 - Technical 

(1 Question)

  • Q1. Machine coding - low level design

SDE Interview Questions & Answers

Meesho user image Anonymous

posted on 6 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write system design for cab booking system
  • Ans. 

    Design a scalable cab booking system for efficient ride management and user experience.

    • User Registration: Users can sign up using email or phone number.

    • Cab Availability: Real-time tracking of cabs using GPS for efficient allocation.

    • Booking Process: Users can book a cab by entering pickup and drop-off locations.

    • Payment Integration: Support for multiple payment methods like credit cards, wallets.

    • Driver App: A separate in...

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Reverse a given Linked List. Both O(1) and O(N) space complexity. Where N is the size of Linked List.
  • Ans. 

    Reverse a given Linked List with O(1) and O(N) space complexity.

    • For O(1) space complexity, use three pointers to reverse the links in place.

    • For O(N) space complexity, use a stack to store the nodes and then pop them to create the reversed list.

    • Be careful with edge cases such as empty list or list with only one node.

  • Answered by AI
  • Q2. Explain your project. and give a brief overview for the technologies involved in the process of making the project. (Expect some cross-questioning for the technologies you are going to mention).
  • Q3. In a party of N people, only one person is known to everyone. Such a person may be present in the party, if yes, (s)he doesn't know anyone in the party. Find this celebrity (is present).
  • Ans. 

    THis is an answer,jdkiukj froin feiudjcbiufjewbd

  • Answered by Aamir Iqbal
  • Q4. Explain in detail the working behind the algorithms of Merge Sort and Quick Sort.
  • Ans. 

    Merge Sort and Quick Sort are sorting algorithms that use divide and conquer approach.

    • Merge Sort divides the array into two halves, sorts them recursively, and then merges them.

    • Quick Sort selects a pivot element, partitions the array around the pivot, and recursively sorts the sub-arrays.

    • Merge Sort has a worst-case time complexity of O(nlogn), while Quick Sort has an average case time complexity of O(nlogn).

    • Merge Sort ...

  • Answered by AI
  • Q5. Trapping Rain-Water problem: Given N non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.
  • Ans. 

    Compute amount of water trapped in an elevation map after raining

    • Iterate through the array and find the maximum height on the left and right of each bar

    • Calculate the amount of water that can be trapped on each bar using the difference between the minimum of the two maximum heights and the height of the bar

    • Add up the amount of water trapped on each bar to get the total amount of water trapped

  • Answered by AI
  • Q6. Zigzag traversal of a given binary tree.
  • Ans. 

    Zigzag traversal of a binary tree is a way of traversing the tree in a zigzag pattern.

    • Use a stack to keep track of nodes to be visited.

    • For each level, alternate between adding nodes to the stack from left to right and right to left.

    • Pop nodes from the stack and add their children to the stack in the appropriate order.

    • Repeat until all nodes have been visited.

  • Answered by AI
  • Q7. Given a dictionary with {Key, Value} as {String, Integer}. Sort the given dictionary in ascending/descending order according to: 1) Key. 2) Value.
  • Ans. 

    Sort a dictionary by key or value in ascending/descending order.

    • Use sorted() function with lambda function to sort by key or value.

    • For ascending order, use reverse=False and for descending order, use reverse=True.

    • Example: sorted_dict = sorted(dictionary.items(), key=lambda x: x[0], reverse=True)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - - Have a good understanding of Data Structures and Algorithm.
- Whatever your project may be, you should know aspect of it and expect some cross-questions as well.
- Be confident with what solution you are coming up, and try to make it efficient if asked.

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

First round was coding test in online mode which was quite easy.

Round 2 - Technical 

(1 Question)

  • Q1. In the 2nd round they asked the technical questions from SQL , simple coding questions.

Hyperface Interview FAQs

How many rounds are there in Hyperface SDE interview?
Hyperface interview process usually has 2 rounds. The most common rounds in the Hyperface interview process are Aptitude Test and Coding Test.

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

SDE Interview Questions from Similar Companies

Meesho SDE Interview Questions
3.7
 • 3 Interviews
Zepto SDE Interview Questions
3.5
 • 2 Interviews
Swiggy SDE Interview Questions
3.8
 • 1 Interview
CARS24 SDE Interview Questions
3.5
 • 1 Interview
Turing SDE Interview Questions
3.2
 • 1 Interview
Licious SDE Interview Questions
3.7
 • 1 Interview
View all

Hyperface SDE Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

5.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Associate Product Manager
6 salaries
unlock blur

₹12 L/yr - ₹20.5 L/yr

Product Manager
6 salaries
unlock blur

₹18 L/yr - ₹31.8 L/yr

QA Engineer
4 salaries
unlock blur

₹7.6 L/yr - ₹8.5 L/yr

Associate Director
4 salaries
unlock blur

₹20 L/yr - ₹40 L/yr

Customer Success Manager
4 salaries
unlock blur

₹7 L/yr - ₹7.5 L/yr

Explore more salaries
Compare Hyperface with

Udaan

3.9
Compare

Swiggy

3.8
Compare

CARS24

3.5
Compare

BlackBuck

3.7
Compare
write
Share an Interview