Upload Button Icon Add office photos

Filter interviews by

Zoom Care Front end Developer Interview Questions and Answers

Updated 21 Mar 2023

Zoom Care Front end Developer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before Mar 2022. 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 

It asked basic question about the domain and then some design question

Round 3 - Technical 

(3 Questions)

  • Q1. This was a technical and introduction round with us folks
  • Q2. Questions related to the array
  • Q3. Was asked to write html of figma design

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3 rounds and difficulty level wa intermediate. They started from basic and then progressively continue.

Interview questions from similar companies

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

Coding a frontend UI from provided image. And creating a fucntional star rating system

Round 2 - Technical 

(2 Questions)

  • Q1. Designing a Component API in React using Typescript.
  • Ans. 

    Designing a Component API in React using Typescript involves defining props, state, and methods for the component.

    • Define the props interface to specify the expected input data for the component

    • Use typescript types to ensure type safety and prevent runtime errors

    • Define the state interface to manage the internal state of the component

    • Implement methods to handle user interactions and component logic

    • Document the component

  • Answered by AI
  • Q2. Create a function that can clear all the timer ids at once.
  • Ans. 

    Function to clear all timer ids at once

    • Create an array to store all timer ids

    • Iterate through the array and clear each timer id using clearTimeout() function

  • Answered by AI

Skills evaluated in this interview

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

My mostly question were around node js frame works and other tools

Round 2 - One-on-one 

(2 Questions)

  • Q1. Case study for the question asked
  • Q2. Tell me something more about you
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on optimizations
  • Q2. Question on React Js
Round 2 - Coding Test 

Medium level DSA question in JS

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

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

Round 1 - Aptitude Test 

Question are very tough and faad

Round 2 - Coding Test 

Question like trees linked list and graphs

Interview Preparation Tips

Interview preparation tips for other job seekers - Best of luck for your future
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

1 Hr coding round, Leetcode medium problems like Minimum Grid sum & Basic calculator

Interview Preparation Tips

Interview preparation tips for other job seekers - Solved one problem, couldn't solve other, rejected
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. They asked me about web workers and web assembly. The whole questions were planned to reject the candidate.

Interview Preparation Tips

Interview preparation tips for other job seekers - Better opportunities are there.

I applied via Naukri.com and was interviewed in Nov 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 

(13 Questions)

  • Q1. What is denbouncer and throttle
  • Ans. 

    Debouncer and throttle are techniques used to limit the frequency of function calls.

    • Debouncing delays the execution of a function until a certain amount of time has passed without the function being called again.

    • Throttling limits the frequency of function calls to a certain rate, executing the function at fixed intervals.

    • Debouncing is useful for events that may be triggered multiple times in quick succession, such as r...

  • Answered by AI
  • Q2. What is curry function
  • Ans. 

    Currying is a technique of transforming a function that takes multiple arguments into a sequence of functions that each take a single argument.

    • Currying allows partial application of a function

    • It helps in creating reusable functions

    • Curried functions are easier to compose and chain

    • Example: const add = (a) => (b) => a + b; add(2)(3) returns 5

  • Answered by AI
  • Q3. Implement curry function
  • Ans. 

    Curry function is a higher-order function that allows partial application of arguments.

    • Currying transforms a function that takes multiple arguments into a series of functions that take one argument each.

    • It returns a new function until all the arguments are received and then executes the original function.

    • Example: const add = (a, b) => a + b; const curriedAdd = curry(add); curriedAdd(2)(3) returns 5.

  • Answered by AI
  • Q4. What is promise.all()
  • Ans. 

    promise.all() is a method that takes an array of promises and returns a new promise that resolves when all promises in the array have resolved.

    • It is used to handle multiple asynchronous operations simultaneously.

    • If any of the promises in the array rejects, the returned promise will be rejected with the reason of the first rejected promise.

    • The resolved values of the promises are returned as an array in the same order as

  • Answered by AI
  • Q5. What is memoization?
  • Ans. 

    Memoization is a technique of caching the results of a function to improve performance.

    • Memoization is used to avoid redundant calculations by storing the results of a function and returning the cached result when the same inputs occur again.

    • It is commonly used in recursive functions and functions with expensive computations.

    • Memoization can be implemented manually or by using libraries like Lodash or Memoizee.

    • Example: M...

  • Answered by AI
  • Q6. What is closure in javascript
  • Ans. 

    Closure is a function that has access to its parent scope even after the parent function has returned.

    • Closure allows for private variables and functions in JavaScript.

    • It is created when a function returns another function.

    • The inner function has access to the outer function's variables and parameters.

    • Example: function outer() { let x = 10; return function inner() { console.log(x); } }

    • The inner function can access and mo...

  • Answered by AI
  • Q7. What is the problem with colosures
  • Ans. 

    Closures can cause memory leaks if not handled properly.

    • Closures can hold references to variables outside of their scope, preventing them from being garbage collected.

    • If closures are used excessively or not released properly, they can cause memory leaks.

    • To avoid memory leaks, make sure to release closures when they are no longer needed.

  • Answered by AI
  • Q8. Some output questions on SetTimeout to check closure knowledge
  • Q9. React lifecycle events
  • Q10. Major difference between class based components and class based components
  • Ans. 

    There is no difference between class based components and class based components.

    • There seems to be a typo in the question.

    • Assuming the question is about functional components vs class components, the major difference is that class components use a class to define the component while functional components are defined as functions.

    • Class components have access to lifecycle methods while functional components do not.

    • Functi...

  • Answered by AI
  • Q11. Shallow copy vs deep copy
  • Ans. 

    Shallow copy only copies the reference to an object while deep copy creates a new object with a new memory address.

    • Shallow copy is faster and uses less memory than deep copy.

    • In shallow copy, changes made to the original object will reflect in the copied object as well.

    • Deep copy creates a completely new object with its own memory space.

    • In JavaScript, arrays and objects are assigned by reference, so a shallow copy will o...

  • Answered by AI
  • Q12. How to do deep copy ?
  • Ans. 

    Deep copy creates a new object with the same values as the original object.

    • Use Object.assign() method to create a deep copy of an object.

    • For nested objects, use recursion to copy all levels.

    • For arrays, use slice() method to create a new array with the same values.

    • Avoid using spread operator for deep copy as it only creates a shallow copy.

  • Answered by AI
  • Q13. What is hoisting? Some questions on it

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with closures, setTimeout, curry function, etc. The interview was taken by some third party company interview ector and not by Zepto itself

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Dec 2022. There were 3 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 

