Premium Employer

i

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

Infosys Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 37.2k Reviews

Filter interviews by

Infosys Node Js Backend Developer Interview Questions and Answers

Updated 18 Nov 2024

Infosys Node Js Backend Developer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What is node js and how does it handle concurrency?
  • Ans. 

    Node.js is a runtime environment that allows you to run JavaScript on the server side.

    • Node.js is built on the V8 JavaScript engine from Google Chrome.

    • It uses an event-driven, non-blocking I/O model that makes it lightweight and efficient for handling concurrent operations.

    • Node.js uses the libuv library to handle asynchronous operations and manage event loops.

    • Concurrency in Node.js is achieved through event loops and ca...

  • Answered by AI
  • Q2. Difference between SQL and NoSQL.
  • Ans. 

    SQL is a relational database management system, while NoSQL is a non-relational database management system.

    • SQL databases are table-based and have a predefined schema, while NoSQL databases are document-based, key-value pairs, graph databases, or wide-column stores.

    • SQL databases are good for complex queries and transactions, while NoSQL databases are better for hierarchical data storage and real-time web applications.

    • Ex...

  • Answered by AI
  • Q3. Authentication and Authorization.
Round 2 - One-on-one 

(2 Questions)

  • Q1. What kind of project you have worked on, project discussion.
  • Q2. 3rd Highest number in an array without using any sorting method/algo.
  • Ans. 

    Find the 3rd highest number in an array without sorting.

    • Iterate through the array to find the highest, second highest, and third highest numbers.

    • Keep track of these numbers as you iterate.

    • Return the third highest number once the iteration is complete.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Infosys Node Js Backend Developer interview:
  • Node.Js
  • MySQL
  • MongoDB
Interview preparation tips for other job seekers - Prepare Mysql and mongodb queries. Also read about authorization and authentication.

Skills evaluated in this interview

Interview questions from similar companies

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

(5 Questions)

  • Q1. What is Node Js
  • Ans. 

    Node.js is a runtime environment that allows you to run JavaScript code outside of a web browser.

    • Node.js is built on Chrome's V8 JavaScript engine.

    • It uses an event-driven, non-blocking I/O model that makes it lightweight and efficient.

    • Node.js is commonly used for building server-side applications and APIs.

    • It has a large ecosystem of open-source libraries and frameworks, such as Express.js.

  • Answered by AI
  • Q2. What is middleware
  • Ans. 

    Middleware is a software component that acts as a bridge between an application's request and response.

    • Middleware functions have access to the request and response objects

    • They can modify the request and response objects

    • Middleware can be used for tasks like authentication, logging, error handling, etc.

  • Answered by AI
  • Q3. What is promise
  • Ans. 

    A promise is an object 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() to handle success and .catch() to handle errors.

    • Example: new Promise((resolve, reject) => { setTimeout(() => resolve('Done!'), 1000); });

  • Answered by AI
  • Q4. What is promise.all
  • Ans. 

    promise.all is a method in JavaScript that takes an array of promises and returns a single promise that resolves when all of the input promises have resolved.

    • Used to handle multiple asynchronous operations at once

    • Returns a single promise that resolves when all input promises have resolved

    • If any of the input promises is rejected, the returned promise is rejected with the reason of the first rejected promise

  • Answered by AI
  • Q5. What is callback
  • Ans. 

    A callback is a function passed as an argument to another function to be executed later.

    • Callbacks are commonly used in asynchronous programming to handle tasks that take time to complete.

    • They are often used in event handling, timers, and AJAX requests.

    • Callbacks can be synchronous or asynchronous, depending on when they are executed.

    • Example: setTimeout(callback, 1000) will execute the callback function after 1 second.

  • Answered by AI

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Nov 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 - One-on-one 

(1 Question)

  • Q1. What is closures? Problem of promise with settimeout
  • Ans. 

    Closures are functions that have access to variables from their outer scope, even after the outer function has finished executing.

    • Closures are created when a function is defined inside another function.

    • The inner function has access to the outer function's variables, even after the outer function has returned.

    • Closures are useful for creating private variables and data encapsulation.

    • They can be used to implement callback...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They just wanted to know about the basic knowledge and some coding skills.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

I was asked a problem around Edit distance and how to compute a average for a stream of data.

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

(2 Questions)

  • Q1. What is eventlopp
  • Q2. How node.js working
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a passionate Backend Developer with 5 years of experience in building scalable and efficient web applications.

    • 5 years of experience in backend development

    • Proficient in programming languages like Java, Python, and Node.js

    • Strong understanding of database management systems such as MySQL and MongoDB

    • Experience in developing RESTful APIs and microservices

    • Familiar with cloud technologies like AWS and Azure

  • Answered by AI
  • Q2. Some python programs
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Find pairs from list whose is equals to target
  • Ans. 

    Find pairs from list whose sum is equal to target

    • Iterate through the list and for each element, check if the target minus the element exists in a hashmap

    • If it exists, add the pair to the result list

    • If it doesn't exist, add the current element to the hashmap

  • Answered by AI
  • Q2. Multiple iNheritance

Skills evaluated in this interview

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

(2 Questions)

  • Q1. All basic question related to node.js like event loop,
  • Q2. What is event loop?
  • Ans. 

    Event loop is a mechanism in node.js that allows non-blocking I/O operations by handling asynchronous tasks efficiently.

    • Event loop is responsible for handling asynchronous operations in node.js.

    • It allows node.js to perform non-blocking I/O operations by delegating tasks to the operating system.

    • Event loop continuously checks the event queue for new tasks and executes them in a loop.

    • It helps in preventing the blocking of...

  • Answered by AI

Backend Developer Interview Questions & Answers

Wipro user image Morukurthi Appalaraju

posted on 2 Apr 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. They asked Oops concepts
  • Q2. They asked exception handling
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic questions
Round 2 - HR 

(1 Question)

  • Q1. Economics questions

Interview Preparation Tips

Topics to prepare for Genpact Backend Operations Executive interview:
  • Profit and loss concept
Interview preparation tips for other job seekers - Stay calm and confident

Infosys Interview FAQs

How many rounds are there in Infosys Node Js Backend Developer interview?
Infosys interview process usually has 2 rounds. The most common rounds in the Infosys interview process are Technical and One-on-one Round.
What are the top questions asked in Infosys Node Js Backend Developer interview?

Some of the top questions asked at the Infosys Node Js Backend Developer interview -

  1. What is node js and how does it handle concurren...read more
  2. 3rd Highest number in an array without using any sorting method/al...read more
  3. Difference between SQL and NoS...read more

Tell us how to improve this page.

Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
View all
Infosys Node Js Backend Developer Salary
based on 8 salaries
₹4.8 L/yr - ₹8 L/yr
6% more than the average Node Js Backend Developer Salary in India
View more details
Technology Analyst
56.2k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
49.7k salaries
unlock blur

₹2.8 L/yr - ₹8 L/yr

System Engineer
39k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.7k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.1k salaries
unlock blur

₹4.3 L/yr - ₹16.8 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Accenture

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview