Upload Button Icon Add office photos

Filter interviews by

NewFangled Vision Reactjs Developer Interview Questions, Process, and Tips

Updated 8 Apr 2024

NewFangled Vision Reactjs Developer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. What is docType in html?
  • Ans. 

    DocType in HTML specifies the version of HTML being used in the document.

    • DocType declaration is not an HTML tag.

    • It is used to inform the web browser about the version of HTML being used.

    • It is placed at the very beginning of an HTML document before the <html> tag.

    • Example: <!DOCTYPE html> for HTML5.

  • Answered by AI
  • Q2. What is symentic elements?
  • Ans. 

    Semantic elements are HTML tags that clearly define the content they contain, making it easier for both humans and machines to understand the structure of a web page.

    • Semantic elements provide meaning to the content they enclose, improving accessibility and SEO.

    • Examples include <header>, <footer>, <nav>, <article>, <section>, <aside>, <main>, <figure>, <figcaption>.

    • U...

  • Answered by AI
  • Q3. Explain position properties, Absolute, Fixed, Relative?
  • Ans. 

    Position properties in CSS for element placement.

    • Absolute: Element is positioned relative to its closest positioned ancestor.

    • Fixed: Element is positioned relative to the viewport.

    • Relative: Element is positioned relative to its normal position.

  • Answered by AI
  • Q4. Coding Question, Find largest element in array without sort, find sum of all element in array, find count of each element in array like how many times each element occurred in array?
  • Ans. 

    Find largest element, sum of all elements, and count of each element in array without sorting.

    • To find the largest element, iterate through the array and keep track of the maximum value.

    • To find the sum of all elements, iterate through the array and add each element to a running total.

    • To find the count of each element, use a hashmap to store the count of each element as you iterate through the array.

  • Answered by AI
  • Q5. How to communicate child to parent components in react?
  • Ans. 

    Using props and callbacks to communicate data from child to parent components in React.

    • Passing data from child to parent components using props

    • Using callbacks to send data from child to parent components

    • Using context API for global state management

  • Answered by AI

Skills evaluated in this interview

Reactjs Developer Jobs at NewFangled Vision

View all

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 experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
No response

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. CSS specificity questions
  • Q2. CSS selectors related questions
  • Q3. Javascript basic questions
  • Q4. React basic questions
  • Q5. Javascript eventloop related guess the output.
  • Q6. Write code in react of React.memo

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare more on css (specificity, selectors, inheritance, grid and flex layout, position properties) Javascript basics, event loop React basics
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is client side and server side rendering

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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What do you mean by redux and how to use redux
  • Ans. 

    Redux is a predictable state container for JavaScript apps. It helps manage the state of an application in a more organized way.

    • Redux is a state management tool commonly used with React to manage the state of an application.

    • It follows a unidirectional data flow, where the state is stored in a single store.

    • Actions are dispatched to update the state, and reducers specify how the state should change in response to actions...

  • Answered by AI
  • Q2. What is the use of Context Api in React
  • Ans. 

    Context API is used in React to pass data through the component tree without having to pass props down manually at every level.

    • Avoids prop drilling by providing a way to share values like themes, user data, etc. across the component tree.

    • Helps in managing global state in React applications.

    • Context API consists of Provider and Consumer components to provide and consume the context data.

    • Can be used for theming, localizat

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What is hoisting in JS
  • Ans. 

    Hoisting is a JavaScript behavior where variable and function declarations are moved to the top of their containing scope.

    • Hoisting applies to both variable and function declarations.

    • Variable declarations are hoisted but not their initializations.

    • Function declarations are fully hoisted, allowing them to be called before they are declared.

    • Hoisting does not apply to variables declared with let or const.

    • Hoisting can lead t...

  • Answered by AI
  • Q2. What are higher-order functions in JS
  • Ans. 

    Higher-order functions are functions that take one or more functions as arguments or return a function as their result.

    • Higher-order functions can be used to create reusable code by abstracting common patterns.

    • They enable functional programming paradigms like currying and composition.

    • Examples of higher-order functions in JavaScript include map, filter, and reduce.

  • Answered by AI
  • Q3. Difference between var, let, and const in JS
  • Ans. 

    var is function scoped, let and const are block scoped.

    • var can be redeclared and updated within its scope

    • let can be updated but not redeclared within its scope

    • const cannot be updated or redeclared once declared

    • let and const are not hoisted like var

    • const must be initialized during declaration

  • Answered by AI
  • Q4. What are Hooks in React.js
  • Ans. 

    Hooks are a feature in React.js that allow developers to use state and other React features in functional components.

    • Hooks are functions that let you use React features in functional components

    • They allow you to use state and other React features without writing a class

    • Hooks provide a way to reuse stateful logic between components

    • Some commonly used hooks are useState, useEffect, and useContext

  • Answered by AI
  • Q5. Presentation component vs functional component in React.js
  • Q6. Bind(), call(), apply() in JS

Interview Preparation Tips

Topics to prepare for Infosys Reactjs Developer interview:
  • JavaSctipt
  • React.Js
Interview preparation tips for other job seekers - the interview was based on basic concepts of JS.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Basic of react.js and css

I applied via Approached by Company and was interviewed in Apr 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Scenario based and General ReactJS and javascript Questions.

Interview Preparation Tips

Topics to prepare for TCS Reactjs Developer interview:
  • Javascript
  • React.Js
  • CSS
Interview preparation tips for other job seekers - It's kinda techno-managerial round, where questions were about your project, role, daily routines and again javascript and react questions.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Splice & slice difference
  • Ans. 

    Splice is used to add/remove elements from an array, while slice is used to extract a portion of an array without modifying the original array.

    • Splice modifies the original array, while slice does not.

    • Splice can add elements, remove elements, or replace elements in an array.

    • Slice returns a new array with the selected elements from the original array.

    • Example: const arr = [1, 2, 3, 4, 5]; arr.splice(2, 1); // removes elem...

  • Answered by AI
  • Q2. Coding question | How to reverse string
  • Ans. 

    To reverse a string, iterate through the characters and swap them from start to end.

    • Create an empty string to store the reversed result.

    • Iterate through the characters of the input string from end to start.

    • Append each character to the empty string to reverse the order.

    • Return the reversed string.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through basics of react & some coding questions on string & array also iteration of object

Skills evaluated in this interview

NewFangled Vision Interview FAQs

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

Some of the top questions asked at the NewFangled Vision Reactjs Developer interview -

  1. Coding Question, Find largest element in array without sort, find sum of all el...read more
  2. How to communicate child to parent components in rea...read more
  3. Explain position properties, Absolute, Fixed, Relati...read more

Tell us how to improve this page.

NewFangled Vision Reactjs Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
ReactJS Developer

Mumbai

2-5 Yrs

Not Disclosed

Explore more jobs
Software Developer
5 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

Software QA Engineer
4 salaries
unlock blur

₹2.2 L/yr - ₹3.6 L/yr

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