Upload Button Icon Add office photos

Filter interviews by

MahaSOS Senior React Native Developer Interview Questions and Answers

Updated 9 Jul 2024

MahaSOS Senior React Native Developer Interview Experiences

1 interview found

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

A scalable Job Search app with any type of state management

Round 2 - Technical 

(2 Questions)

  • Q1. React Hooks and hooks used in the coding test
  • Ans. 

    React Hooks are a feature introduced in React 16.8 to allow functional components to have state and lifecycle methods.

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

    • Commonly used hooks include useState, useEffect, useContext, and useReducer.

    • Hooks are used in the coding test to demonstrate understanding of managing state and side effects in React components.

  • Answered by AI
  • Q2. React Native life cycle methods
  • Ans. 

    React Native life cycle methods are functions that are automatically called at different stages of a component's life cycle.

    • componentDidMount() is called after the component has been rendered to the screen

    • componentWillUnmount() is called before the component is removed from the screen

    • componentDidUpdate() is called after the component's state or props have been updated

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Project description and team size

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. 1. Basic Hooks. 2. Depth in useRef, Forward Refs and its project related scenarios about scenario. 3. Class component vs Functional Component. 4. Redux, Context API. 5. React Native old and new architect...
Round 2 - Technical 

(1 Question)

  • Q1. 1. Build Process and internal functionality and asking how the things are work. 2. What Main challenge face on react native and how to resolved that. 3. Write a program to reverse every word of string and ...

Interview Preparation Tips

Interview preparation tips for other job seekers - For program question need to have practice and work on logic.
You need to understand react native internal process in more depth and its architecture.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Assignment 

They asked , some cording question related to react js , html

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(16 Questions)

  • Q1. What is hosting and closer
  • Ans. 

    Hosting is the process of storing a website or application on a server, while closure is a function that retains access to variables from its parent scope.

    • Hosting involves storing a website or application on a server to make it accessible on the internet.

    • Closure is a function that retains access to variables from its parent scope, even after the parent function has finished executing.

  • Answered by AI
  • Q2. What is difference between var let and const give me an explanation on what block scope
  • Ans. 

    var, let, and const are used to declare variables in JavaScript. var has function scope, let has block scope, and const is a constant with block scope.

    • var has function scope, meaning it is accessible throughout the function it is declared in.

    • let has block scope, meaning it is only accessible within the block it is declared in.

    • const is similar to let in terms of block scope, but the value cannot be reassigned.

  • Answered by AI
  • Q3. What is asynchronous and how it works
  • Ans. 

    Asynchronous programming allows tasks to run independently of the main program flow, improving performance and responsiveness.

    • Asynchronous code does not block the main thread, allowing other tasks to continue while waiting for a response.

    • Callbacks, promises, and async/await are common ways to handle asynchronous operations in JavaScript.

    • Example: fetching data from an API while the rest of the application continues to r

  • Answered by AI
  • Q4. Tell me the output 1)a = 20; console.log(a); var a; 2)b=10; console.log(b); let b; 3)let a =5; if(a<5){ let b = " a lessthen 5"; }else{ let b = "b is grater then 5"; } console.log(b);
  • Ans. 

    The output for the given code snippets will be: 1) 20 2) ReferenceError: Cannot access 'b' before initialization 3) ReferenceError: b is not defined

    • In the first snippet, variable 'a' is declared using 'var' after it is assigned a value, so it logs 20 without any issues.

    • In the second snippet, variable 'b' is declared using 'let' after it is assigned a value, so it throws a ReferenceError as 'b' is accessed before initia...

  • Answered by AI
  • Q5. Give a div with text and display center of the page and apply animation using HTML and css
  • Ans. 

    Centered div with text and animation using HTML and CSS

    • Create a div element with text inside

    • Apply CSS styles to center the div on the page

    • Use CSS animations to add animation effects

  • Answered by AI
  • Q6. What are semantic tags and explain
  • Ans. 

    Semantic tags are HTML tags that provide meaning to the content they enclose, helping search engines and screen readers understand the structure of a webpage.

    • Semantic tags help improve SEO by providing context to search engines.

    • They also improve accessibility for screen readers by clearly defining the structure of a webpage.

    • Examples of semantic tags include

      ,
      ,

