Upload Button Icon Add office photos

Filter interviews by

Blink Health Interview Questions and Answers

Updated 11 Jan 2025

Blink Health Interview Experiences

Popular Designations

6 interviews found

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

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Priority Based Queue question
Round 2 - One-on-one 

(2 Questions)

  • Q1. Sorting algorithm
  • Ans. 

    Sorting algorithms are used to arrange elements in a specific order.

    • Different sorting algorithms include bubble sort, selection sort, insertion sort, merge sort, quick sort, etc.

    • Complexity of sorting algorithms varies based on the number of elements being sorted.

    • Efficient sorting algorithms like merge sort and quick sort are commonly used in practice.

  • Answered by AI
  • Q2. One simple graph question
Round 3 - One-on-one 

(1 Question)

  • Q1. Low level design question

Interview Preparation Tips

Interview preparation tips for other job seekers - DO low level design question

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Explain current automation framework
  • Ans. 

    Our current automation framework is a keyword-driven framework built using Selenium and TestNG.

    • Keyword-driven framework allows for easy test case creation and maintenance

    • Utilizes Selenium for web automation and TestNG for test execution and reporting

    • Supports data-driven testing for reusability and scalability

  • Answered by AI
  • Q2. Java code to print frequency of each character
  • Ans. 

    Java code to print frequency of each character in a string

    • Create a HashMap to store character frequencies

    • Iterate through the string and update the frequencies in the HashMap

    • Print the frequencies of each character

  • Answered by AI
  • Q3. Test Scenarios for a page on instagram

Interview Preparation Tips

Topics to prepare for Blink Health Automation Engineer interview:
  • Core Java

Skills evaluated in this interview

Automation Engineer Interview Questions asked at other Companies

Q1. 16) What is modbus ? Types of modbus? How many slaves we can connect to one master
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basucs of HTML, CSS , SQL and competative question, each for 10 marks, score 40 go get into next round.

Round 2 - Technical 

(1 Question)

  • Q1. Dictionary Implimentation.
Round 3 - Technical 

(1 Question)

  • Q1. 3 Sum question Leetcode.
Round 4 - HR 

(1 Question)

  • Q1. Projects and experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - The Package was 40 CTC, But even a 2nd or 3rd sem student can crack , very easy but take some interest in clearing 1st round with 40 points.

Automation Engineer Interview Questions asked at other Companies

Q1. 16) What is modbus ? Types of modbus? How many slaves we can connect to one master
View answer (1)

QA Engineer Interview Questions & Answers

user image avadh bhalani

posted on 12 Dec 2024

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

(1 Question)

  • Q1. Mostly asking mobile automation

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)

Blink Health interview questions for popular designations

 Automation Engineer

 (2)

 Senior Software Engineer

 (2)

 Data Analyst

 (1)

 QA Engineer

 (1)

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

On Codesignal, topics related to dsu, and minimum spanning tree, dp etc. were asked.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 1 Feb 2024

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

I applied via Naukri.com and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Case Study 

It was easy to solve case study

Round 2 - Technical 

(1 Question)

  • Q1. About project, skills mentioned in resume
Round 3 - Bar riser  

(1 Question)

  • Q1. About project in dept

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

Jobs at Blink Health

View all

Interview questions from similar companies

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 

(2 Questions)

  • Q1. Reverse nodes in groups of K
  • Ans. 

    Reverse nodes in groups of K

    • Create a function that takes a linked list and an integer K as input

    • Reverse the nodes in groups of K

    • Return the modified linked list

  • Answered by AI
  • Q2. Design sliding window rate limiter
  • Ans. 

    A sliding window rate limiter limits the rate of incoming requests within a sliding time window.

    • Define a time window and a maximum number of requests allowed within that window

    • Track the number of requests received within the window using a data structure like a queue or circular buffer

    • Reject requests that exceed the maximum allowed within the window

    • Slide the window forward as time passes, removing requests that fall ou...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't waste your time in with interviews.
