Upload Button Icon Add office photos

Genpact

Compare button icon Compare button icon Compare

Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Genpact Reactjs Developer Interview Questions and Answers

Updated 3 Aug 2024

Genpact Reactjs Developer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between states and props ?
  • Ans. 

    States are mutable data managed within a component, while props are immutable data passed from parent to child components.

    • States are managed within a component and can be changed using setState method

    • Props are passed from parent to child components and are immutable

    • States are used for internal component data management, while props are used for passing data between components

    • Example: A counter component may have a stat...

  • Answered by AI
  • Q2. How are data passed from children to parents in react component?
  • Ans. 

    Data can be passed from children to parents in React components by using callback functions.

    • Use callback functions to pass data from child components to parent components

    • Parent component passes a function as a prop to child component

    • Child component calls the function with the data as an argument to pass data to parent component

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Genpact Reactjs Developer interview:
  • React.Js
  • HTML
  • CSS
  • Javascript
Interview preparation tips for other job seekers - Know basic concepts of React.

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Asked to write a general reusable form component in Reactjs, fields should be dynamic and inputs to the form should get displayed as table format.
  • Ans. 

    A reusable React form component that dynamically generates fields and displays inputs in a table format.

    • Use React's state to manage form data dynamically.

    • Utilize a mapping function to render form fields based on an array of field definitions.

    • Implement a submit handler to process the form data.

    • Display the form inputs in a table format using HTML table elements.

    • Example of field definitions: [{ label: 'Name', type: 'text'...

  • Answered by AI

Reactjs Developer Interview Questions Asked at Other Companies

Q1. Implement a counter with increment and decrement buttons. Include ... read more
asked in Java R & D
Q2. What are Call, apply and bind methods, what is currying in JavaSc ... read more
Q3. Display a list of products using the flexbox layout. Create a sor ... read more
asked in Infosys
Q4. What is the difference between a development dependency and a reg ... read more
asked in NeoSOFT
Q5. Develop a Progress Bar React Component from scratch, without usin ... read more

Interview Questionnaire 

2 Questions

  • Q1. Basics of javascript like Closures, IIFE, Hoisting.
  • Q2. React hooks

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.

What people are saying about Genpact

View All
a digital marketer
21m
Do you think they're gonna work on employees' work-life balance, OR for just publicity?
Infosys, Infosys, TCS, Genpact Revise Workplace Policies Infosys is sending a warning mail, if an employee overshoots the daily limit while working remotely, the system triggers a notification Genpact introduced a new policy to log in before 11 am But will these companies really change, or is it just a show to mask their issues?
FeedCard Image
Got a question about Genpact?
Ask anonymously on communities.

Interview Questionnaire 

2 Questions

  • Q1. Let, const, var
  • Q2. Redux flow. Spread and Rest operator. before and after in css.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How React Works?
  • Ans. 

    React is a JavaScript library for building user interfaces that uses a virtual DOM to efficiently update the UI.

    • React creates a virtual DOM to represent the UI components.

    • When state or props change, React compares the virtual DOM with the actual DOM and updates only the necessary parts.

    • React uses a component-based architecture to build reusable UI elements.

    • React uses JSX, a syntax extension for JavaScript, to write com...

  • Answered by AI
  • Q2. How Redux Works?
  • Ans. 

    Redux is a predictable state container for JavaScript apps.

    • Redux stores the entire state of the application in a single immutable object.

    • Actions are dispatched to describe state changes.

    • Reducers specify how the state changes in response to actions.

    • Components can subscribe to the Redux store to access the state.

    • Redux helps manage the state of complex applications and makes it easier to debug and test.

    • Example: dispatchin...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be fundamentally clear with Javascript concepts

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Why is arrow function used
  • Ans. 

    Arrow functions are used for concise syntax, lexical scoping of 'this', and implicit return of single expressions.

    • Arrow functions have a more concise syntax compared to traditional function expressions.

    • Arrow functions do not bind their own 'this' value, instead they inherit 'this' from the containing scope.

    • Arrow functions automatically return the result of a single expression without needing the 'return' keyword.

  • Answered by AI
  • Q2. What is the need of de structuring syntax
  • Ans. 

    Destructuring syntax allows for easy extraction of values from arrays or objects in JavaScript.

    • Simplifies code by providing a concise way to extract multiple values from arrays or objects

    • Improves readability and maintainability of code

    • Can be used in function parameters to destructure objects directly

    • Example: const person = { name: 'John', age: 30 }; const { name, age } = person;

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on fundamentals

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2023. 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 - Aptitude Test 

There were 15 mcq questions from JS, React,HTML and CSS

Round 3 - Technical 

(1 Question)

  • Q1. Basic React and Javascript questions
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.
  • Ans. 

    Understanding the JavaScript event loop is crucial for predicting output in asynchronous code execution.

    • The event loop handles asynchronous operations in JavaScript, allowing non-blocking execution.

    • JavaScript uses a call stack and a message queue to manage execution contexts.

    • Example: setTimeout(() => console.log('A'), 0); console.log('B'); outputs 'B' then 'A'.

    • Microtasks (like Promises) are processed before macrotas...

  • Answered by AI
  • Q6. Write code in react of React.memo
  • Ans. 

    React.memo is a higher-order component that optimizes functional components by memoizing their output.

    • React.memo prevents unnecessary re-renders by memoizing the component's output based on props.

    • It is useful for functional components that render the same output given the same props.

    • Example usage: const MemoizedComponent = React.memo(MyComponent);

    • You can provide a custom comparison function as the second argument to Re...

  • Answered by AI

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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What do you mean by redux and how to use redux
  • Ans. 

    Redux is a predictable state container for JavaScript apps. It helps manage the state of an application in a more organized way.

    • Redux is a state management tool commonly used with React to manage the state of an application.

    • It follows a unidirectional data flow, where the state is stored in a single store.

    • Actions are dispatched to update the state, and reducers specify how the state should change in response to actions...

  • Answered by AI
  • Q2. What is the use of Context Api in React
  • Ans. 

    Context API is used in React to pass data through the component tree without having to pass props down manually at every level.

    • Avoids prop drilling by providing a way to share values like themes, user data, etc. across the component tree.

    • Helps in managing global state in React applications.

    • Context API consists of Provider and Consumer components to provide and consume the context data.

    • Can be used for theming, localizat...

  • Answered by AI

Skills evaluated in this interview

Genpact Interview FAQs

How many rounds are there in Genpact Reactjs Developer interview?
Genpact interview process usually has 1 rounds. The most common rounds in the Genpact interview process are Technical.
How to prepare for Genpact 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 Genpact. The most common topics and skills that interviewers at Genpact expect are Javascript, Bootstrap, React.Js, Redux and UI.
What are the top questions asked in Genpact Reactjs Developer interview?

Some of the top questions asked at the Genpact Reactjs Developer interview -

  1. How are data passed from children to parents in react compone...read more
  2. What is the difference between states and prop...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more
Genpact Reactjs Developer Salary
based on 7 salaries
₹4.1 L/yr - ₹8.5 L/yr
18% more than the average Reactjs Developer Salary in India
View more details
Process Developer
38k salaries
unlock blur

₹2.4 L/yr - ₹7.2 L/yr

Process Associate
28.9k salaries
unlock blur

₹1.8 L/yr - ₹4.8 L/yr

Management Trainee
22.2k salaries
unlock blur

₹4.2 L/yr - ₹8.6 L/yr

Assistant Manager
21.6k salaries
unlock blur

₹6 L/yr - ₹13.4 L/yr

Manager
8.5k salaries
unlock blur

₹11 L/yr - ₹19.1 L/yr

Explore more salaries
Compare Genpact with

Accenture

3.7
Compare

Capgemini

3.7
Compare

TCS

3.6
Compare

Cognizant

3.7
Compare
write
Share an Interview