Upload Button Icon Add office photos

Filter interviews by

NewFangled Vision Reactjs Developer Interview Questions, Process, and Tips for Freshers

Updated 8 Apr 2024

NewFangled Vision Reactjs Developer Interview Experiences for Freshers

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 Questionnaire 

3 Questions

  • Q1. What are the new features in react 16?
  • Ans. 

    React 16 introduced new features like React Fiber, Error Boundaries, Portals, and improved server-side rendering.

    • React Fiber is a new reconciliation engine that improves performance and enables incremental rendering.

    • Error Boundaries allow developers to catch and handle errors in components.

    • Portals provide a way to render children into a different DOM subtree.

    • Improved server-side rendering with support for streaming and...

  • Answered by AI
  • Q2. Why react hooks are use full?
  • Ans. 

    React hooks simplify state management and lifecycle methods in functional components.

    • Hooks allow functional components to have state and lifecycle methods

    • They reduce the need for class components and HOCs

    • Hooks make code more readable and easier to test

    • Examples of hooks include useState, useEffect, and useContext

  • Answered by AI
  • Q3. What is HOC components?
  • Ans. 

    HOC components are higher-order components in React that allow code reuse and logic sharing.

    • HOC components are functions that take a component and return a new component with additional functionality.

    • They are used to abstract common logic and behaviors into reusable components.

    • HOC components can be used for tasks like authentication, logging, and code reuse.

    • Example: a withAuth HOC component that adds authentication log

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Coding questions related let ,var and const
  • Q2. What is reducer and it's flow
  • Ans. 

    A reducer is a pure function in React that takes the previous state and an action, and returns the new state.

    • Reducers are used in React to manage state changes in an application

    • They take the previous state and an action as input

    • Reducers are pure functions, meaning they do not modify the state directly

    • They return a new state based on the previous state and the action

    • Redux is a popular library that uses reducers to manag

  • Answered by AI
  • Q3. What are new features of HTMl5,css positions
  • Ans. 

    New features of HTML5 and CSS positions include flexbox, grid layout, and sticky positioning.

    • Flexbox allows for easier alignment and distribution of items within a container.

    • Grid layout enables the creation of complex layouts with rows and columns.

    • Sticky positioning allows elements to stick to a specific position on the page as the user scrolls.

  • Answered by AI
  • Q4. Javascript coding questions-array object
  • Q5. Spread operator in react?
  • Ans. 

    Spread operator is used to expand an iterable object into individual elements.

    • Used for passing props to child components

    • Used for merging arrays and objects

    • Syntax: ...

    • Example: const arr = [1, 2, 3]; const newArr = [...arr, 4, 5];

  • Answered by AI
  • Q6. Tel me about

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Oct 2022. 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 - Technical 

(1 Question)

  • Q1. First Round is telephonic. Self -introduction, and basics of React js
Round 3 - Technical 

(1 Question)

  • Q1. Second round is video interview. life cycle of react js, dom manipulations, HOC, Redux, React memo, props drilling Javascript: array cloning, object cloning, Data types, Nan

Interview Questionnaire 

1 Question

  • Q1. Asked to write a general reusable form component in Reactjs, fields should be dynamic and inputs to the form should get displayed as table format.

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 Questionnaire 

2 Questions

  • Q1. Basics of javascript like Closures, IIFE, Hoisting.
  • Q2. React hooks

I applied via Naukri.com and was interviewed in Apr 2022. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is closures, Hoisting with example Semantic elements
  • Ans. 

    Closures and hoisting are important concepts in JavaScript.

    • Closures refer to the ability of a function to access variables in its outer scope even after the function has returned.

    • Hoisting is the behavior of moving variable and function declarations to the top of their respective scopes.

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

  • Answered by AI
  • Q2. Chaining Methods Currying Call bind and apply Optimization of application Server side rendering
  • Q3. Selectors HTML 5 features

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview questions were basic javascript only. He didn't ask anything related to reactjs.
Practice for scope of variables inside and outside of functions

I applied via Naukri.com and was interviewed in Aug 2021. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Html - Form, meta tags
  • Q2. Css - Grid box.
  • Q3. How do you make a page responsive. Bootstrap layouts and alerts
  • Ans. 

    To make a page responsive, use Bootstrap layouts and alerts.

    • Use Bootstrap's grid system to create responsive layouts

    • Use media queries to adjust the layout based on screen size

    • Use Bootstrap's responsive utility classes to hide/show elements on different devices

    • Use Bootstrap's responsive navigation components for mobile-friendly menus

    • Use Bootstrap's responsive images to ensure they scale properly

    • Use Bootstrap's responsiv...

  • Answered by AI
  • Q4. Javascript array based questions
  • Q5. Questions from redux, hook, use state, UseEffect

Interview Preparation Tips

Interview preparation tips for other job seekers - I had a call from Accenture HR asking my interest for the role. Three rounds - 1st is mcq which had 30 questions for 35min. Moderate to tough.
Second round is technical interview, took around 2 hours. Totally exhausted after 1st hour. Interviewer asked to write few codes in the live code share screen. The process is completed in a week

Skills evaluated in this interview

NewFangled Vision Interview FAQs

How many rounds are there in NewFangled Vision Reactjs Developer interview for freshers?
NewFangled Vision interview process for freshers usually has 1 rounds. The most common rounds in the NewFangled Vision interview process for freshers are Technical.
How to prepare for NewFangled Vision Reactjs Developer interview for freshers?
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 for freshers?

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

  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 for Freshers

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