Upload Button Icon Add office photos

Filter interviews by

Limestone Digital 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

View all Node Js Backend Developer interview questions
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...

View all Node Js Backend Developer interview questions
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 ...

View all Node Js Backend Developer interview questions
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);

View all Node Js Backend Developer interview questions
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...

View all Node Js Backend Developer interview questions
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.

View all Node Js Backend Developer interview questions
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.

View all Node Js Backend Developer interview questions
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.

View all Node Js Backend Developer interview questions
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

View all Node Js Backend Developer interview questions
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)...

View all Node Js Backend Developer interview questions

Limestone Digital 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

Interview Questionnaire 

1 Question

  • Q1. Where did you work on the specific skill required for the job?
  • Ans. 

    I honed my analytical skills through various projects in my previous roles, focusing on data interpretation and stakeholder communication.

    • Worked on a project analyzing customer feedback data to improve product features, resulting in a 20% increase in user satisfaction.

    • Collaborated with cross-functional teams to gather requirements for a new software tool, ensuring alignment with business objectives.

    • Utilized SQL and Exc...

  • Answered by AI

Intern Interview Questions & Answers

Cognizant user image vagmi gupta

posted on 13 Jul 2022

I appeared for an interview before Jul 2021.

Round 1 - Technical 

(2 Questions)

  • Q1. About your project and s1kills
  • Q2. Interview went well .

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare atleast one language or technology

Data Analyst Interview Questions & Answers

Amazon user image himanshu kohli

posted on 31 May 2021

I applied via Walk-in and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Introducing your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

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

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Ans. 

    Amazon's innovation, customer focus, and diverse opportunities align with my career goals and values.

    • Customer Obsession: Amazon prioritizes customer satisfaction, evident in initiatives like Prime and personalized recommendations.

    • Innovation: The company is a leader in technology and logistics, constantly pushing boundaries with services like AWS and drone delivery.

    • Diversity of Roles: Amazon offers a wide range of caree...

  • Answered by AI
  • Q2. What do you expect from Amazon?
  • Ans. 

    I expect Amazon to foster innovation, provide growth opportunities, and maintain a customer-centric culture.

    • Opportunities for professional development, such as training programs and mentorship.

    • A collaborative work environment that encourages teamwork and idea sharing.

    • Access to cutting-edge technology and resources to drive innovation.

    • A strong focus on customer satisfaction, ensuring that every decision prioritizes the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way

Interview Questionnaire 

2 Questions

  • Q1. Technical
  • Q2. Be yourself
Are these interview questions helpful?

I applied via Recruitment Consulltant and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. *Introduce yourself *Purpose of working in the Company *Educational Background *Family Background *Goals and Ambition
  • Ans. 

    Experienced professional with a strong educational background and clear career ambitions, eager to contribute to the company's success.

    • I have over 5 years of experience in project management, leading teams to successfully deliver complex projects on time.

    • I hold a Master's degree in Business Administration from XYZ University, where I specialized in strategic management.

    • My family has always emphasized the importance of ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident about what you speak.

I applied via Naukri.com and was interviewed before Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What are different types of cloud?
  • Q2. What is workflow,trigger, different types of reports, roles, profiles, permission set, sharing rules etc?
  • Ans. 

    Workflow, trigger, reports, roles, profiles, permission set, and sharing rules are all important features in Salesforce.

    • Workflow is a series of automated steps that can be used to streamline business processes.

    • Triggers are used to execute code before or after a record is inserted, updated, or deleted.

    • Reports are used to display data in a visual format, such as a table or chart.

    • Roles are used to define the hierarchy of ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Google the question related to your topic and also become 100% prepared with your resume.

Skills evaluated in this interview

I appeared for an interview before Jul 2020.

Interview Questionnaire 

1 Question

  • Q1. Is Infosys listed?
  • Ans. 

    Yes, Infosys is listed on the Indian stock exchanges as well as on the NYSE.

    • Infosys is listed on the Bombay Stock Exchange (BSE) and National Stock Exchange of India (NSE)

    • It is also listed on the New York Stock Exchange (NYSE)

    • Infosys has a market capitalization of over $80 billion as of 2021

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in advance

Limestone Digital Interview FAQs

How many rounds are there in Limestone Digital 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 interview?

Some of the top questions asked at the Limestone Digital 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
 • 6k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.3k 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