Answered by AI
  • Q7. How can we write responsive for web page
  • Ans. 

    Use media queries, flexible grids, and relative units to create a responsive web page.

    • Use media queries to apply different styles based on screen size

    • Create flexible grids using CSS Grid or Flexbox

    • Use relative units like percentages or ems for sizing elements

    • Consider using frameworks like Bootstrap or Material-UI for responsive design

    • Test your design on different devices and screen sizes

  • Answered by AI
  • Q8. What is the difference between CSS and SASS? what is the use of Sass
  • Ans. 

    SASS is a preprocessor scripting language that is interpreted into CSS, offering more features and flexibility.

    • SASS is a preprocessor for CSS, allowing for variables, nesting, and mixins to be used in stylesheets.

    • SASS code needs to be compiled into CSS before being used in a web project.

    • SASS helps in writing cleaner and more organized CSS code, making it easier to maintain and update styles.

    • CSS is the styling language ...

  • Answered by AI
  • Q9. Event propagation
  • Q10. How would you validate the form using HTML? How do you validate the phone number with the country code?
  • Ans. 

    Form validation can be done using HTML attributes like required, pattern, and maxlength. Phone number validation with country code can be achieved using regex.

    • Use the 'required' attribute to make fields mandatory

    • Use the 'pattern' attribute with regex to validate input format

    • Use the 'maxlength' attribute to limit the number of characters in a field

    • For phone number validation with country code, use regex to match the des...

  • Answered by AI
  • Q11. Which test library you use why it usecase
  • Ans. 

    I use Jest for testing React applications due to its simplicity and integration with React ecosystem.

    • Jest is the most popular test library for React applications

    • It comes pre-configured with Create React App and has great support for snapshot testing

    • Jest also has built-in mocking capabilities which make it easy to test components with dependencies

  • Answered by AI
  • Q12. Tell me mounting and shallow concept in testing library
  • Ans. 

    Mounting is the process of rendering a component into the DOM, while shallow rendering allows testing a component without rendering its children.

    • Mounting is the initial phase of the component lifecycle where the component is rendered into the DOM.

    • Shallow rendering in testing library renders only the component itself, not its children.

    • Shallow rendering is useful for isolating the component being tested and avoiding rend...

  • Answered by AI
  • Q13. What is redux-toolkit and what difference b/w redux and redux-toolkit
  • Ans. 

    Redux Toolkit is the official, recommended way to write Redux logic. It simplifies the process of managing state in React applications.

    • Redux Toolkit provides a set of tools and best practices to streamline Redux development.

    • It includes utilities like createSlice, createReducer, and configureStore to simplify the code and reduce boilerplate.

    • Redux Toolkit also includes built-in Immer integration for writing immutable upd...

  • Answered by AI
  • Q14. How api call handle in redux and how can you get and display user name from redux
  • Ans. 

    API calls in Redux are typically handled using middleware like Redux Thunk. User name can be retrieved from Redux state and displayed in components.

    • Use Redux Thunk middleware to make API calls in Redux

    • Dispatch actions to update Redux state with API response data

    • Access user name from Redux state in components to display it

  • Answered by AI
  • Q15. React hooks and how optimization
  • Q16. Why we need thank in redux
  • Ans. 

    Thunk middleware in Redux allows for asynchronous logic to be handled in Redux actions.

    • Thunk middleware allows for dispatching functions instead of just plain objects in Redux actions.

    • It enables handling asynchronous API calls within Redux actions.

    • Thunk middleware helps in simplifying the code by moving complex logic outside of components.

    • Example: Thunk middleware can be used to dispatch an action after a delay or to f...

  • Answered by AI

    Skills evaluated in this interview

    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
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

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

    Round 1 - Technical 

    (2 Questions)

    • Q1. What is Cors error
    • Ans. 

      CORS error occurs when a web application makes a request to a different domain than the one it originated from.

      • CORS stands for Cross-Origin Resource Sharing

      • It is a security feature implemented by browsers to prevent unauthorized access to resources on a different domain

      • CORS error can be resolved by configuring the server to include the appropriate CORS headers in the response

      • Common CORS error messages include 'Access-C...

    • Answered by AI
    • Q2. Error boundaries
    Round 2 - Technical 

    (2 Questions)

    • Q1. Call back hell?
    • Q2. Promises in javascript
    • Ans. 

      Promises in JavaScript are objects representing the eventual completion or failure of an asynchronous operation.

      • Promises are used to handle asynchronous operations in JavaScript.

      • They can be in one of three states: pending, fulfilled, or rejected.

      • Promises can be chained using .then() method to handle success and failure cases.

      • Promises help in avoiding callback hell and writing cleaner asynchronous code.

    • Answered by AI

    Skills evaluated in this interview

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

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

    Round 1 - Assignment 

    React js Assessments

    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
    Interview experience
    5
    Excellent
    Difficulty level
    Easy
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Naukri.com and was interviewed before Oct 2023. There were 4 interview rounds.

    Round 1 - Coding Test 

    Online coding round which included question from React and js

    Round 2 - Technical 

    (2 Questions)

    • Q1. Common questions from js
    • Q2. Coding to do in react
    Round 3 - Technical 

    (2 Questions)

    • Q1. Managerial questions
    • Q2. Questions based on resume
    Round 4 - HR 

    (1 Question)

    • Q1. Salary discussion
    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Coding Test 

    Based on the latest react version.

    MahaSOS Interview FAQs

    How many rounds are there in MahaSOS Senior React Native Developer interview?
    MahaSOS interview process usually has 3 rounds. The most common rounds in the MahaSOS interview process are Coding Test, Technical and One-on-one Round.
    What are the top questions asked in MahaSOS Senior React Native Developer interview?

    Some of the top questions asked at the MahaSOS Senior React Native Developer interview -

    1. React Hooks and hooks used in the coding t...read more
    2. React Native life cycle meth...read more

    Tell us how to improve this page.

    MahaSOS Senior React Native Developer Interview Process

    based on 1 interview

    Interview experience

    4
      
    Good
    View more

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.4k Interviews
    Accenture Interview Questions
    3.8
     • 8.2k Interviews
    Infosys Interview Questions
    3.6
     • 7.6k Interviews
    Wipro Interview Questions
    3.7
     • 5.6k Interviews
    Cognizant Interview Questions
    3.8
     • 5.6k Interviews
    Amazon Interview Questions
    4.1
     • 5k Interviews
    Capgemini Interview Questions
    3.7
     • 4.8k Interviews
    Tech Mahindra Interview Questions
    3.5
     • 3.8k Interviews
    HCLTech Interview Questions
    3.5
     • 3.8k Interviews
    Genpact Interview Questions
    3.8
     • 3.1k Interviews
    View all

    MahaSOS Senior React Native Developer Reviews and Ratings

    based on 1 review

    3.0/5

    Rating in categories

    3.0

    Skill development

    4.0

    Work-life balance

    3.0

    Salary

    1.0

    Job security

    3.0

    Company culture

    2.0

    Promotions

    3.0

    Work satisfaction

    Explore 1 Review and Rating
    Compare MahaSOS with

    TCS

    3.7
    Compare

    Accenture

    3.8
    Compare

    Wipro

    3.7
    Compare

    Cognizant

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