They out source the interview process to some shit company called Interview vector and they expect you to solve a hard question as well as LLD in 60 mins. I mean common on man, that's totally unfair. I would have been much fair if it was a easy to medium question. Very poor interviewing skills and they just want a specific answer. Very narrow minded Intivewers from interviewr vector.
Wasted my time.

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Find the type of data structure based on the operation performed. Given the order of insertion and deletion. Find whether this operation corresponds to stack/queue /priority queue
  • Ans. 

    Identify data structure based on insertion and deletion order

    • If insertion and deletion follow LIFO order, it is a stack

    • If insertion follows FIFO order and deletion follows LIFO order, it is a queue

    • If insertion and deletion follow priority order, it is a priority queue

  • Answered by AI
  • Q2. Find maximum element in an array in less dhan O(N)
  • Ans. 

    Find maximum element in an array in less than O(N)

    • Use divide and conquer approach

    • Compare maximum of left and right subarrays

    • Recursively find maximum element

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in data structures

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions of related role.
Round 2 - Technical 

(1 Question)

  • Q1. Deeper technology-related questions and simple coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Waste of time!!!
They took 2 rounds within 2 weeks, all goes well. after that HR confirms that you cleared the round and someone will call you for a final discussion. Post that they never reply. and when you call back to HR every time he says "I will check and let you know" but never ever did it for months.
Don't waste our time if you are not serious about hiring.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

The coding test was divided in 4 sections:
1> Java and SpringBoot multiple choice questions
The question topics included, multihreading, springboot context, security

2> Leetcode style program question 1 - Easy

3> Leetcode style program question 2 - Medium
Length of longest consecutive ones by at most one swap.

4> Sql query question

Blink Health Interview FAQs

How many rounds are there in Blink Health interview?
Blink Health interview process usually has 2-3 rounds. The most common rounds in the Blink Health interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Blink Health interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Blink Health. The most common topics and skills that interviewers at Blink Health expect are Healthcare, Pharma, Data Analysis, Pharmacy and Supply Chain Management.
What are the top questions asked in Blink Health interview?

Some of the top questions asked at the Blink Health interview -

  1. Java code to print frequency of each charac...read more
  2. Explain current automation framew...read more
  3. sorting algori...read more

Tell us how to improve this page.

Blink Health Interview Process

based on 6 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Tata 1mg Interview Questions
3.6
 • 146 Interviews
PharmEasy Interview Questions
3.7
 • 80 Interviews
MedPlus Interview Questions
3.6
 • 79 Interviews
Practo Interview Questions
3.2
 • 74 Interviews
HealthifyMe Interview Questions
3.0
 • 47 Interviews
Netmeds.com Interview Questions
3.6
 • 42 Interviews
Portea Medical Interview Questions
3.8
 • 28 Interviews
Medlife Interview Questions
3.7
 • 27 Interviews
HealthKart Interview Questions
4.0
 • 25 Interviews
Lybrate Interview Questions
3.5
 • 5 Interviews
View all

Blink Health Reviews and Ratings

based on 7 reviews

1.9/5

Rating in categories

1.1

Skill development

1.7

Work-life balance

1.7

Salary

1.1

Job security

1.3

Company culture

1.5

Promotions

1.3

Work satisfaction

Explore 7 Reviews and Ratings
DevOps Engineer

Kolkata,

Mumbai

+5

1-2 Yrs

₹ 4.8-4.5 LPA

Product Manager

Kolkata,

Mumbai

+5

5-8 Yrs

Not Disclosed

Senior Software Engineer

Kolkata,

Mumbai

+5

5-8 Yrs

Not Disclosed

Explore more jobs
Software Engineer
4 salaries
unlock blur

₹30 L/yr - ₹35 L/yr

Devops Engineer
4 salaries
unlock blur

₹4.5 L/yr - ₹5 L/yr

Senior Software Engineer
3 salaries
unlock blur

₹30 L/yr - ₹66.2 L/yr

Senior Software Engineer 2
3 salaries
unlock blur

₹80 L/yr - ₹84 L/yr

Explore more salaries
Compare Blink Health with

Tata 1mg

3.6
Compare

PharmEasy

3.7
Compare

Medlife

3.7
Compare

Netmeds.com

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