(2 Questions)

  • Q1. Asked about fundamentals of javascript and react
  • Q2. React lifecycle in functional components
  • Ans. 

    React lifecycle in functional components

    • useEffect hook replaces lifecycle methods

    • useEffect runs after every render by default

    • useEffect can be controlled by dependencies array

    • useEffect cleanup function can be used to clean up effects

    • useLayoutEffect hook runs synchronously after DOM mutations

  • Answered by AI
Round 3 - Coding Test 

Return numbers in array equal to sum

Interview Preparation Tips

Interview preparation tips for other job seekers - better understanding of javascript fundamentals and react

Skills evaluated in this interview

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

(1 Question)

  • Q1. Given a matrix zeros and ones find minimum distance for each one to a zero.
  • Ans. 

    Given a matrix of zeros and ones, find the minimum distance for each one to a zero.

    • Use breadth-first search (BFS) to find the minimum distance from each one to a zero.

    • Start by initializing a queue with all the zeros in the matrix.

    • While the queue is not empty, dequeue a zero and enqueue its neighboring ones.

    • Keep track of the distance from each one to the nearest zero.

    • Repeat until all ones have been visited.

    • Return the ma

  • Answered by AI

Skills evaluated in this interview

Zoom Care Interview FAQs

How many rounds are there in Zoom Care Front end Developer interview?
Zoom Care interview process usually has 3 rounds. The most common rounds in the Zoom Care interview process are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in Zoom Care Front end Developer interview?

Some of the top questions asked at the Zoom Care Front end Developer interview -

  1. This was a technical and introduction round with us fo...read more
  2. Was asked to write html of figma des...read more
  3. Questions related to the ar...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Zoom Care interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Devops Engineer
5 salaries
unlock blur

₹24.9 L/yr - ₹45 L/yr

Software Engineer
4 salaries
unlock blur

₹19.5 L/yr - ₹44 L/yr

Service Engineer
4 salaries
unlock blur

₹25.3 L/yr - ₹60 L/yr

Senior Software Engineer
4 salaries
unlock blur

₹32 L/yr - ₹35 L/yr

Software Developer
3 salaries
unlock blur

₹8 L/yr - ₹23.6 L/yr

Explore more salaries
Compare Zoom Care with

Microsoft Corporation

4.1
Compare

Google

4.4
Compare

Cisco

4.2
Compare

Logitech

4.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview