Upload Button Icon Add office photos

Filter interviews by

Limestone Digital Node Js Backend Developer Interview Questions and Answers

Updated 19 Mar 2024

10 Interview questions

A Node Js Backend Developer was asked
Q. What is the temporal dead zone?
Ans. 

Temporal dead zone is the period between entering scope and being able to access a variable.

  • Occurs when trying to access a variable before it is declared

  • Caused by hoisting in JavaScript

  • Example: accessing a let or const variable before its declaration will result in a ReferenceError

A Node Js Backend Developer was asked
Q. What is the event loop?
Ans. 

Event loop is a mechanism in Node.js that allows non-blocking I/O operations to be performed asynchronously.

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

  • It allows Node.js to perform multiple operations concurrently without blocking the execution.

  • Event loop continuously checks the event queue for new events and executes them in a non-blocking manner.

  • Example: When a file is being read as...

Node Js Backend Developer Interview Questions Asked at Other Companies

Q1. Complete the following program: class MyEventEmitter { /// ..... ... read more
asked in TCS
Q2. what is closures? Problem of promise with settimeout
asked in Synamedia
Q3. What are the steps to create a basic POST API that handles all po ... read more
asked in Infosys
Q4. What is Node.js and how does it handle concurrency?
asked in Synamedia
Q5. Given an array, how can you determine the frequency of a specific ... read more
A Node Js Backend Developer was asked
Q. How does the event loop work?
Ans. 

Event loop is a mechanism in Node.js that allows non-blocking I/O operations to be performed asynchronously.

  • Event loop continuously checks the call stack for any functions that need to be executed.

  • If the call stack is empty, event loop checks the callback queue for any pending tasks.

  • Event loop moves tasks from the callback queue to the call stack for execution.

  • This allows Node.js to handle multiple I/O operations ...

A Node Js Backend Developer was asked
Q. What is a pipe in Node.js?
Ans. 

A pipe in Node.js is a mechanism that allows you to connect the output of one stream to the input of another stream.

  • Pipes are used to read data from a readable stream and write it to a writable stream.

  • They are created using the pipe() method.

  • Pipes help in simplifying the code by avoiding nested callbacks.

  • Example: readableStream.pipe(writableStream);

A Node Js Backend Developer was asked
Q. What is a closure in Javascript?
Ans. 

A closure in Javascript is a function that has access to its own scope, as well as the outer function's scope.

  • A closure allows a function to access variables from an outer function even after the outer function has finished executing.

  • Closures are commonly used to create private variables and functions in Javascript.

  • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { c...

A Node Js Backend Developer was asked
Q. Do you have experience with GraphQL?
Ans. 

Yes, I have experience with GraphQL.

  • I have worked on implementing GraphQL APIs in various projects.

  • I am familiar with creating schemas, resolvers, and queries in GraphQL.

  • I have used tools like Apollo Server and GraphQL Playground for development.

A Node Js Backend Developer was asked
Q. Do you have experience with PostgreSQL?
Ans. 

Yes, I have experience with PostgreSQL.

  • I have worked on multiple projects where PostgreSQL was used as the database.

  • I am proficient in writing complex SQL queries and optimizing database performance.

  • I have experience in setting up and maintaining PostgreSQL databases.

  • I have used PostgreSQL in conjunction with Node.js for backend development.

Are these interview questions helpful?
A Node Js Backend Developer was asked
Q. What is hoisting?
Ans. 

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

  • Variable declarations are hoisted to the top of their scope but not their initializations.

  • Function declarations are fully hoisted, meaning they can be called before they are declared.

  • Hoisting can lead to unexpected behavior if not understood properly.

A Node Js Backend Developer was asked
Q. How many years of experience with Node.js do you have?
Ans. 

I have 5 years of experience working with Node.js in various projects and environments.

  • 5 years of hands-on experience with Node.js

  • Developed multiple backend applications using Node.js

  • Familiar with popular Node.js frameworks like Express.js

  • Experience in optimizing performance and scalability of Node.js applications

  • Worked on integrating Node.js with databases like MongoDB and MySQL

A Node Js Backend Developer was asked
Q. What are the differences between let, const, and var in JavaScript?
Ans. 

let, const, and var are JavaScript keywords for variable declaration with different scopes and mutability rules.

  • var is function-scoped or globally scoped, while let and const are block-scoped.

  • let allows variable reassignment: let x = 10; x = 20;

  • const creates a constant reference: const y = 30; y cannot be reassigned.

  • var hoists the variable declaration, meaning it's accessible before its declaration: console.log(a)...

Limestone Digital Node Js Backend Developer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. How many years of experience with Node.js do you have?
  • Ans. 

    I have 5 years of experience working with Node.js in various projects and environments.

    • 5 years of hands-on experience with Node.js

    • Developed multiple backend applications using Node.js

    • Familiar with popular Node.js frameworks like Express.js

    • Experience in optimizing performance and scalability of Node.js applications

    • Worked on integrating Node.js with databases like MongoDB and MySQL

  • Answered by AI
  • Q2. Do you have experience with PostgreSQL?
  • Ans. 

    Yes, I have experience with PostgreSQL.

    • I have worked on multiple projects where PostgreSQL was used as the database.

    • I am proficient in writing complex SQL queries and optimizing database performance.

    • I have experience in setting up and maintaining PostgreSQL databases.

    • I have used PostgreSQL in conjunction with Node.js for backend development.

  • Answered by AI
  • Q3. Do you have experience with GraphQL?
  • Ans. 

    Yes, I have experience with GraphQL.

    • I have worked on implementing GraphQL APIs in various projects.

    • I am familiar with creating schemas, resolvers, and queries in GraphQL.

    • I have used tools like Apollo Server and GraphQL Playground for development.

  • Answered by AI
Round 2 - Technical 

(6 Questions)

  • Q1. What is a closure in Javascript?
  • Ans. 

    A closure in Javascript is a function that has access to its own scope, as well as the outer function's scope.

    • A closure allows a function to access variables from an outer function even after the outer function has finished executing.

    • Closures are commonly used to create private variables and functions in Javascript.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { consol...

  • Answered by AI
  • Q2. What is event loop?
  • Ans. 

    Event loop is a mechanism in Node.js that allows non-blocking I/O operations to be performed asynchronously.

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

    • It allows Node.js to perform multiple operations concurrently without blocking the execution.

    • Event loop continuously checks the event queue for new events and executes them in a non-blocking manner.

    • Example: When a file is being read asynchr...

  • Answered by AI
  • Q3. What is hoisting?
  • Ans. 

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

    • Variable declarations are hoisted to the top of their scope but not their initializations.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q4. How event loop works?
  • Ans. 

    Event loop is a mechanism in Node.js that allows non-blocking I/O operations to be performed asynchronously.

    • Event loop continuously checks the call stack for any functions that need to be executed.

    • If the call stack is empty, event loop checks the callback queue for any pending tasks.

    • Event loop moves tasks from the callback queue to the call stack for execution.

    • This allows Node.js to handle multiple I/O operations concu...

  • Answered by AI
  • Q5. What is temporal dead zone?
  • Ans. 

    Temporal dead zone is the period between entering scope and being able to access a variable.

    • Occurs when trying to access a variable before it is declared

    • Caused by hoisting in JavaScript

    • Example: accessing a let or const variable before its declaration will result in a ReferenceError

  • Answered by AI
  • Q6. Let, const, var differences
  • Ans. 

    let, const, and var are JavaScript keywords for variable declaration with different scopes and mutability rules.

    • var is function-scoped or globally scoped, while let and const are block-scoped.

    • let allows variable reassignment: let x = 10; x = 20;

    • const creates a constant reference: const y = 30; y cannot be reassigned.

    • var hoists the variable declaration, meaning it's accessible before its declaration: console.log(a); var...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is a pipe in Node.js
  • Ans. 

    A pipe in Node.js is a mechanism that allows you to connect the output of one stream to the input of another stream.

    • Pipes are used to read data from a readable stream and write it to a writable stream.

    • They are created using the pipe() method.

    • Pipes help in simplifying the code by avoiding nested callbacks.

    • Example: readableStream.pipe(writableStream);

  • Answered by AI
  • Q2. Complete the following program: class MyEventEmitter { /// ..... } const emitterInst = new MyEventEmitter(); emitterInst.on("message", () => console.log("message event | callback 1")); emitterInst.o...
  • Ans. 

    Implement a custom event emitter class in Node.js

    • Create a class MyEventEmitter with methods 'on' and 'emit'

    • Store event listeners in an object with event names as keys and arrays of callbacks as values

    • Implement 'on' method to add event listeners to the object

    • Implement 'emit' method to trigger all callbacks for a given event

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Limestone Digital Node Js Backend Developer interview:
  • Deep Node.js
  • Deep Javascript

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Limestone Digital?
Ask anonymously on communities.

Interview questions from similar companies

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

Round 1 - Aptitude Test 

First round was coding as well as aptitude done together went well I guess focusing on codes helps a lot.

Round 2 - Technical 

(1 Question)

  • Q1. 2nd round included tr and mr round went quite enegritic

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume skills matters a lot don't fill resume the technologies you don't even aware of

Node Js Backend Developer Interview Questions Asked at Other Companies

Q1. Complete the following program: class MyEventEmitter { /// ..... ... read more
asked in TCS
Q2. what is closures? Problem of promise with settimeout
asked in Synamedia
Q3. What are the steps to create a basic POST API that handles all po ... read more
asked in Infosys
Q4. What is Node.js and how does it handle concurrency?
asked in Synamedia
Q5. Given an array, how can you determine the frequency of a specific ... read more

I applied via LinkedIn and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Which technologies your interested to work
  • Q2. Question related to Java coding
  • Q3. Question from C language
  • Q4. Question from AI & ML

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on all the latest technologies, brush your regular skills

I applied via Campus Placement and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Are you willing to relocate?
  • Ans. 

    Yes, I am open to relocating for the right opportunity that aligns with my career goals and personal growth.

    • Relocation can provide exposure to new technologies and methodologies.

    • I am excited about the prospect of working in diverse teams and cultures.

    • For example, moving to a tech hub like San Francisco could enhance my career.

    • I understand the challenges of relocating, but I see them as opportunities for growth.

  • Answered by AI
  • Q2. Why should I hire you?
  • Ans. 

    I bring a unique blend of skills, experience, and passion for software development that aligns perfectly with your team's goals.

    • Proven experience in developing scalable applications, such as a recent project where I improved performance by 30%.

    • Strong problem-solving skills demonstrated through my contributions to open-source projects, enhancing functionality and fixing bugs.

    • Excellent teamwork and communication abilitie...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My technical and Hr interview done at same place. It lasted about 40minutes. The interviewer test both my technical knowledge and communication skills. I tell most of the answer. They check patience level.He stressed on my final year project . Asking about range and specification of compotents which I heve used in my project. Finally ask some HR questions.

I applied via Company Website and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident adn clear when you answer

I applied via Amcat and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Refer R S Agarwal book for apptitude

Round 2 - One-on-one 

(1 Question)

  • Q1. Write a c program on fractional numbers
  • Ans. 

    A C program to perform arithmetic operations on fractional numbers.

    • Use float or double data type to store fractional numbers.

    • Use scanf() to take input from the user.

    • Perform arithmetic operations like addition, subtraction, multiplication, and division.

    • Use printf() to display the result.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared refer R S Agarwal book for apptitude test

Skills evaluated in this interview

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.
Are these interview questions helpful?

I applied via LinkedIn and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. 1. tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - It was nice, but since Im not great at coding I didn't do well

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

Round 1 - Aptitude Test 

Easy logical questions
basic quant

Round 2 - Coding Test 

Easy level coding questions
Counting frequency of alphabets

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through the basics of javascript
Hoisting

I applied via Recruitment Consulltant and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

1.It covers all aptitude topics, and English sentences
2.Essay writing
3.Coding

Round 2 - Technical 

(2 Questions)

  • Q1. In TR , languages which u mentioned in resume they will ask Basic programing Questions on Btech project They will say one idea , we need to tell the logic how can we develop (it may varies)
  • Q2. Testing questions Polymorphism, abstraction,constructors, SQL basics
Round 3 - HR 

(5 Questions)

  • Q1. What is your family background?
  • Q2. Why should we hire you?
  • Q3. Tell me about yourself.
  • Q4. What are your strengths and weaknesses?
  • Q5. Knowledge about updated technologies

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume is important for your TR. Mention only languages u know well.

Limestone Digital Interview FAQs

How many rounds are there in Limestone Digital Node Js Backend Developer interview?
Limestone Digital interview process usually has 3 rounds. The most common rounds in the Limestone Digital interview process are Technical and HR.
What are the top questions asked in Limestone Digital Node Js Backend Developer interview?

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

  1. complete the following program: class MyEventEmitter { /// ..... } const ...read more
  2. How many years of experience with Node.js do you ha...read more
  3. What is a closure in Javascri...read more

Tell us how to improve this page.

Overall Interview Experience Rating

2/5

based on 1 interview experience

Difficulty level

Hard 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
View all
Compare Limestone Digital with

TCS

3.6
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview