Upload Button Icon Add office photos
Engaged Employer

i

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

Zeplinix Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Zeplinix Technologies Reactjs Developer Interview Questions and Answers

Updated 19 Dec 2024

Zeplinix Technologies Reactjs Developer Interview Experiences

1 interview found

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

I appeared for an interview in Nov 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Js and react question and some coding snippet's.
Round 2 - Coding Test 

He has given a task where 4 products are listed, similar to Amazon. The task involves showing a UI with product images displayed and prices shown below each product image. There are also + and - button, which represents "Add to Cart" and "Remove from Cart".
When a user clicks the + button, the products and its price will be added to the cart. The cart will update to show the items and its price. If the user clicks the + button on another products, the price of that new product will be added to the total price in the cart, along with the new products.
This task also includes a Cart Screen, where the products added to the cart will be listed, along with the total price, which will dynamically update as items are added or removed.

Interview Preparation Tips

Interview preparation tips for other job seekers - I cleared the first technical round and performed well in the second technical round, despite being given only 45 - 50 minutes for a task that was impossible to complete in such a short time. After the interview, I waited for feedback, but there was no response from HR. I tried calling multiple times, sent messages on WhatsApp which were left unread, and after 3-4 day, I was finally told by HR that the interviewer was on leave and latter got the feedback not shortlist.
The lack of professionalism and poor communication from Zeplinix Technology was extremely frustrating and a waste of my time. I would not recommend working or giving interview here again.

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Let, const, var
  • Q2. Redux flow. Spread and Rest operator. before and after in css.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basics of react, javascript, hooks
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is Pure components/memo/useCallback/HoC
  • Ans. 

    Pure components, memo, useCallback, and HoC are optimization techniques in React for improving performance.

    • Pure components are components that only re-render when their props or state change.

    • memo is a higher order component that memoizes the result of a component rendering, preventing unnecessary re-renders.

    • useCallback is a hook that memoizes functions, preventing unnecessary re-creations on re-renders.

    • HoC (Higher Orde...

  • Answered by AI

I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic questions
  • Q2. Lifecycle, let vs bar, real dom vs shadow dom

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst Company
Even after clearing all round.. they said candidature is closed due to verification didn't match.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
No response

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. CSS specificity questions
  • Q2. CSS selectors related questions
  • Q3. Javascript basic questions
  • Q4. React basic questions
  • Q5. Javascript eventloop related guess the output.
  • Q6. Write code in react of React.memo

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare more on css (specificity, selectors, inheritance, grid and flex layout, position properties) Javascript basics, event loop React basics

I applied via Approached by Company and was interviewed in Apr 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Scenario based and General ReactJS and javascript Questions.

Interview Preparation Tips

Topics to prepare for TCS Reactjs Developer interview:
  • Javascript
  • React.Js
  • CSS
Interview preparation tips for other job seekers - It's kinda techno-managerial round, where questions were about your project, role, daily routines and again javascript and react questions.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Splice & slice difference
  • Ans. 

    Splice is used to add/remove elements from an array, while slice is used to extract a portion of an array without modifying the original array.

    • Splice modifies the original array, while slice does not.

    • Splice can add elements, remove elements, or replace elements in an array.

    • Slice returns a new array with the selected elements from the original array.

    • Example: const arr = [1, 2, 3, 4, 5]; arr.splice(2, 1); // removes elem...

  • Answered by AI
  • Q2. Coding question | How to reverse string
  • Ans. 

    To reverse a string, iterate through the characters and swap them from start to end.

    • Create an empty string to store the reversed result.

    • Iterate through the characters of the input string from end to start.

    • Append each character to the empty string to reverse the order.

    • Return the reversed string.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through basics of react & some coding questions on string & array also iteration of object

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
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 - 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 - Technical 

(1 Question)

  • Q1. Basics of javascript and react concept.
Round 3 - Coding Test 

Asked about vanilla.js in react interview.

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont forget to revise basic topic, they will ask core basic concept.

I applied via Recruitment Consulltant and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What is hoisting in JS
  • Ans. 

    Hoisting is a JavaScript behavior where variable and function declarations are moved to the top of their containing scope.

    • Hoisting applies to both variable and function declarations.

    • Variable declarations are hoisted but not their initializations.

    • Function declarations are fully hoisted, allowing them to be called before they are declared.

    • Hoisting does not apply to variables declared with let or const.

    • Hoisting can lead t...

  • Answered by AI
  • Q2. What are higher-order functions in JS
  • Ans. 

    Higher-order functions are functions that take one or more functions as arguments or return a function as their result.

    • Higher-order functions can be used to create reusable code by abstracting common patterns.

    • They enable functional programming paradigms like currying and composition.

    • Examples of higher-order functions in JavaScript include map, filter, and reduce.

  • Answered by AI
  • Q3. Difference between var, let, and const in JS
  • Ans. 

    var is function scoped, let and const are block scoped.

    • var can be redeclared and updated within its scope

    • let can be updated but not redeclared within its scope

    • const cannot be updated or redeclared once declared

    • let and const are not hoisted like var

    • const must be initialized during declaration

  • Answered by AI
  • Q4. What are Hooks in React.js
  • Ans. 

    Hooks are a feature in React.js that allow developers to use state and other React features in functional components.

    • Hooks are functions that let you use React features in functional components

    • They allow you to use state and other React features without writing a class

    • Hooks provide a way to reuse stateful logic between components

    • Some commonly used hooks are useState, useEffect, and useContext

  • Answered by AI
  • Q5. Presentation component vs functional component in React.js
  • Q6. Bind(), call(), apply() in JS

Interview Preparation Tips

Topics to prepare for Infosys Reactjs Developer interview:
  • JavaSctipt
  • React.Js
Interview preparation tips for other job seekers - the interview was based on basic concepts of JS.

Skills evaluated in this interview

Zeplinix Technologies Interview FAQs

How many rounds are there in Zeplinix Technologies Reactjs Developer interview?
Zeplinix Technologies interview process usually has 2 rounds. The most common rounds in the Zeplinix Technologies interview process are Technical and Coding Test.
How to prepare for Zeplinix Technologies Reactjs Developer 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 Zeplinix Technologies. The most common topics and skills that interviewers at Zeplinix Technologies expect are React.Js, Redux and Webpack.

Tell us how to improve this page.

Zeplinix Technologies Reactjs Developer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more
Compare Zeplinix Technologies with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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