Premium Employer

i

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

Infosys Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Infosys React Js Frontend Developer Interview Questions, Process, and Tips

Updated 18 Dec 2024

Top Infosys React Js Frontend Developer Interview Questions and Answers

View all 22 questions

Infosys React Js Frontend Developer Interview Experiences

19 interviews found

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

(2 Questions)

  • Q1. Explain ES6 Concepts
  • Q2. Difference between shallow copy and deep copy
Round 2 - Behavioral 

(2 Questions)

  • Q1. About my project
  • Q2. Work flow and all
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. React technical question , html, css and javascript. new hooks, in css border-box, semantic tag, and those normal interview questions
Round 2 - HR 

(1 Question)

  • Q1. Hr questions and how would you handle side effect in react

React Js Frontend Developer Interview Questions Asked at Other Companies

asked in Simform
Q1. 1. What is difference between abstract class and interface ?
asked in Simform
Q2. 3. What is Difference between primary key and unique key ?
asked in Simform
Q3. 2. What is Arrow Function in Javascripts?
asked in Simform
Q4. 5. Why we require interface and what is interface in java ?
asked in Simform
Q5. 4. how you join three different tables in SQL ?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Company Website and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions on Js and react
  • Q2. Example is given to call an dummy api
  • Ans. 

    To call a dummy API, use fetch() method with the API URL and handle the response using .then()

    • Use fetch() method to make a GET request to the dummy API URL

    • Handle the response using .then() method to access the data returned by the API

    • You can also use async/await syntax for cleaner code

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Project related questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Diff between virtual dom and original dom
  • Ans. 

    Virtual DOM is a lightweight copy of the original DOM that React uses to improve performance by minimizing actual DOM manipulation.

    • Virtual DOM is a representation of the actual DOM in memory.

    • React compares the virtual DOM with the original DOM and only updates the parts that have changed.

    • Virtual DOM updates are faster than directly manipulating the original DOM.

    • Virtual DOM helps in optimizing performance by reducing th...

  • Answered by AI
  • Q2. Detailed explanation of useffect
  • Ans. 

    useEffect is a React hook that allows for side effects in functional components.

    • useEffect is used to perform side effects in functional components.

    • It runs after every render by default.

    • It can be used to fetch data, subscribe to events, update the DOM, and more.

    • To run useEffect only once, pass an empty array as the second argument.

    • To clean up effects, return a function from useEffect.

  • Answered by AI
  • Q3. UseMemo will use in all component

Skills evaluated in this interview

Infosys interview questions for designations

 React Developer

 (4)

 Node JS Developer

 (6)

 Angular JS Developer

 (1)

 Angular Frontend Developer

 (13)

 React Native Developer

 (2)

 Node Js Backend Developer

 (1)

 Web Designer & Frontend Developer

 (2)

 Developer

 (22)

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What is closure
  • Ans. 

    A closure is a function that has access to its own scope, as well as the scope in which it was defined.

    • A closure allows a function to access variables from an outer function even after the outer function has finished executing.

    • Closures are commonly used to create private variables in JavaScript.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.log(outerVar); }; }

  • Answered by AI
  • Q2. What is webworkers
  • Ans. 

    Web Workers are a way to run JavaScript code in the background, separate from the main thread of the web application.

    • Web Workers allow for multi-threading in JavaScript, improving performance by offloading tasks to separate threads.

    • They can be used for tasks like heavy calculations, image processing, or other CPU-intensive operations.

    • Communication between the main thread and Web Workers is done through message passing.

    • ...

  • Answered by AI
  • Q3. What is first class function and
  • Ans. 

    A first class function is a function that can be treated like any other variable in a programming language.

    • Can be passed as an argument to other functions

    • Can be returned from other functions

    • Can be assigned to variables

    • Can be stored in data structures

  • Answered by AI
  • Q4. What is first paint and temporal dead zone
  • Ans. 

    First paint refers to the time when the browser starts rendering pixels to the screen. Temporal dead zone is a period in JavaScript where a variable exists but cannot be accessed.

    • First paint is the time when the browser starts rendering content on the screen.

    • Temporal dead zone is a period in JavaScript where a variable is declared but cannot be accessed due to the variable being in an inaccessible state.

    • Example: const ...

  • Answered by AI
  • Q5. What is callback, event deligaton, react reconcillaton, react life cycle methods
  • Ans. 

    Callbacks, event delegation, React reconciliation, and React lifecycle methods are key concepts in React development.

    • Callback functions are functions passed as arguments to be executed later, commonly used in event handling and asynchronous operations.

    • Event delegation is a technique where a single event listener is attached to a parent element to manage events for multiple child elements.

    • React reconciliation is the pro...

  • Answered by AI
  • Q6. Implementing redux
  • Ans. 

    Implementing Redux in a React application involves several steps to manage state globally.

    • Install Redux and React-Redux libraries using npm or yarn.

    • Create a Redux store to hold the state of the application.

    • Define reducers to specify how the state should change in response to actions.

    • Dispatch actions to update the state in the Redux store.

    • Connect React components to the Redux store using the connect function from React-...

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top Infosys Interview Questions

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

