Upload Button Icon Add office photos
Premium Employer

i

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

Hinge Health

Compare button icon Compare button icon Compare

Filter interviews by

Hinge Health SDE Interview Questions and Answers

Updated 8 Aug 2024

Hinge Health SDE Interview Experiences

1 interview found

SDE Interview Questions & Answers

user image Double Account

posted on 8 Aug 2024

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

I applied via campus placement at B M S College of Engineering, Bangalore and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Easy dsa question based on tree graph

Round 2 - Technical 

(2 Questions)

  • Q1. Dsa based on tree
  • Q2. Dsa based on graph
Round 3 - HR 

(1 Question)

  • Q1. General hr questions

Interview questions from similar companies

SDE Interview Questions & Answers

Amadeus user image Ayush Chikate

posted on 20 Dec 2024

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

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

Round 1 - Aptitude Test 

4 sections verbal logical aptitude and coding(in C)

Round 2 - Technical 

(2 Questions)

  • Q1. Puzzles (GFG Puzzles)
  • Q2. Making patterns of triangle and diamond
  • Ans. 

    Creating patterns of triangle and diamond using characters

    • For triangle pattern, use nested loops to print spaces and characters in each row

    • For diamond pattern, divide the diamond into two triangles and print accordingly

    • Examples: Triangle pattern - * ** *** Diamond pattern - * *** ***** *** *

  • Answered by AI

SDE Interview Questions & Answers

UKG user image Anonymous

posted on 20 Oct 2024

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

1 coding question, 19 mcqs on dsa, c++, java, cs fundamnetals

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

Online coding test with 2 coding questions

Round 2 - Technical 

(1 Question)

  • Q1. What is storage differnece for files in ram
  • Ans. 

    Files in RAM are stored temporarily for quick access by the CPU.

    • RAM (Random Access Memory) is volatile memory used for temporary storage of data and instructions.

    • Files stored in RAM are accessed much faster than files stored on a hard drive.

    • RAM is cleared when the computer is turned off, so files stored in RAM are not persistent.

    • Examples of files stored in RAM include open applications, running processes, and cached da

  • Answered by AI

Skills evaluated in this interview

SDE Interview Questions & Answers

Thomson Reuters user image Prashansa Chaudhary

posted on 27 Jan 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

Aptitude is pretty easy

Round 2 - Group Discussion 

Need to be good in communication skills

Round 3 - Technical 

(1 Question)

  • Q1. Focused more on Technical skills and behavioral + tech
Round 4 - One-on-one 

(1 Question)

  • Q1. Resume and project based questions
Round 5 - HR 

(1 Question)

  • Q1. Current work and Salary
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Fancy string problem

Round 2 - Technical 

(4 Questions)

  • Q1. You are given 2 tables, customer and orders, you have to write an SQL query to fetch the total order placed by each customer and also give the total order amount.
  • Q2. Java Streams question to find the total number of employees that have salary greater than 50000
  • Ans. 

    Use Java Streams to find total employees with salary > 50000

    • Filter employees with salary > 50000 using stream.filter()

    • Count the number of employees using stream.count()

  • Answered by AI
  • Q3. The various annotations used in Springboot @Entity, @RestController etc
  • Ans. 

    Annotations in Springboot like @Entity, @RestController are used for defining classes and endpoints respectively.

    • Annotations like @Entity are used to define JPA entities in Springboot.

    • Annotations like @RestController are used to define RESTful web services endpoints.

    • Annotations like @Autowired are used for dependency injection in Springboot.

  • Answered by AI
  • Q4. AWS services used in my previous project
  • Ans. 

    In my previous project, I used AWS services such as EC2, S3, and RDS for hosting, storage, and database management.

    • EC2 for hosting application servers

    • S3 for storing and retrieving files

    • RDS for managing relational databases

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. All questions were asked based on my resume. So prepare well from your resume.
Round 4 - One-on-one 

(1 Question)

  • Q1. 4th round was a one on one with the manager, asked me general questions about why I was looking for a job change.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics strong.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic datawarehousing concepts
  • Q2. Powerbi questions basic ones

Interview Preparation Tips

