Upload Button Icon Add office photos
Engaged Employer

i

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

NeoSOFT Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

NeoSOFT React Js Frontend Developer Interview Questions, Process, and Tips for Experienced

Updated 9 Feb 2025

Top NeoSOFT React Js Frontend Developer Interview Questions and Answers for Experienced

View all 6 questions

NeoSOFT React Js Frontend Developer Interview Experiences for Experienced

2 interviews found

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

I appeared for an interview in Jan 2025.

Round 1 - Technicalย 

(7 Questions)

  • Q1. Basic Javascript questions were asked like Hoisting, Event Loop, Closure.
  • Q2. What are semantic tags? << HTML based question
  • Ans. 

    Semantic tags in HTML are specific tags that provide meaning to the content they enclose.

    • Semantic tags help search engines and screen readers understand the structure of a webpage.

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

    • Using semantic tags improves SEO and accessibility of a website.

  • Answered by AI
  • Q3. What is currying in js?
  • Ans. 

    Currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of nested functions, each taking a single argument.

    • Currying helps in creating reusable functions and partial application.

    • It allows you to create new functions by fixing some parameters of an existing function.

    • Example: const add = (a) => (b) => a + b; add(2)(3) will return 5.

  • Answered by AI
  • Q4. What is the difference between Map and Filter?
  • Ans. 

    Map is used to transform each element of an array, while Filter is used to select elements based on a condition.

    • Map returns a new array with the same length as the original array, but with each element transformed based on a provided function.

    • Filter returns a new array with only the elements that pass a provided condition function.

    • Example for Map: [1, 2, 3].map(num => num * 2) will result in [2, 4, 6].

    • Example for Fi...

  • Answered by AI
  • Q5. What is the difference between Map and ForEach?
  • Ans. 

    Map creates a new array with the results of calling a provided function on every element, while forEach executes a provided function once for each array element.

    • Map returns a new array with the same length as the original array, while forEach does not return anything.

    • Map does not mutate the original array, while forEach can mutate the original array.

    • Map is more suitable for transforming data and creating a new array, w...

  • Answered by AI
  • Q6. What is the difference between Authentication and Authorization?
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines the user's access rights.

    • Authentication confirms the user's identity through credentials like username and password.

    • Authorization determines what actions the authenticated user is allowed to perform.

    • Authentication precedes authorization in the security process.

    • Example: Logging into a website (authentication) and then accessing specific pages

  • Answered by AI
  • Q7. What is the difference between Local storage and Session storage?
  • Ans. 

    Local storage persists even after the browser is closed, while session storage is cleared when the browser is closed.

    • Local storage has no expiration date, while session storage expires when the browser is closed.

    • Local storage stores data with no limit, while session storage has a limit of around 5MB.

    • Local storage data is available across all windows/tabs for that domain, while session storage data is only available wit...

  • Answered by AI
Round 2 - Technicalย 

(1 Question)

  • Q1. This was the Final round, it lasted for around 30 mins and the interviewer gave me a coding question to build a Countdown Timer app.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for Live coding round that's the important one.
Also prepare the questions based on HTML, CSS
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
Not Selected
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. Basic of react, html, css
Round 3 - Coding Testย 

Write code to check palindrome no. Sime basic react js task

Interview Preparation Tips

Interview preparation tips for other job seekers - Please dont waste u r time h
By giving interview here. After giving two rounds of interview very well hr will ghost you. They will even bother to tell the status. They will just simply block u r number.my hr name us vidhi shaha. She just blocked my no. Not answering to my calls even not replying to mails. Atleast have courtesy to reply Back. Very unprofessional behaviour.There is no reason to reject me even in interview interviewer was saying good on every ans i gave. And the actual scam is now .u will get call from xyz agency saying that we are hiring for postion u will have to pay u r one month salary. Boom .they were talking about neo soft. Shame on this company. They will not hire real talent.they will hire people through agency.

React Js Frontend Developer Interview Questions Asked at Other Companies for Experienced

Q1. How can we download csv file of more then 1000mb and show the dat ... read more
Q2. Explain the difference between class component functional compone ... read more
Q3. Types of props and their how do they work?
asked in Divum
Q4. What is mean by oops? Structure of oops? Write a program for give ... read more
Q5. What are the differences between the call, apply, and bind method ... read more

Interview questions from similar companies

Interview Questionnaireย 

1 Question

  • Q1. Runtime pollymorphism

Interview Preparation Tips

Round: Test
Experience: I scored good.
Tips: Core java good knowledge.
Duration: 30 minutes
Total Questions: 25

Round: Technical Interview
Experience: like this many ques from core java and hibernate and sql also and I scored good.
Tips: Command over core java and sql also.

I applied via Recruitment Consultant and was interviewed before Feb 2020.ย There were 4 interview rounds.

Interview Questionnaireย 

1 Question

  • Q1. Method overloading, method overriding, life cycle of thread,oops concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 4 rounds. 1. Technical written test, here, pattern, string, array questions were asked. 2.Face to face .
3. Manager round, here scenario based questions on jdbc,hybernate and other family background details.
4. HR round.

Interview Questionnaireย 

1 Question

  • Q1. How old are you?

Interview Preparation Tips

Interview preparation tips for other job seekers - any one can do it yes i am hay and thanks to listing me hey

I appeared for an interview before Sep 2020.

Round 1 - Face to Faceย 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

I was asked 2 coding questions, questions from my projects and questions related to different java concepts. One question from cloud computing was also asked.

  • Q1. 

    Maximum Subarray Sum Problem Statement

    Given an array arr of length N consisting of integers, find the sum of the subarray (including empty subarray) with the maximum sum among all subarrays.

    Explanation...

  • Ans. 

    Find the sum of the subarray with the maximum sum among all subarrays in a given array.

    • Iterate through the array and keep track of the current sum and maximum sum seen so far.

    • If the current sum becomes negative, reset it to 0 as it won't contribute to the maximum sum.

    • Return the maximum sum as the result.

    • Example: For input arr = [-2, 1, -3, 4, -1], the maximum subarray sum is 4.

  • Answered by AI
  • Q2. 

    Add Two Numbers as Linked Lists

    You are given two singly linked lists, where each list represents a positive number without any leading zeros.

    Your task is to add these two numbers and return the sum as ...

  • Ans. 

    Add two numbers represented as linked lists and return the sum as a linked list.

    • Traverse both linked lists simultaneously while keeping track of carry

    • Create a new linked list to store the sum

    • Handle cases where one list is longer than the other

    • Consider edge cases like carry at the end of addition

  • Answered by AI
Round 2 - HRย 

Round duration - 15 minutes
Round difficulty - Easy

It was a normal discussion about the role, the job expectations and about the company culture.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Bharati Vidyapeeth's College of Engineering. I applied for the job as SDE - 1 in DelhiEligibility criteriaAbove 8 CGPANewgen Software interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, System Design, OOPS, Dynamic Programming, AptitudeTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Do at-least 200+ dsa problems from various topics.
Tip 2 : Make 2-3 projects and be well versed with their functionality.
Tip 3 : Practice aptitude questions and time yourself while doing the questions.

Application resume tips for other job seekers

Tip 1: Keep your resume short, try to make it one pager only.
Tip 2: Mention only position specific projects, and if you have got a good academic score mention it on top.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Nov 2019.ย There were 4 interview rounds.

Interview Questionnaireย 

1 Question

  • Q1. Servlet life cycle, bubble sort, quick sort, binary search, how can a software ensure GDPR rules being followed, SQL queries (second highest salary)

Interview Preparation Tips

Interview preparation tips for other job seekers - you will need to give a psychometric test, some beginner sometimes mediocre level programming test and final technical interview which may last till an hour. Do read about 1 or 2 Newgen products before going for the interview. They will definitely ask. Just be confident.Offer letter generally comes within 2 weeks. All the best !!

I applied via Naukri.com and was interviewed in Nov 2020.ย There were 4 interview rounds.

Interview Questionnaireย 

1 Question

  • Q1. Basics on java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on the basics on which you are working or learned and the profile they have offered. Be brave and don't be get scared by seeing the interviewer and the way he asking questions.

I applied via Campus Placement and was interviewed in Nov 2022.ย There were 4 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ย 

It was very tough and one need lot of practice

Round 3 - Technicalย 

(1 Question)

  • Q1. They just ask the basics but if the resume is good then they may ask little more tough questions
Round 4 - HRย 

(1 Question)

  • Q1. This is as always easy round they just about ourself bla bla

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard and you get shortlisted in your dream company all d best๐Ÿ™

I applied via Approached by Company and was interviewed in May 2022.ย There were 3 interview rounds.

Round 1 - Group Discussionย 
Pro Tip by AmbitionBox:
Donโ€™t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips
Round 2 - Technicalย 

(1 Question)

  • Q1. Real time questions on sql and power bi ssis
Round 3 - HRย 

(1 Question)

  • Q1. Salary discussion when cam be joined

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to go good assessment on employees suggested purely

NeoSOFT Interview FAQs

How many rounds are there in NeoSOFT React Js Frontend Developer interview for experienced candidates?
NeoSOFT interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the NeoSOFT interview process for experienced candidates are Technical, Resume Shortlist and Coding Test.
What are the top questions asked in NeoSOFT React Js Frontend Developer interview for experienced candidates?

Some of the top questions asked at the NeoSOFT React Js Frontend Developer interview for experienced candidates -

  1. What is the difference between Authentication and Authorizati...read more
  2. What is the difference between Local storage and Session stora...read more
  3. What are semantic tags? << HTML based quest...read more

Tell us how to improve this page.

NeoSOFT React Js Frontend Developer Interview Process for Experienced

based on 2 interviews

Interview experience

2
ย ย 
Poor
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
ย โ€ขย 338 Interviews
Newgen Software Technologies Interview Questions
3.7
ย โ€ขย 186 Interviews
3i Infotech Interview Questions
3.5
ย โ€ขย 145 Interviews
Happiest Minds Technologies Interview Questions
3.6
ย โ€ขย 132 Interviews
Microland Interview Questions
3.4
ย โ€ขย 132 Interviews
Test Yantra Software Solutions Interview Questions
3.2
ย โ€ขย 124 Interviews
Sify Technologies Interview Questions
3.8
ย โ€ขย 123 Interviews
Mastek Interview Questions
3.5
ย โ€ขย 120 Interviews
Maveric Systems Interview Questions
3.5
ย โ€ขย 118 Interviews
Sonata Software Interview Questions
3.4
ย โ€ขย 117 Interviews
View all
NeoSOFT React Js Frontend Developer Salary
based on 8 salaries
โ‚น4.7 L/yr - โ‚น14.4 L/yr
27% more than the average React Js Frontend Developer Salary in India
View more details

NeoSOFT React Js Frontend Developer Reviews and Ratings

based on 2 reviews

3.8/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.4

Salary

3.8

Job security

3.8

Company culture

3.1

Promotions

3.8

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
2k salaries
unlock blur

โ‚น3.5 L/yr - โ‚น14 L/yr

Senior Software Engineer
752 salaries
unlock blur

โ‚น5.9 L/yr - โ‚น20 L/yr

Software Developer
719 salaries
unlock blur

โ‚น2.9 L/yr - โ‚น12.6 L/yr

Softwaretest Engineer
483 salaries
unlock blur

โ‚น2 L/yr - โ‚น9.8 L/yr

Associate Software Engineer
191 salaries
unlock blur

โ‚น2.5 L/yr - โ‚น9 L/yr

Explore more salaries
Compare NeoSOFT with

ITC Infotech

3.6
Compare

Test Yantra Software Solutions

3.2
Compare

Microland

3.5
Compare

3i Infotech

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