Upload Button Icon Add office photos

Filter interviews by

NewFangled Vision Interview Questions, Process, and Tips

Updated 8 Apr 2024

NewFangled Vision 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 Interview Questions asked at other Companies

Q1. Implement counter such that it has 2 buttons to increment and decrement the values and also add a input field such that, whatever input is given, the value should be to that and value should should be decreased and increased from the input ... read more
View answer (2)

Jobs at NewFangled Vision

View all

Interview questions from similar companies

I applied via Walk-in and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Work experience
  • Q2. How to generate lead
  • Ans. 

    Generating leads involves identifying potential customers and nurturing them through the sales funnel.

    • Identify target audience through market research

    • Create compelling content to attract potential customers

    • Use social media and email marketing to reach out to leads

    • Offer incentives or promotions to encourage lead conversion

    • Track and analyze lead data to optimize lead generation strategies

  • Answered by AI
  • Q3. Product questioning
  • Q4. Sales target
  • Q5. Documentation
  • Q6. Timming

Interview Preparation Tips

Interview preparation tips for other job seekers - All are depend on conversation how to manage

Interview Questionnaire 

2 Questions

  • Q1. What is mean HDFC?
  • Q2. What are benifits for HDFC Bank

I applied via Recruitment Consultant and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introductions,details about the job

Interview Preparation Tips

Interview preparation tips for other job seekers - Only they will ask us the introduction of ours and tell us complete detail of the job
There are 2 kind of works field and store work
Bike must and should for field work.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

I applied via Campus Placement

Interview Questionnaire 

3 Questions

  • Q1. What is your final year project?what technology did i used for it?Basic oops concepts.
  • Ans. 

    My final year project was on developing a web-based inventory management system using Java and MySQL.

    • Developed using Java and MySQL

    • Web-based inventory management system

    • Implemented basic OOPs concepts

    • Used MVC architecture for better code organization

    • Included features like user authentication, product management, and order tracking

  • Answered by AI
  • Q2. What did you do in lockdown?
  • Q3. Tell me something about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and be real.

I applied via LinkedIn and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Group Discussion 

They give some topics related to present situation like in my GD in 2020 co. HR give topics related to that situation in our country like difference between offline education and online education system. and covid-19 pandemic related topics.

Round 2 - One-on-one 

(4 Questions)

  • Q1. Tell me About your self ?
  • Q2. What do you know about this job position ?
  • Q3. What is your favourite colour ? Can i know the speciality of your favourite colour ?
  • Q4. Who inspired you to go to job daily and work hard ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Your 1st impression is your resume nothing else then after you have some knowledge about your job position which you apply for and most important if you want only private job your english language will be excellent spoken as well as written.

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

(1 Question)

  • Q1. All types of test steeps
  • Ans. 

    Types of test steps in software testing

    • Unit testing - testing individual units or components of the software

    • Integration testing - testing how different units or components work together

    • System testing - testing the entire system as a whole

    • Acceptance testing - testing if the software meets the requirements and is ready for release

    • Regression testing - testing to ensure that changes or updates to the software did not intro...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hope for the best.All can achieve same

Interview Questionnaire 

1 Question

  • Q1. Questions related to COBOL,JCL,VSAM,DB2,CICS,Vision plus

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself and basic questions related to programming.

NewFangled Vision Interview FAQs

How many rounds are there in NewFangled Vision 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 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 Problem Solving, Javascript, CSS, Communication Skills and HTML.
What are the top questions asked in NewFangled Vision interview?

Some of the top questions asked at the NewFangled Vision 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 Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.6k Interviews
Accenture Interview Questions
3.8
 • 8.3k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.7k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.2k Interviews
View all

NewFangled Vision Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

-

Skill development

-

Work-life balance

-

Salary

-

Job security

-

Company culture

-

Promotions

-

Work satisfaction

Explore 1 Review and Rating
Oracle PL/SQL DB Tuning Developer

Mumbai

3-5 Yrs

Not Disclosed

SEO Executive

Mumbai

4-9 Yrs

Not Disclosed

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