Upload Button Icon Add office photos
Engaged Employer

i

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

SuperProcure Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

SuperProcure Reactjs Developer Interview Questions and Answers

Updated 17 Jun 2024

SuperProcure Reactjs Developer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in May 2024. There were 5 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic question on React and java script
  • Q2. Out put question
Round 2 - Technical 

(1 Question)

  • Q1. Basic question on React and javascript
Round 3 - Technical 

(1 Question)

  • Q1. Managerial discussion
Round 4 - One-on-one 

(2 Questions)

  • Q1. CTO Discussion, why do you want to join our company
  • Q2. Imp:- if you are neer to Calcutta more chance get selected
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic javascript, react ,

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

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

Interview Questionnaire 

4 Questions

  • Q1. All basic js concepts
  • Q2. Reactjs 16+ questions
  • Q3. Nodejs
  • Q4. Unit test

Interview Preparation Tips

Interview preparation tips for other job seekers - All about basic js concepts
Reactjs 16+ questions
Nodejs
Jest, enzyme

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.

Reactjs Developer Interview Questions & Answers

TCS user image GATHPA HARSHINI REDDY

posted on 5 Jul 2024

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

I applied via Job Portal and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Difference between let,var and const
  • Ans. 

    let, var, and const are all used for variable declaration in JavaScript, but they have different scopes and behaviors.

    • let has block scope, var has function scope, and const is a constant that cannot be reassigned.

    • Using let allows you to declare variables that are limited to the scope of a block statement.

    • var variables are hoisted to the top of their function scope.

    • const variables must be initialized with a value and ca

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What is react and tell the advantages of React.
  • Ans. 

    React is a JavaScript library for building user interfaces.

    • Component-based architecture for reusability

    • Virtual DOM for efficient updates

    • One-way data binding for predictable data flow

    • Supports server-side rendering for SEO optimization

  • Answered by AI
  • Q2. What is callback function? What are hooks?
  • Ans. 

    Callback function is a function passed as an argument to another function to be executed later. Hooks are functions that let you use state and other React features without writing a class.

    • Callback function is used to handle asynchronous operations or events in JavaScript.

    • Example: setTimeout function takes a callback function as an argument to execute after a specified time.

    • Hooks are introduced in React 16.8 to allow fu...

  • Answered by AI
  • Q3. From CSS - What is box model?
  • Ans. 

    Box model is a fundamental concept in CSS which defines the spacing and dimensions of an element.

    • The box model consists of content, padding, border, and margin.

    • Content area is where the actual content of the element is displayed.

    • Padding is the space between the content and the border.

    • Border surrounds the padding and content.

    • Margin is the space outside the border, separating the element from other elements.

    • Example: div ...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Can you work in night shift?
  • Q2. Salary negotiation and package details.
Round 3 - Offer letter 

(2 Questions)

  • Q1. Accept or reject offer letter
  • Q2. Confirm joining

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Dec 2022. There were 2 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 

(4 Questions)

  • Q1. Some of important javascript questions
  • Q2. On react js like hooks, virtual dom,html5 and html,state, useMemo, useCallback,useEffect
  • Q3. Box model, css selector
  • Q4. What are fragments in react js
  • Ans. 

    Fragments in React.js are used to group multiple elements without adding an extra node to the DOM.

    • Fragments are a way to group multiple elements without using a wrapper element.

    • They help in avoiding unnecessary divs in the DOM.

    • Fragments can improve performance by reducing the number of DOM nodes.

    • They are useful when returning multiple elements from a component's render method.

    • Fragments can be written using the

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - just prepare basic of front end technology like html,css,javascript,es6

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Coding questions related let ,var and const
  • Q2. What is reducer and it's flow
  • Ans. 

    A reducer is a pure function in React that takes the previous state and an action, and returns the new state.

    • Reducers are used in React to manage state changes in an application

    • They take the previous state and an action as input

    • Reducers are pure functions, meaning they do not modify the state directly

    • They return a new state based on the previous state and the action

    • Redux is a popular library that uses reducers to manag

  • Answered by AI
  • Q3. What are new features of HTMl5,css positions
  • Ans. 

    New features of HTML5 and CSS positions include flexbox, grid layout, and sticky positioning.

    • Flexbox allows for easier alignment and distribution of items within a container.

    • Grid layout enables the creation of complex layouts with rows and columns.

    • Sticky positioning allows elements to stick to a specific position on the page as the user scrolls.

  • Answered by AI
  • Q4. Javascript coding questions-array object
  • Q5. Spread operator in react?
  • Ans. 

    Spread operator is used to expand an iterable object into individual elements.

    • Used for passing props to child components

    • Used for merging arrays and objects

    • Syntax: ...

    • Example: const arr = [1, 2, 3]; const newArr = [...arr, 4, 5];

  • Answered by AI
  • Q6. Tel me about

Skills evaluated in this interview

SuperProcure Interview FAQs

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

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

  1. Imp:- if you are neer to Calcutta more chance get selec...read more
  2. basic question on React and java scr...read more
  3. Basic question on React and javascr...read more

Tell us how to improve this page.

SuperProcure Reactjs Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Business Analyst
8 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Quality Analyst
8 salaries
unlock blur

₹5.5 L/yr - ₹6.5 L/yr

Product Manager
8 salaries
unlock blur

₹13 L/yr - ₹20 L/yr

Operations Executive
7 salaries
unlock blur

₹4.3 L/yr - ₹5 L/yr

Sales Development Representative
5 salaries
unlock blur

₹4.5 L/yr - ₹6 L/yr

Explore more salaries
Compare SuperProcure 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