Upload Button Icon Add office photos
Engaged Employer

i

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

InnovationM Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

InnovationM Reactjs Developer Interview Questions, Process, and Tips

Updated 8 Aug 2022

Top InnovationM Reactjs Developer Interview Questions and Answers

InnovationM Reactjs Developer Interview Experiences

2 interviews found

I applied via AmbitionBox

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

(2 Questions)

  • Q1. What are features of React JS?
  • Ans. 

    React JS is a JavaScript library for building user interfaces.

    • Virtual DOM for efficient updates

    • Component-based architecture for reusability

    • JSX syntax for easy rendering

    • Unidirectional data flow for predictable state management

    • Server-side rendering for SEO optimization

  • Answered by AI
  • Q2. What is Redux? What are it's features?
  • Ans. 

    Redux is a predictable state container for JavaScript apps.

    • Redux is a state management library for JavaScript applications.

    • It provides a centralized store to manage the state of an application.

    • Redux follows a unidirectional data flow pattern.

    • It allows for easy debugging and testing of an application's state.

    • Redux can be used with React, Angular, Vue, and other JavaScript frameworks.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What are closures? Explain with example
  • Ans. 

    Closures are functions that have access to variables in their outer scope.

    • Closures are created when a function is defined inside another function.

    • The inner function has access to the outer function's variables, even after the outer function has returned.

    • Closures can be used to create private variables and functions.

    • Example: function outer() { let x = 10; function inner() { console.log(x); } return inner; } const closur

  • Answered by AI
  • Q2. What is CallStack? What is Memory Heap?
  • Ans. 

    CallStack is a data structure that stores function calls in a stack. Memory Heap is a region of memory where objects are stored.

    • CallStack is a LIFO data structure that keeps track of function calls.

    • Memory Heap is a large region of memory where objects are allocated.

    • Variables and function calls are stored in CallStack while objects are stored in Memory Heap.

    • When a function is called, it is added to the top of the CallSt...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident in your answers. Take a step back when you don't know some concepts

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jan 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 

(1 Question)

  • Q1. Explain redux workflow
  • Ans. 

    Redux is a state management library for JavaScript applications.

    • Redux stores the entire state of the application in a single store.

    • Actions are dispatched to update the state in the store.

    • Reducers are pure functions that take the current state and an action, and return a new state.

    • Components can subscribe to the store to receive updates when the state changes.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good and detailed interview .asked a lot question related to react

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 Java R & D
Q2. What are Call, apply and bind methods, what is currying in JavaSc ... read more
asked in Accenture
Q3. How do you make a page responsive. Bootstrap layouts and alerts
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

Reactjs Developer Jobs at InnovationM

View all

Interview questions from similar companies

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

(3 Questions)

  • Q1. Asked json web tokean authentication, authorisation. architecture of your project.
  • Q2. Coding question- create crud app. Given array of objects. Render list in table. Do edit, delete, sort list on object property.
  • Ans. 

    Create a CRUD app to render, edit, delete, and sort a list of objects in a table.

    • Create a React component to render a table with data from the array of objects.

    • Implement functions for editing and deleting objects from the list.

    • Add functionality to sort the list based on object properties.

    • Use state and props to manage data and re-render the table when changes occur.

  • Answered by AI
  • Q3. Difference bw rem, em, px. React hooks- useEffect, life cycle methods. use cases of hooks.
  • Ans. 

    rem, em, px are units of measurement in CSS. React hooks like useEffect replace lifecycle methods for side effects.

    • rem: relative to the font-size of the root element (html). Example: 1rem = 16px

    • em: relative to the font-size of the element. Example: 2em = 32px if font-size is 16px

    • px: fixed-size units. Example: font-size: 16px

    • useEffect: replaces componentDidMount, componentDidUpdate, and componentWillUnmount in class com...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do hands on coding round good.

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 mins
Round difficulty - Medium

  • Q1. 

    Railway Seat Berth Determination

    Given a railway seat number represented as an integer, determine if it is a valid seat number and identify its berth type. Possible berth types include lower berth, middle...

  • Ans. 

    Given a railway seat number, determine if it is valid and identify its berth type.

    • Parse input integer 't' for number of test cases

    • For each test case, check if seat number is valid (1 <= N <= 100)

    • Identify berth type based on seat number and output the result

    • Possible berth types are Lower, Middle, Upper, Side Lower, and Side Upper

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 90 mins
Round difficulty - Hard

First they asked me to introduce myself then they started questioning on oops concept from basic to advance level such as inheritance, polymorphism, abstraction, exception handling , STL etc. Next they started questioning on data structures. They asked me the logic of “how to find the middle of a linked list”.

  • Q1. 

    Matrix Symmetry Check

    You are provided with a square matrix. Your task is to return true if the matrix is symmetric; otherwise, return false.

    A symmetric matrix is characterized by its transpose being eq...

  • Ans. 

    Check if a square matrix is symmetric by comparing it with its transpose.

    • Iterate through the matrix and compare each element with its corresponding element in the transpose

    • If any pair of elements do not match, return false immediately

    • If all pairs match, return true at the end

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from K. K. Wagh Institute Of Engineering Education And Research. I applied for the job as Software Engineer in PuneEligibility criteria6.0 CGPAJosh Technology Group interview preparation:Topics to prepare for the interview - Data Structures, OOPS, DBMS, Python, SQLTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Clear the basic concepts of data structure and OOPs.
Tip 2 : Use coding ninja platform and Hackerearth for practice on coding skills.
Tip 3 : Use Geeks For Geeks for interview preparation.

Application resume tips for other job seekers

Tip 1: Make your resume short and try to make it of one page only.
Tip 2: Add relevant keywords

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Check if binary tree is balanced or not.
  • Ans. 

    Check if binary tree is balanced or not.

    • A balanced binary tree has the height of left and right subtrees differ by at most 1.

    • Recursively check the height of left and right subtrees and compare.

    • Use a helper function to calculate the height of a subtree.

    • Time complexity: O(nlogn) for a balanced tree, O(n^2) for a skewed tree.

  • Answered by AI
  • Q2. Detect loops in linked list.
  • Ans. 

    Detect loops in a linked list.

    • Use two pointers, one moving at a faster pace than the other.

    • If there is a loop, the faster pointer will eventually catch up to the slower one.

    • To detect the start of the loop, reset one pointer to the head and move both pointers at the same pace.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was good, do your DS Algo questoin thoroughly.

Skills evaluated in this interview

I applied via Referral and was interviewed before Aug 2021. 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 - Aptitude Test 

General topics like mathe, English, social etc

Interview Preparation Tips

Topics to prepare for IT By Design Software Engineer interview:
  • Python
  • general
Interview preparation tips for other job seekers - It is best choice to our life . If I can join in this company. I can learn more things by gaining work experience.
Round 1 - Group Discussion 

It represents the eligibility of person and thinking process ,view of thoughts

Round 2 - One-on-one 

(1 Question)

  • Q1. We cannot judge people to atonce chance
Round 3 - Coding Test 

Skills ,fast typing , experienced ,new ideas

Round 4 - Technical 

(1 Question)

  • Q1. All the knowledge of technical work and word
Round 5 - Case Study 

Deeply study case and make a point to make attractive

Interview Preparation Tips

Interview preparation tips for other job seekers - Every chance have a successful of key.will appreciate all chance to way of your dreams .move a first steps towards your dreams
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

They totally select you on the basis of aptitude only

Round 3 - Technical 

(1 Question)

  • Q1. It is also based on aptitude

Interview Preparation Tips

Interview preparation tips for other job seekers - to have a good knowledge over aptitude
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

MCQ questions on OS, JS and HTML

Round 2 - Coding Test 

Basic Questions from resume. String/Array DSA questions

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

5 questions written coding test
Basic question on string and array manipulation

Round 2 - Technical 

(1 Question)

  • Q1. 2nd smallest number
  • Ans. 

    Find the 2nd smallest number in an array of integers.

    • Sort the array in ascending order

    • Return the second element in the sorted array

  • Answered by AI

InnovationM Interview FAQs

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

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

  1. What are closures? Explain with exam...read more
  2. What is CallStack? What is Memory He...read more
  3. What is Redux? What are it's featur...read more

Tell us how to improve this page.

InnovationM Reactjs Developer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
IT By Design Interview Questions
3.5
 • 40 Interviews
Argusoft Interview Questions
4.6
 • 38 Interviews
DotPe Interview Questions
3.2
 • 38 Interviews
View all
InnovationM Reactjs Developer Salary
based on 7 salaries
₹2.6 L/yr - ₹4.4 L/yr
45% less than the average Reactjs Developer Salary in India
View more details

InnovationM Reactjs Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
React JS Developer

Noida

4-8 Yrs

Not Disclosed

Explore more jobs
Software Engineer
111 salaries
unlock blur

₹2.4 L/yr - ₹9 L/yr

Senior Software Engineer
53 salaries
unlock blur

₹4.4 L/yr - ₹17.8 L/yr

HR Executive
43 salaries
unlock blur

₹2.5 L/yr - ₹4.5 L/yr

Senior HR Executive
25 salaries
unlock blur

₹2.8 L/yr - ₹5 L/yr

Senior Quality Analyst
25 salaries
unlock blur

₹5.1 L/yr - ₹11.2 L/yr

Explore more salaries
Compare InnovationM with

Maxgen Technologies

4.6
Compare

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

2.9
Compare

F1 Info Solutions and Services

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