Upload Button Icon Add office photos
Engaged Employer

i

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

Mastek Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Mastek Reactjs Developer Interview Questions and Answers

Updated 16 Mar 2024

Mastek Reactjs Developer Interview Experiences

2 interviews found

Reactjs Developer Interview Questions & Answers

user image Chetana Mahale

posted on 16 Mar 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Feb 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What About hooks
  • Q2. Hooks, Functional Components,
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. 1. What all hooks are available at react functional component 2.what is closure.
  • Ans. 

    React functional components have access to various hooks like useState, useEffect, useContext, etc. Closure is a feature in JavaScript where a function has access to its outer function's scope.

    • React hooks available in functional components include useState, useEffect, useContext, useReducer, useCallback, useMemo, useRef, useImperativeHandle, useLayoutEffect, and useDebugValue.

    • useState is used to manage state in functio...

  • Answered by AI

Skills evaluated in this interview

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 questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

It was an online test. The test was having 25 English questions and 25 coding MCQ questions. Test duration was 60 Mins

Round 3 - Technical 

(2 Questions)

  • Q1. The first part of the interview contained questions related to my work experience.
  • Ans. I told the interviewer about what I had done in my past roles.
  • Answered Anonymously
  • Q2. After this interviewer gave me a Machine coding round kind of question. I had to display a list of products using the flexbox layout. Also, I had to create a sort button to sort the list and update the vie...
  • Ans. I used useState hook to capture product details. and updated the list using the sort function.
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Newgen Software Technologies Reactjs Developer interview:
  • Javascript
  • HTML
  • CSS
  • React.Js
Interview preparation tips for other job seekers - It was machine round.
In this type of interview, never say that the task is not complete. rather show and discuss how much you have completed.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
No response
Round 1 - Technical 

(4 Questions)

  • Q1. What are hooks in reactjs?
  • Ans. 

    Hooks are a new feature in React 16.8 that allow you to use state and other React features without writing a class.

    • Hooks are functions that let you use state and other React features in functional components.

    • They allow you to reuse stateful logic without changing your component hierarchy.

    • Some built-in hooks include useState, useEffect, useContext, etc.

    • Hooks provide a more direct API to the React concepts you already kn...

  • Answered by AI
  • Q2. What is pure component?
  • Ans. 

    Pure component is a class component that does not re-render if the input props and state remain the same.

    • Pure components implement shouldComponentUpdate method with shallow prop and state comparison.

    • They are optimized for performance as they prevent unnecessary re-renders.

    • Example: class MyComponent extends React.PureComponent { // component code here }

  • Answered by AI
  • Q3. What is modules in javascript?
  • Ans. 

    Modules in JavaScript are reusable pieces of code that can be exported from one file and imported into another.

    • Modules help in organizing code into separate files for better maintainability.

    • Modules can be imported using 'import' keyword and exported using 'export' keyword.

    • Modules can be used to encapsulate code and prevent global namespace pollution.

    • CommonJS and ES6 modules are two popular module systems in JavaScript.

  • Answered by AI
  • Q4. What is the difference between rem and em in css? How to hide something in CSS?
  • Ans. 

    rem and em are both units in CSS for defining font sizes, with rem being relative to the root element and em being relative to the parent element.

    • rem stands for 'root em' and is relative to the font size of the root element (usually the tag)

    • em stands for 'element em' and is relative to the font size of the parent element

    • To hide something in CSS, you can use the display property with a value of 'none' or the visibility...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for NeoSOFT Reactjs Developer interview:
  • HTML
  • CSS
  • Javascript
  • Github
  • React.Js

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basics about React
  • Q2. React components, Js code, Hooks

Interview Preparation Tips

Interview preparation tips for other job seekers - Not Bad
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between promise and async await ?
  • Ans. 

    Promises are objects representing the eventual completion or failure of an asynchronous operation, while async/await is a syntactic sugar built on top of promises to write asynchronous code in a synchronous manner.

    • Promises are used to handle asynchronous operations and provide a way to chain multiple asynchronous operations together.

    • Async/await allows you to write asynchronous code that looks synchronous, making it eas...

  • Answered by AI
  • Q2. Event loop based a console output questions?
  • Q3. UseMemo vs useCallback
  • Ans. 

    useMemo is used for memoizing expensive calculations, while useCallback is used for memoizing functions.

    • useMemo is used to memoize expensive calculations and only recompute the value when the dependencies change.

    • useCallback is used to memoize functions and only re-create the function when the dependencies change.

    • Example: useMemo can be used to memoize the result of a complex computation, while useCallback can be used t...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference beetween thow and new thow
  • Ans. 

    throw is used to throw an exception, new throw is used to throw an exception with a new object

    • throw is used to throw an exception in JavaScript

    • new throw is used to throw an exception with a new object

    • Example: throw new Error('Something went wrong')

  • Answered by AI
  • Q2. How to add validation
  • Ans. 

    Validation in React can be added using form validation libraries, custom validation functions, or built-in HTML5 validation attributes.

    • Use form validation libraries like Formik or Yup for easy validation setup

    • Create custom validation functions to validate input fields based on specific requirements

    • Utilize built-in HTML5 validation attributes like required, pattern, and min/max for basic validation

    • Display error messages...

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consultant

Interview Questionnaire 

2 Questions

  • Q1. Round 1: Fundamentals questions related to Javascript and React. In React questions were focused on react-hooks. lifecycle components and optimization techniques in react. Basic to intermediate questions r...
  • Q2. Round 2: The interview panel will ask you to code some basic coding problem depending on your relevant experience and if you're not able to solve it they'll directly say they're done with the interview. In...

Interview Preparation Tips

Interview preparation tips for other job seekers - I cleared Round 1 after which there was a delay of more than 2 weeks and got a call for Round 2 without any prior notice. Their L2 level interview is very bad, in my case I ended the interview from my side as it looked very clear that the panel was least interested.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Dsa question were asked

Round 2 - Aptitude Test 

Question related to profit loss

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

(2 Questions)

  • Q1. 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 asynchronous operations in JavaScript.

    • It allows for non-blocking execution of code by moving asynchronous tasks to the event queue.

    • Event loop continuously checks the call stack and the event queue, moving tasks from the queue to the stack when the stack is empty.

    • Exa...

  • Answered by AI
  • Q2. What are closures
  • Ans. 

    Closures are functions that have access to their own scope, as well as the scope in which they were defined.

    • Closures allow functions to access variables from their outer scope even after the outer function has finished executing.

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

    • Closures are created whenever a function is defined within another function.

  • Answered by AI

Mastek Interview FAQs

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

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

  1. 1. What all hooks are available at react functional component 2.what is closu...read more
  2. What About ho...read more
  3. hooks, Functional Componen...read more

Tell us how to improve this page.

Mastek Reactjs Developer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more
Mastek Reactjs Developer Salary
based on 5 salaries
₹4.4 L/yr - ₹15 L/yr
75% more than the average Reactjs Developer Salary in India
View more details

Mastek Reactjs Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

5.0

Salary

2.0

Job security

3.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
556 salaries
unlock blur

₹6.2 L/yr - ₹24 L/yr

Associate Consultant
297 salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Software Engineer
287 salaries
unlock blur

₹3 L/yr - ₹8.7 L/yr

Software Specialist
267 salaries
unlock blur

₹8 L/yr - ₹30 L/yr

Consultant 1
196 salaries
unlock blur

₹3.4 L/yr - ₹10.3 L/yr

Explore more salaries
Compare Mastek with

ITC Infotech

3.6
Compare

3i Infotech

3.5
Compare

Sify Technologies

3.8
Compare

Microland

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