(2 Questions)

  • Q1. Create a table component from array of objects
  • Ans. 

    Create a table component from array of objects in React JS

    • Map through the array of objects to render rows in the table

    • Use Object.keys() to dynamically generate table headers

    • Utilize CSS for styling the table

  • Answered by AI
  • Q2. What is event loop
  • Ans. 

    Event loop is a mechanism in JavaScript that allows for asynchronous operations to be executed in a non-blocking way.

    • Event loop is responsible for handling the execution of code in a single-threaded environment.

    • It continuously checks the call stack for any functions that need to be executed.

    • If the call stack is empty, it looks at the task queue for any pending tasks to be executed.

    • Event loop ensures that JavaScript rem...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus in js concepts

Skills evaluated in this interview

React Js Frontend Developer Jobs at Infosys

View all
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Discussion about javascript concepts

Round 2 - Coding Test 

Coding for react components

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

(2 Questions)

  • Q1. Difference between props and data
  • Ans. 

    Props are used to pass data from parent to child components in React, while data refers to the information stored within a component.

    • Props are read-only and cannot be modified by the child component.

    • Data is mutable and can be changed within the component.

    • Props are passed down from parent to child components, while data is stored within the component itself.

    • Example: Passing a 'name' prop from a parent component to a chi...

  • Answered by AI
  • Q2. Lifecycle methods
Round 2 - HR 

(2 Questions)

  • Q1. Describe your greatest Strength
  • Q2. Describe your greatest Weakness

Skills evaluated in this interview

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

50 minutes coding round they asked me some theoretical question and machine coding question they asked me DSA question

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

Mathematics question

Round 2 - Technical 

(2 Questions)

  • Q1. What is react js
  • Ans. 

    React JS is a JavaScript library for building user interfaces.

    • React JS is a front-end library developed by Facebook.

    • It allows developers to create interactive user interfaces.

    • React uses a component-based architecture for building reusable UI components.

    • It uses a virtual DOM for efficient rendering of UI components.

    • React can be used to build single-page applications, mobile apps, and more.

  • Answered by AI
  • Q2. What is hooks in react
  • Ans. 

    Hooks in React are functions that let you use state and other React features without writing a class.

    • Hooks were introduced in React 16.8.

    • They allow you to use state and other React features in functional components.

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

    • Hooks help in reusing stateful logic across components.

    • Example: useState hook is used to add state to a functional component.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy round

Skills evaluated in this interview

Infosys Interview FAQs

How many rounds are there in Infosys React Js Frontend Developer interview?
Infosys interview process usually has 1-2 rounds. The most common rounds in the Infosys interview process are Technical, Coding Test and HR.
How to prepare for Infosys React Js Frontend 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 Infosys. The most common topics and skills that interviewers at Infosys expect are React Native, Redux and UI Development.
What are the top questions asked in Infosys React Js Frontend Developer interview?

Some of the top questions asked at the Infosys React Js Frontend Developer interview -

  1. what is callback, event deligaton, react reconcillaton, react life cycle meth...read more
  2. What is first paint and temporal dead z...read more
  3. What is closures explain about...read more

Tell us how to improve this page.

Infosys React Js Frontend Developer Interview Process

based on 23 interviews

2 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys React Js Frontend Developer Salary
based on 67 salaries
₹3.6 L/yr - ₹7.7 L/yr
13% less than the average React Js Frontend Developer Salary in India
View more details

Infosys React Js Frontend Developer Reviews and Ratings

based on 3 reviews

5.0/5

Rating in categories

5.0

Skill development

4.3

Work-life balance

3.7

Salary

5.0

Job security

5.0

Company culture

4.3

Promotions

5.0

Work satisfaction

Explore 3 Reviews and Ratings
React Js Frontend Developer - Infosys (PAN INDIA)

Hyderabad / Secunderabad,

Chennai

+1

2-7 Yrs

Not Disclosed

React Js Frontend Developer_ Pune, Bangalore

Hyderabad / Secunderabad,

Chennai

+1

3-8 Yrs

Not Disclosed

React Js Frontend Developer - India (Bangalore)

Bangalore / Bengaluru

3-8 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
55.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Systems Engineer
50.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Engineer
39.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
30.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate Consultant
28k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

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