Upload Button Icon Add office photos

Filter interviews by

Clear (1)

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

 (238)

 Java Developer

 (51)

 Salesforce Developer

 (37)

 Web Developer

 (16)

 Senior Developer

 (10)

 Python 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 Questionnaire 

2 Questions

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Assignment 

MCQ based Questions were asked

Round 2 - Technical 

(2 Questions)

  • Q1. Do you follow CI/CD process?
  • Ans. 

    Yes, I follow CI/CD process to automate testing and deployment.

    • I use tools like Jenkins, GitLab CI, or CircleCI to automate the build, test, and deployment process.

    • I write unit tests and integration tests to ensure code quality before deployment.

    • I regularly push code changes to version control and trigger automated builds and tests.

    • I use continuous integration to merge code changes frequently and detect issues early in

  • Answered by AI
  • Q2. What is CI/CD Process
  • Ans. 

    CI/CD process is a software development practice that involves continuous integration, continuous delivery, and continuous deployment.

    • Continuous Integration (CI) involves automatically building and testing code changes frequently.

    • Continuous Delivery (CD) ensures that code changes are always in a deployable state.

    • Continuous Deployment (CD) automatically deploys code changes to production environments.

    • CI/CD helps in redu...

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

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

Recently Viewed

COMPANY BENEFITS

Capgemini

No Benefits

SALARIES

Microsoft Corporation

SALARIES

Microsoft Corporation

SALARIES

Microsoft Corporation

SALARIES

Cyient

SALARIES

LTIMindtree

SALARIES

NielsenIQ

SALARIES

Microsoft Corporation

JOBS

24/7 Customer

No Jobs

INTERVIEWS

Infosys

No Interviews

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 96 salaries
₹3.5 L/yr - ₹13 L/yr
36% 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

₹0 L/yr - ₹0 L/yr

Application Development - Senior Analyst
26.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
24.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
18.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
17.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Accenture with

TCS

3.7
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare

Infosys

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