Upload Button Icon Add office photos

Filter interviews by

Hyperface Software Engineer III Interview Questions and Answers

Updated 28 Aug 2023

Hyperface Software Engineer III Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed in Jul 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 

There was a chef ingredients problem invloving multiple logics, need to solve within 1hr 30 mins

Round 3 - Technical 

(2 Questions)

  • Q1. Low level Design
  • Q2. High Level Design

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

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

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Flatten an array
  • Ans. 

    Flatten an array of strings into a single array

    • Use the flat() method to flatten the array

    • Example: ['hello', ['world', 'foo'], 'bar'] => ['hello', 'world', 'foo', 'bar']

  • Answered by AI
  • Q2. Dom manipulation

Skills evaluated in this interview

Software Engineer III Interview Questions Asked at Other Companies

Q1. Given k floors and n eggs, find the highest floor from which if a ... read more
asked in Walmart
Q2. What would be the ideal data structure to represent people and fr ... read more
asked in Walmart
Q3. Can you describe a custom implementation of a stack that includes ... read more
asked in Walmart
Q4. Explain useState for managing state, useEffect for handling side ... read more
asked in UST
Q5. =>What is garbage collection in c# =>What is dispose and fi ... read more
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2023. There were 6 interview rounds.

Round 1 - Coding Test 

Coding , mainly random DSA question from Leetcode. (Medium difficulty)

Round 2 - Coding Test 

System Design , Building a working comment-box of FB/Twitter.

Round 3 - Coding Test 

Random questions on JS,CSS and HTML. A bit of coding on string/array .

Round 4 - Group Discussion 

Discussion on Permorance, Optimisation and Scalability

Round 5 - Coding Test 

Bar Raiser, Build React parser to build the JSX using a json of elements and their props.

Round 6 - One-on-one 

(1 Question)

  • Q1. A behavioural round, past projects, challenges, optimisation etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do lot of Leetcode, System Design Practises, LLDs and HLDs.

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
Selected Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Coding test has multiple choice questions based on basics of programming and 2 coding questions.

Round 2 - Technical 

(3 Questions)

  • Q1. What are the details of Object-Oriented Programming (OOP) concepts?
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data and code to manipulate that data.

    • OOP focuses on creating objects that interact with each other to solve problems.

    • Key concepts include classes, objects, inheritance, polymorphism, and encapsulation.

    • Classes are blueprints for creating objects, defining their properties and behaviors.

    • Inheritance allows new classes to be based on existing...

  • Answered by AI
  • Q2. DSA question to solve using any programming language ?
  • Q3. Some concepts of web development and binary tree related questions
Round 3 - HR 

(2 Questions)

  • Q1. What do you know about Digit insurance?
  • Q2. Where do you see yourself after 5 years ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics concept of programming. Brush up coding skills and have good communication skills.

I applied via Recruitment Consulltant and was interviewed in Sep 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Apti and coding

Round 2 - Technical 

(1 Question)

  • Q1. Questions on java a d sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Bogus interview . Doesnt matter how you give the interview , they will choose some random guy who is not worthy maybe

I applied via Campus Placement and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Y r u choosing this job only??
  • Q2. What's your dream?
  • Ans. 

    My dream is to create innovative software solutions that positively impact people's lives and drive technological advancement.

    • Building User-Centric Applications: I aspire to develop applications that prioritize user experience, like a health tracking app that motivates users to lead healthier lives.

    • Contributing to Open Source: I dream of contributing to open-source projects, collaborating with developers worldwide to c...

  • Answered by AI
  • Q3. My dream is to got a job
  • Q4. How much salary will you expected??

Interview Preparation Tips

Interview preparation tips for other job seekers - My advice is to be positive at any situation and be active .
Don't get feared .
Your dressing is shown ur attitude.
Give respect to the others don't forget these things.
Are these interview questions helpful?

I applied via AmbitionBox and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude, Reasoning

Round 2 - Coding Test 

Technical codes

Interview Preparation Tips

Interview preparation tips for other job seekers - "Be proactive—market yourself as if you were marketing a business (brand you!). Take time to quantify your talents and learn to speak comfortably regarding accomplishments. Create a job search system for introducing, applying, and following up on leads/interviews. Plan your work, work your plan—a job search IS a job. Treat yourself to free or low-cost perks to reward effort, you earned it!” – Cindy
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 - Assignment 
Round 3 - Coding Test 
Round 4 - Technical 

(1 Question)

  • Q1. Why should i hire you?
Round 5 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips
Round 6 - HR 

(8 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Ans. 

    I come from a supportive family that values education and hard work, which has greatly influenced my career path in software engineering.

    • Supportive Parents: My parents always encouraged me to pursue my interests, leading me to explore technology from a young age.

    • Siblings: I have a younger sister who is also interested in STEM, and we often collaborate on projects, fostering a healthy competitive spirit.

    • Cultural Backgro...

  • Answered by AI
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Where do you see yourself in 5 years?
  • Q7. What are your strengths and weaknesses?
  • Q8. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Maintain silence..
Looking position is in straight manner

I applied via Campus Placement and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Why are u looking for a change?
  • Ans. Giving negative responses such as a naggging boss or work pressure should be avoided at any cost.
  • Answered Anonymously
  • Q3. Why about your career aspects
  • Ans. As s fresher, I want to learn new things from starting. I want to start my career with your company so that I can improve my skills and knowledge.
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for AmbitionBox Software Engineer interview:
  • Computer science
Interview preparation tips for other job seekers - This article is a cimpliting of my best job hunting advice, taken from my posts that have received that most positive feedback from job seekers and other career expects.

Hyperface Interview FAQs

How many rounds are there in Hyperface Software Engineer III interview?
Hyperface interview process usually has 3 rounds. The most common rounds in the Hyperface interview process are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in Hyperface Software Engineer III interview?

Some of the top questions asked at the Hyperface Software Engineer III interview -

  1. Low level Des...read more
  2. High Level Des...read more

Tell us how to improve this page.

Overall Interview Experience Rating

1/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 469 Interviews
Meesho Interview Questions
3.7
 • 365 Interviews
CARS24 Interview Questions
3.5
 • 360 Interviews
Udaan Interview Questions
3.9
 • 346 Interviews
Zepto Interview Questions
3.5
 • 292 Interviews
BlackBuck Interview Questions
3.7
 • 193 Interviews
Tata 1mg Interview Questions
3.6
 • 185 Interviews
Digit Insurance Interview Questions
3.8
 • 158 Interviews
Paisabazaar.com Interview Questions
3.4
 • 152 Interviews
AmbitionBox Interview Questions
4.8
 • 148 Interviews
View all
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