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 Infosys
Q3. What is Node.js and how does it handle concurrency?
asked in Synamedia
Q4. What are the steps to create a basic POST API that handles all po ... read more
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 (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Limestone Digital?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Self introduction
  • Q2. What is java
  • Ans. 

    Java is a high-level programming language known for its platform independence and object-oriented approach.

    • Java is widely used for developing desktop, web, and mobile applications.

    • It is known for its robustness, security, and scalability.

    • Java programs are compiled into bytecode that can run on any Java Virtual Machine (JVM).

    • It supports multithreading, exception handling, and automatic memory management.

    • Popular framewor...

  • Answered by AI

Skills evaluated in this interview

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 Infosys
Q3. What is Node.js and how does it handle concurrency?
asked in Synamedia
Q4. What are the steps to create a basic POST API that handles all po ... read more
asked in Synamedia
Q5. Given an array, how can you determine the frequency of a specific ... read more

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is collections
  • Ans. 

    Collections are data structures that store and manipulate groups of objects.

    • Collections provide a way to organize and manage large amounts of data

    • They can be used to perform operations on groups of objects, such as sorting or searching

    • Examples of collections include arrays, lists, sets, and maps

  • Answered by AI
  • Q2. What are the new features in java 8
  • Ans. 

    Java 8 introduces lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow functional programming in Java

    • Functional interfaces enable the use of lambda expressions

    • Streams provide a concise way to perform operations on collections

    • Default methods allow interfaces to have implementation

    • Date and Time API improvements

    • Nashorn JavaScript engine

  • Answered by AI
  • Q3. What is the use of spring boot
  • Ans. 

    Spring Boot is a framework for building standalone, production-grade Spring-based applications.

    • Spring Boot simplifies the process of creating and deploying Spring-based applications.

    • It provides a pre-configured environment with a set of opinionated defaults.

    • It includes embedded servers like Tomcat, Jetty, and Undertow.

    • It supports a wide range of data sources and data access technologies.

    • It enables easy integration with...

  • Answered by AI
  • Q4. What is JPA
  • Ans. 

    JPA stands for Java Persistence API, a specification for object-relational mapping in Java applications.

    • JPA is used to map Java objects to relational database tables.

    • It provides a set of annotations to define the mapping between Java classes and database tables.

    • JPA also supports querying data using the Java Persistence Query Language (JPQL).

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It will be easy interview

Skills evaluated in this interview

I applied via Referral and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good job security but do not expect projects with latest technologies or development side.

If you are lucky you will get project with new technologies and you can learn.

I applied via Company Website and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Apti & programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Be specific

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Data structure questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience all total

I applied via Campus Placement and was interviewed before May 2021. 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 

VERBAL QUANT DI/LR and Picture based test

Round 3 - Technical 

(1 Question)

  • Q1. Write a fibonaci series in c++ or C?
  • Ans. 

    Fibonacci series can be easily implemented using loops in C++ or C.

    • Declare variables for first two numbers of the series

    • Use a loop to calculate and print the next number in the series

    • Repeat the loop until desired number of terms are printed

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Informed about the policies and made us sign a document

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be calm and composed while answering the questions.

Skills evaluated in this interview

Are these interview questions helpful?

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

Round duration - 90 minutes
Round difficulty - Easy

This round was held during university hours and consisted of 2 coding questions.

Round 2 - Face to Face 

(1 Question)

Round duration - 120 minutes
Round difficulty - Easy

Make sure you do no cutting and are clear about the approach you'd be following. 
 

  • Q1. What is the running median of an input stream?
  • Ans. 

    Running median of an input stream is the median value of the numbers seen so far in a continuous stream of data.

    • Maintain two heaps - a max heap for the lower half of the numbers and a min heap for the upper half.

    • Keep the number of elements in the two heaps balanced or differ by at most 1.

    • If the total number of elements is odd, the median is the root of the max heap. If even, it is the average of the roots of the two he...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Electronics & Communication Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as SDE - 1 in HyderabadEligibility criteria 7 CGPA Amazon interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Java, Object-Oriented Programming System, System Design, Operating System.Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Prepare for company-wise interview questions according to the company in which you are applying. Try to write the code yourself and if got stuck in between then take help from the internet. I recommend you Codezen of Coding Ninjas for practicing Data Structures and Algorithms based questions.

Application resume tips for other job seekers

Be sure 100% of what you write in your resume and prepare for that before the interview what is written on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed before Oct 2021. There were 5 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 

Basic Aptitude with some difficult questions

Round 3 - Coding Test 

3 set of coding question were asked 1 easy ,1 medium ,1 hard

Round 4 - One-on-one 

(1 Question)

  • Q1. This was personal technical interview asking all related to my cv and the one they are looking for
Round 5 - HR 

(1 Question)

  • Q1. Basic personality questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare everything basic and from the CV and you will be good to go.Research about the company a bit that will add cherry on top.

Interview Questionnaire 

1 Question

  • Q1. Why Infosys

Interview Preparation Tips

Interview preparation tips for other job seekers - be honest and dont fake they will know if you are

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.7
 • 8.7k 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.7
 • 3.4k Interviews
View all
Compare Limestone Digital with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview