Upload Button Icon Add office photos
Engaged Employer

i

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

Tech Mahindra Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Tech Mahindra React Js Frontend Developer Interview Questions and Answers

Updated 21 Jan 2025

Tech Mahindra React Js Frontend Developer Interview Experiences

4 interviews found

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

I applied via Approached by Company and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain Virtual DOM, Key Features of React, Hooks in React, create a todo app in react
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM, React key features include component-based architecture, declarative syntax, and virtual DOM, React Hooks are functions that let you use state and other React features without writing a class.

    • Virtual DOM is a lightweight copy of the actual DOM that React uses to improve performance by updating only the necessary parts of the DOM.

    • Key features of React include componen...

  • Answered by AI
  • Q2. Javascript Questions- Closures,promises,Async/await,setTimeOut, write acode to reverse a string
Round 2 - HR 

(2 Questions)

  • Q1. Self Introduction, some situation based questions
  • Q2. Basic HR regular questions
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the maximum number of stores that can be created in Redux?
  • Q2. Is it possible to create an object of an abstract class?

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

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

Round 1 - Coding Test 

Easy interview about react js and redux . asked write code to fetch api and do some routing

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Pretty easy when strong in logical

Round 2 - Coding Test 

General coding questions

Round 3 - HR 

(1 Question)

  • Q1. Communication checking

Interview Preparation Tips

Topics to prepare for Tech Mahindra React Js Frontend Developer interview:
  • HTML
  • CSS
  • React.Js
  • Redux
  • Javascript

Tech Mahindra interview questions for designations

 React Developer

 (1)

 Frontend Developer Intern

 (3)

 Developer

 (5)

 Software Developer

 (99)

 Java Developer

 (26)

 Web Developer

 (8)

 Salesforce Developer

 (4)

 AEM Developer

 (4)

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Online Hackathon test was taken.

Round 2 - Technical 

(6 Questions)

  • Q1. Tell Me About Yourself.
  • Ans. 

    I am a passionate React Js Frontend Developer with experience in building user-friendly and responsive web applications.

    • Experienced in developing web applications using React Js

    • Proficient in HTML, CSS, and JavaScript

    • Familiar with state management libraries like Redux

    • Strong understanding of responsive design principles

    • Ability to work collaboratively in a team environment

  • Answered by AI
  • Q2. Tell me about your roles and responsibilities in your current project.
  • Ans. 

    I am responsible for developing and maintaining the frontend of the project using React Js.

    • Developing user-friendly interfaces using React Js

    • Implementing responsive design and ensuring cross-browser compatibility

    • Collaborating with backend developers to integrate frontend with backend services

    • Optimizing application performance and troubleshooting issues

    • Participating in code reviews and providing feedback to team members

  • Answered by AI
  • Q3. How we implement SSR in React.
  • Ans. 

    SSR in React is implemented using server-side rendering to pre-render React components on the server before sending them to the client.

    • Use libraries like Next.js or Gatsby to implement SSR in React.

    • Configure server to render React components on the server side.

    • Optimize server-side rendering for performance by caching rendered components.

  • Answered by AI
  • Q4. How can we change our project in production mode from development mode.
  • Ans. 

    To change a React project from development mode to production mode, you need to build the project using the 'npm run build' command.

    • Run 'npm run build' command in the terminal to create a production build of the project.

    • This command will generate a 'build' folder with optimized and minified files for production.

    • You can then deploy the contents of the 'build' folder to a web server for production use.

  • Answered by AI
  • Q5. What is lazy loading and how we can implement in our project.
  • Ans. 

    Lazy loading is a technique used to defer loading non-essential resources until they are needed.

    • Lazy loading helps improve performance by only loading resources when they are required.

    • In React, lazy loading can be implemented using React.lazy() and Suspense components.

    • Example: const MyComponent = React.lazy(() => import('./MyComponent'));

    • Example: Loading...

  • }>

Answered by AI
  • Q6. What is react routing and how it is different from other conventional routing methods.
  • Ans. 

    React routing is a way to handle navigation in a React application by defining routes and rendering components based on the URL.

    • React routing allows for declarative routing, where routes are defined using JSX elements.

    • It enables dynamic routing based on the URL, allowing for different components to be rendered based on the route.

    • React Router is a popular library for handling routing in React applications.

    • Unlike convent...

  • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Depends on interviewers skill set.

    Skills evaluated in this interview

    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    No response

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

    Round 1 - Technical 

    (13 Questions)

    • Q1. What is closuer? is normal function call as closuer or not
    • 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 its outer function even after the outer function has finished executing.

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

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

    • Answered by AI
    • Q2. What is asyn/await
    • Ans. 

      Async/await is a feature in JavaScript that allows for asynchronous code to be written in a synchronous manner.

      • Async/await is built on top of promises and provides a more readable and concise way to work with asynchronous code.

      • The 'async' keyword is used to define a function as asynchronous, allowing it to use the 'await' keyword inside it.

      • When 'await' is used, it pauses the execution of the function until the promise ...

    • Answered by AI
    • Q3. Remove duplicate from array
    • Ans. 

      Use Set to remove duplicates from array of strings.

      • Create a Set from the array to automatically remove duplicates

      • Convert the Set back to an array if needed

      • Example: const arr = ['apple', 'banana', 'apple', 'orange']; const uniqueArr = [...new Set(arr)];

    • Answered by AI
    • Q4. Hoe does react Dom update?
    • Ans. 

      React DOM updates by comparing the virtual DOM with the actual DOM and only updating the necessary components.

      • React creates a virtual DOM to represent the UI components.

      • When a state or prop changes, React re-renders the virtual DOM.

      • React then compares the virtual DOM with the actual DOM to identify the differences.

      • Only the necessary components are updated in the actual DOM, minimizing performance impact.

    • Answered by AI
    • Q5. What is react hooks explain some
    • Ans. 

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

      • React 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 make it easier to reuse logic across components.

      • Hooks can be used to manage component state, perform side effects, and more.

    • Answered by AI
    • Q6. What is call bind apply?
    • Ans. 

      Call, bind, and apply are methods used to manipulate the value of 'this' in JavaScript functions.

      • Call - invokes a function with a specified 'this' value and arguments provided individually.

      • Bind - creates a new function that, when called, has its 'this' keyword set to the provided value.

      • Apply - invokes a function with a specified 'this' value and arguments provided as an array.

    • Answered by AI
    • Q7. What is difference b/w redux and redux toolkit
    • Ans. 

      Redux Toolkit is a set of tools and best practices to simplify Redux development, while Redux is a predictable state container for JavaScript apps.

      • Redux Toolkit provides a set of tools like createSlice, createAsyncThunk, and configureStore to simplify Redux setup and reduce boilerplate code.

      • Redux Toolkit includes immer library for writing immutable update logic in a more convenient way.

      • Redux Toolkit also includes a def...

    • Answered by AI
    • Q8. Write a RTL test to check the button
    • Ans. 

      Writing a RTL test to check a button in React

      • Use the render and fireEvent functions from @testing-library/react

      • Find the button element using getByRole('button')

      • Simulate a click event using fireEvent.click

      • Assert that the button is visible and clickable

    • Answered by AI
    • Q9. What inline level and block level elements
    • Ans. 

      Inline and block level elements in HTML/CSS

    Answered by AI

    Skills evaluated in this interview

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

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

    Round 1 - Technical 

    (1 Question)

    • Q1. Frontend developer
    Round 2 - Coding Test 

    Html, CSS, bootstrap, JavaScript, react.js

    Interview Preparation Tips

    Topics to prepare for IBM React Js Frontend Developer interview:
    • Html5
    • CSS3
    • Bootstrap
    • Javascript
    • React.Js
    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

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

    Round 1 - Technical 

    (3 Questions)

    • Q1. Dom manipulation and React hooks
    • Q2. Use call back in depth
    • Ans. 

      Callbacks are functions passed as arguments to another function to be executed later

      • Callbacks are commonly used in event handling, asynchronous programming, and functional programming

      • Callbacks can be synchronous or asynchronous

      • Example: passing a callback function to a setTimeout() function

    • Answered by AI
    • Q3. Promises based coding question

    Interview Preparation Tips

    Interview preparation tips for other job seekers - They majour focus on technical like coding and promises majourly on Java script
    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 Jul 2024. There were 2 interview rounds.

    Round 1 - Technical 

    (1 Question)

    • Q1. All javascript core concepts and react hooks
    Round 2 - Coding Test 

    Find the max values, promises, async await

    Interview experience
    2
    Poor
    Difficulty level
    Easy
    Process Duration
    Less than 2 weeks
    Result
    No response

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

    Round 1 - Technical 

    (2 Questions)

    • Q1. No questions has been asked , panel members were not joined.
    • Q2. No questions has been asked

    Interview Preparation Tips

    Topics to prepare for Accenture React Js Frontend Developer interview:
    • React Js and Java Script
    Interview preparation tips for other job seekers - Interview did not happen due to unavailability of panel members. Multiple reschedules and did not get any confirmation regarding interview.

    Tech Mahindra Interview FAQs

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

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

    1. What is the maximum number of stores that can be created in Red...read more
    2. Is it possible to create an object of an abstract cla...read more
    3. Explain Virtual DOM, Key Features of React, Hooks in React, create a todo app i...read more

    Tell us how to improve this page.

    Tech Mahindra React Js Frontend Developer Interview Process

    based on 4 interviews

    Interview experience

    4.3
      
    Good
    View more
    Tech Mahindra React Js Frontend Developer Salary
    based on 12 salaries
    ₹3.3 L/yr - ₹13.4 L/yr
    16% more than the average React Js Frontend Developer Salary in India
    View more details

    Tech Mahindra React Js Frontend Developer Reviews and Ratings

    based on 2 reviews

    5.0/5

    Rating in categories

    4.4

    Skill development

    4.7

    Work-life balance

    3.4

    Salary

    4.0

    Job security

    4.7

    Company culture

    3.7

    Promotions

    4.7

    Work satisfaction

    Explore 2 Reviews and Ratings
    Software Engineer
    26.4k salaries
    unlock blur

    ₹2 L/yr - ₹9.2 L/yr

    Senior Software Engineer
    21.4k salaries
    unlock blur

    ₹5.5 L/yr - ₹23 L/yr

    Technical Lead
    11.7k salaries
    unlock blur

    ₹9.5 L/yr - ₹38 L/yr

    Associate Software Engineer
    5.4k salaries
    unlock blur

    ₹1.8 L/yr - ₹6 L/yr

    Team Lead
    5k salaries
    unlock blur

    ₹5.2 L/yr - ₹17 L/yr

    Explore more salaries
    Compare Tech Mahindra with

    Infosys

    3.6
    Compare

    Cognizant

    3.8
    Compare

    Accenture

    3.8
    Compare

    Wipro

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