Interview preparation tips for other job seekers - keep your options open
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Backtracking problem for tree

Round 2 - Technical 

(1 Question)

  • Q1. High level design of search engine
  • Ans. 

    A search engine is a software system that is designed to search for information on the World Wide Web.

    • Crawling: Search engines use web crawlers to discover and index web pages.

    • Indexing: The search engine creates an index of the content it finds during crawling.

    • Ranking: Algorithms are used to determine the relevance of web pages to a user's query.

    • User Interface: A search engine provides a user-friendly interface for use...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Sep 2022. There were 2 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 - One-on-one 

(3 Questions)

  • Q1. How to handle security in Kafka?
  • Ans. 

    Security in Kafka can be handled through authentication, authorization, encryption, and SSL/TLS.

    • Implement authentication mechanisms like SASL or SSL for secure communication between clients and brokers.

    • Set up ACLs (Access Control Lists) to control access to topics and resources.

    • Enable encryption using SSL/TLS to secure data in transit.

    • Use tools like Confluent Security Plugins for additional security features.

    • Regularly ...

  • Answered by AI
  • Q2. Benefits of Microservices?
  • Ans. 

    Microservices offer benefits such as scalability, flexibility, resilience, and easier maintenance.

    • Scalability: Microservices allow for individual components to be scaled independently, leading to better resource utilization.

    • Flexibility: Each microservice can be developed, deployed, and updated independently, allowing for more flexibility in the development process.

    • Resilience: If one microservice fails, it does not brin...

  • Answered by AI
  • Q3. Have you done any customisation in spring-boot?
  • Ans. 

    Yes, I have done customisation in spring-boot.

    • Implemented custom error handling by extending ResponseEntityExceptionHandler

    • Created custom annotations for validation

    • Configured custom logging using Logback

  • Answered by AI

Skills evaluated in this interview

SDE Interview Questions & Answers

Amadeus user image Anonymous

posted on 3 Jan 2025

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

(2 Questions)

  • Q1. Core java questions
  • Q2. Depper into projects
  • Ans. 

    Discussing past projects in depth to showcase skills and experience

    • Explain the problem statement and your approach

    • Discuss the technologies used and challenges faced

    • Highlight your contributions and the outcome

    • Mention any learnings or improvements for future projects

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Basic and sone tricky hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 rounds technical and hr .go through resume and core concepts and dsa

Hinge Health Interview FAQs

How many rounds are there in Hinge Health SDE interview?
Hinge Health interview process usually has 3 rounds. The most common rounds in the Hinge Health interview process are Coding Test, Technical and HR.
What are the top questions asked in Hinge Health SDE interview?

Some of the top questions asked at the Hinge Health SDE interview -

  1. Dsa based on t...read more
  2. Dsa based on gr...read more

Tell us how to improve this page.

Hinge Health SDE Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

SDE Interview Questions from Similar Companies

Amazon SDE Interview Questions
4.1
 • 44 Interviews
TCS SDE Interview Questions
3.7
 • 12 Interviews
Accenture SDE Interview Questions
3.8
 • 10 Interviews
Infosys SDE Interview Questions
3.6
 • 4 Interviews
HCLTech SDE Interview Questions
3.5
 • 3 Interviews
Genpact SDE Interview Questions
3.8
 • 2 Interviews
Deloitte SDE Interview Questions
3.8
 • 2 Interviews
IBM SDE Interview Questions
4.0
 • 2 Interviews
Jio SDE Interview Questions
3.9
 • 2 Interviews
Practo SDE Interview Questions
3.2
 • 1 Interview
View all
Quality Engineer
5 salaries
unlock blur

₹6.5 L/yr - ₹20 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹22 L/yr - ₹50 L/yr

Senior Quality Engineer
4 salaries
unlock blur

₹20 L/yr - ₹37.8 L/yr

Software Engineer2
4 salaries
unlock blur

₹19 L/yr - ₹26 L/yr

Staff Engineer
3 salaries
unlock blur

₹53 L/yr - ₹65 L/yr

Explore more salaries
Compare Hinge Health with

Practo

3.2
Compare

Portea Medical

4.3
Compare

PhableCare

2.7
Compare

Tata 1mg

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