Premium Employer

i

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

Blue Yonder Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Blue Yonder Node JS Developer Interview Questions and Answers

Updated 2 Mar 2024

Blue Yonder Node JS Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain about Microservices Architecture
  • Ans. 

    Microservices architecture is an architectural style that structures an application as a collection of loosely coupled services.

    • Each service is self-contained and can be developed, deployed, and scaled independently.

    • Services communicate with each other over lightweight protocols like HTTP or messaging queues.

    • Microservices allow for flexibility, scalability, and resilience in large and complex applications.

    • Examples of c...

  • Answered by AI
  • Q2. What is the difference between NoSQL and SQL Database?
  • Ans. 

    NoSQL databases are non-relational databases that do not require a fixed schema, while SQL databases are relational databases that use structured query language.

    • NoSQL databases are schema-less, allowing for flexible data models.

    • SQL databases use a fixed schema with tables and rows.

    • NoSQL databases are horizontally scalable, making them suitable for big data applications.

    • SQL databases are vertically scalable, meaning the...

  • Answered by AI
  • Q3. What are the closures in Javascript?
  • Ans. 

    Closures in JavaScript are functions that have access to their own scope, as well as the scope in which they were defined.

    • Closures allow functions to access variables from an outer function even after the outer function has finished executing.

    • They are created whenever a function is defined within another function.

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

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Data structures, System design and Node.js well.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed in Dec 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Difference between var, let and const
  • Ans. 

    var is function scoped, let and const are block scoped.

    • var can be redeclared and updated within its scope

    • let can be updated but not redeclared within its scope

    • const cannot be updated or redeclared once declared

    • let and const are not hoisted like var

    • const must be initialized during declaration

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Program to check whether two strings are anagrams or not
  • Ans. 

    Program to check whether two strings are anagrams or not

    • Convert both strings to lowercase

    • Remove all whitespaces from both strings

    • Sort both strings alphabetically

    • Compare the sorted strings, if they are equal then they are anagrams

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with the javascript basics

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic DSA questions like binary search, pattern
  • Q2. Basic SQL query questions

Interview Preparation Tips

Interview preparation tips for other job seekers - One of the worst company I have given interview,
The HR named Shubha A contacted me a day before interview that are you available for interview, I told yes.

After that interview has been scheduled, with interviewer soumyashree rout , I have given all the answers which she asked for and what did I get an acquisition of cheating in interview, I even showed her my surroundings that I am not cheating, and how come such dumb people are allowed to interview. Really waste of time and effort.

Please don't go for interview for this company you will find better opportunities like I did , offered a position at a product based company better than this.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Written coding test
Basic coding questions
Only c c++
Easy level

Round 2 - Technical 

(2 Questions)

  • Q1. Bit manipulation
  • Q2. Rtos concepts,c coding concepts like structures,pointers
Round 3 - Technical 

(2 Questions)

  • Q1. About projects more detailly
  • Q2. About memory management and layout in c
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

In first round 4 coding question like 1 dsa 2 database and one is api and question is very simple . coding round was conducted in hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. DSA QUESTION LIKE TREE AND GRAPH
  • Q2. DP AND SORTING APPROACH
Round 3 - Coding Test 

Again same but dsa question and oops concept in deep level

Interview Preparation Tips

Interview preparation tips for other job seekers - good knowledge in dsa , database , programming thats it
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. The interviewer is from testing panel how the testing panel can take a developer interview they don’t have any knowledge about java worst interviewer in my life they waste my 1hour. after answer all the qu...
  • Q2. What is encapsulation. Protected and default difference i have to explain her with example. Collection and hashmap i explain all the things in hashmap even the implementation After that she said to write ...
  • Q3. She asked me about helm chart and aws.I did answer according to it. My interview was pretty well but very next day what i got to know from HR that my basic was not clear that’s very very unprofessional beh...

Interview Preparation Tips

Topics to prepare for UKG Software Developer interview:
  • Basic Java
  • Coding
Interview preparation tips for other job seekers - Don’t expect anything from UKG even after u did very well in your interview.Pathetic experience worst interviewer.I wish there should be some ukg review portal so that i can share the interviewer feedback as well.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. About project of previous company
  • Q2. Check palindrome and odd of given number
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. What is inheritance?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to reuse code from another class

    • Creates a parent-child relationship between classes

    • Derived class inherits attributes and methods from base class

  • Answered by AI
  • Q2. What is oop principles?
  • Ans. 

    OOP principles are the fundamental concepts of object-oriented programming that help in designing and implementing software solutions.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: The ability of objects to take on multiple forms or have multiple behaviors.

    • Abstraction: Hiding t...

  • Answered by AI
  • Q3. What is polymorphism principle?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or objects.

    • Examples include method overloading and method overriding in object-oriented programming languages like Java.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Based on core Java, DS and spring

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

A paper based test and it was technical

Round 2 - One-on-one 

(2 Questions)

  • Q1. About the projects
  • Q2. Some sql questions

Blue Yonder Interview FAQs

How many rounds are there in Blue Yonder Node JS Developer interview?
Blue Yonder interview process usually has 1 rounds. The most common rounds in the Blue Yonder interview process are Technical.
What are the top questions asked in Blue Yonder Node JS Developer interview?

Some of the top questions asked at the Blue Yonder Node JS Developer interview -

  1. What is the difference between NoSQL and SQL Databa...read more
  2. What are the closures in Javascri...read more
  3. Explain about Microservices Architect...read more

Tell us how to improve this page.

Blue Yonder Node JS Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join Blue Yonder Innovative supply chain solutions.

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 846 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
Adobe Interview Questions
3.9
 • 233 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Globant Interview Questions
3.8
 • 172 Interviews
Dassault Systemes Interview Questions
4.0
 • 160 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
VMware Software Interview Questions
4.4
 • 145 Interviews
NCR Voyix Interview Questions
3.9
 • 122 Interviews
ServiceNow Interview Questions
4.1
 • 120 Interviews
View all
Senior Software Engineer
364 salaries
unlock blur

₹10.8 L/yr - ₹36 L/yr

Technical Consultant
261 salaries
unlock blur

₹4.8 L/yr - ₹18.3 L/yr

Software Engineer
234 salaries
unlock blur

₹5.5 L/yr - ₹20 L/yr

Senior Technical Consultant
189 salaries
unlock blur

₹9.1 L/yr - ₹29 L/yr

Senior Business Consultant
178 salaries
unlock blur

₹11 L/yr - ₹35 L/yr

Explore more salaries
Compare Blue Yonder with

SAP

4.2
Compare

Manhattan Associates

3.7
Compare

Oracle

3.7
Compare

Infor Global Solution

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