Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture Reactjs Developer Interview Questions, Process, and Tips

Updated 21 Oct 2024

Top Accenture Reactjs Developer Interview Questions and Answers

View all 6 questions

Accenture Reactjs Developer Interview Experiences

8 interviews found

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

(2 Questions)

  • Q1. Flat the array without using the inbuilt methods
  • Ans. 

    Flatten an array without using inbuilt methods

    • Use recursion to iterate through the array and flatten it

    • Create a new array to store the flattened elements

    • Check if each element is an array, if so, recursively call the function to flatten it

  • Answered by AI
  • Q2. Sort the given objects based on the ages

Reactjs Developer Interview Questions & Answers

user image vaibhav chakane

posted on 7 Feb 2024

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

(3 Questions)

  • Q1. Javascript array methods like filter and reduce. Javascript guess the output questions based on variables and functions.
  • Q2. React lifecycle methods
  • Q3. UseState and useEffect usecase

Reactjs Developer Interview Questions Asked at Other Companies

Q1. Implement counter such that it has 2 buttons to increment and dec ... read more
asked in Accenture
Q2. How do you make a page responsive. Bootstrap layouts and alerts
asked in Java R & D
Q3. What are Call, apply and bind methods, what is currying in JavaSc ... read more
Q4. what is ES6 feature small coding on how let,var,const works javas ... read more
asked in Metafic
Q5. Write code for functional component to call an API and show a lis ... read more
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

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

Accenture interview questions for designations

 Developer

 (9)

 Application Developer

 (258)

 Software Developer

 (236)

 Java Developer

 (52)

 Salesforce Developer

 (36)

 Web Developer

 (16)

 Senior Developer

 (11)

 Android Developer

 (8)

I applied via Naukri.com and was interviewed in Apr 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. I gave technical interview with Accenture for react js developer. They asked questions majorly related to software development like session storage, Server side rendering Url Constructor Saas Web workers...

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for basics more. Javascript specific questions were minimal most of them were related to core concepts only.

Get interview-ready with Top Accenture Interview Questions

I applied via Naukri.com and was interviewed in Aug 2021. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Html - Form, meta tags
  • Q2. Css - Grid box.
  • Q3. How do you make a page responsive. Bootstrap layouts and alerts
  • Ans. 

    To make a page responsive, use Bootstrap layouts and alerts.

    • Use Bootstrap's grid system to create responsive layouts

    • Use media queries to adjust the layout based on screen size

    • Use Bootstrap's responsive utility classes to hide/show elements on different devices

    • Use Bootstrap's responsive navigation components for mobile-friendly menus

    • Use Bootstrap's responsive images to ensure they scale properly

    • Use Bootstrap's responsiv...

  • Answered by AI
  • Q4. Javascript array based questions
  • Q5. Questions from redux, hook, use state, UseEffect

Interview Preparation Tips

Interview preparation tips for other job seekers - I had a call from Accenture HR asking my interest for the role. Three rounds - 1st is mcq which had 30 questions for 35min. Moderate to tough.
Second round is technical interview, took around 2 hours. Totally exhausted after 1st hour. Interviewer asked to write few codes in the live code share screen. The process is completed in a week

Skills evaluated in this interview

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 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.

Interview questions from similar companies

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

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

Round 1 - Technical 

(6 Questions)

  • Q1. What is the difference between a development dependency and a regular dependency in software development?
  • Ans. 

    Development dependencies are needed for development and testing, while regular dependencies are needed for the application to run.

    • Development dependencies are used during the development process, such as testing frameworks or build tools.

    • Regular dependencies are required for the application to function properly in production.

    • Development dependencies are typically listed in the devDependencies section of package.json, w...

  • Answered by AI
  • Q2. What do the symbols ^ and ~ represent in the package.json file?
  • Ans. 

    Symbols ^ and ~ in package.json represent version ranges for dependencies.

    • The symbol ^ represents a range that allows minor version updates.

    • The symbol ~ represents a range that allows only patch updates.

    • For example, ^1.2.3 allows any version from 1.2.3 to <2.0.0, while ~1.2.3 allows any version from 1.2.3 to <1.3.0.

  • Answered by AI
  • Q3. How can a 404 page be handled in React routing?
  • Ans. 

    404 page can be handled in React routing by creating a Route component with a path of '*' at the end of all other routes.

    • Create a Route component with a path of '*' at the end of all other routes in the Switch component.

    • Inside the '*' Route component, render a custom 404 page component.

    • Use the Switch component to ensure that only one Route is rendered at a time.

  • Answered by AI
  • Q4. Some Javascript coding questions.
  • Q5. What is the component lifecycle in functional components?
  • Ans. 

    Component lifecycle in functional components involves useEffect hook for side effects.

    • Functional components use useEffect hook to handle side effects like fetching data, subscribing to events, etc.

    • useEffect hook can be used to mimic componentDidMount, componentDidUpdate, and componentWillUnmount lifecycle methods.

    • useEffect hook takes a callback function as its first argument and an optional array of dependencies as its...

  • Answered by AI
  • Q6. Explain redux data flow
  • Ans. 

    Redux data flow is a unidirectional flow of data in React applications using a centralized store.

    • Actions are dispatched to the store

    • Reducers update the state based on the action

    • Components subscribe to the store to access the updated state

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Infosys Reactjs Developer interview:
  • Javascript
  • React.Js
Interview preparation tips for other job seekers - Get your basic cleared and be prepared
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. React basic,event loop, Lazy Loading, Suspense, Javascript basics
  • Q2. Create counter application
  • Ans. 

    Counter application using Reactjs

    • Create a React component for the counter

    • Use state to keep track of the count

    • Implement functions to increment and decrement the count

    • Display the count on the screen

  • Answered by AI

Accenture Interview FAQs

How many rounds are there in Accenture Reactjs Developer interview?
Accenture interview process usually has 1 rounds. The most common rounds in the Accenture interview process are Technical and One-on-one Round.
What are the top questions asked in Accenture Reactjs Developer interview?

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

  1. How do you make a page responsive. Bootstrap layouts and aler...read more
  2. what is the need of de structuring syn...read more
  3. Flat the array without using the inbuilt meth...read more

Tell us how to improve this page.

Accenture Reactjs Developer Interview Process

based on 4 interviews

1 Interview rounds

  • Technical Round
View more
Accenture Reactjs Developer Salary
based on 95 salaries
₹3.5 L/yr - ₹14 L/yr
38% more than the average Reactjs Developer Salary in India
View more details

Accenture Reactjs Developer Reviews and Ratings

based on 3 reviews

2.7/5

Rating in categories

4.0

Skill development

2.1

Work-life balance

2.4

Salary

2.3

Job security

3.2

Company culture

1.6

Promotions

2.6

Work satisfaction

Explore 3 Reviews and Ratings
Application Development Analyst
38.9k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
27k salaries
unlock blur

₹6.9 L/yr - ₹20.2 L/yr

Team Lead
24.3k salaries
unlock blur

₹7.1 L/yr - ₹25.7 L/yr

Senior Software Engineer
18.3k salaries
unlock blur

₹6 L/yr - ₹19.5 L/yr

Software Engineer
17.5k salaries
unlock blur

₹3.6 L/yr - ₹13.4 L/yr

Explore more salaries
Compare Accenture with

TCS

3.7
Compare

Cognizant

3.8
Compare

Capgemini

3.7
Compare

Infosys

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