Upload Button Icon Add office photos
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

Compare button icon Compare button icon Compare
3.9

based on 509 Reviews

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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

Question related to operating system and computer network

Round 2 - Technical 

(1 Question)

  • Q1. Traverse all child nodes in tree
  • Ans. 

    Traverse all child nodes in a tree data structure

    • Use depth-first or breadth-first traversal algorithms

    • Recursively visit each child node starting from the root node

    • Consider using a stack or queue data structure for traversal

    • Example: Traverse all nodes in a binary tree

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Question related to cloud and oops
Round 4 - Technical 

(1 Question)

  • Q1. Question related to my background and how web site work
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
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Rest Apis questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Core java and OOPS and LLD

Interview Preparation Tips

Interview preparation tips for other job seekers - Good understanding of Core language and its framework

Software Developer Interview Questions & Answers

Amadeus user image Aswini Ramachandran

posted on 2 Oct 2024

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

(2 Questions)

  • Q1. Something based on hashet
  • Q2. Same with this too
Round 2 - Aptitude Test 

Basic questions were given..bar graphs,pie charts

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

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

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 897 Interviews
SAP Interview Questions
4.2
 • 306 Interviews
CitiusTech Interview Questions
3.4
 • 266 Interviews
Altimetrik Interview Questions
3.8
 • 211 Interviews
Xoriant Interview Questions
4.2
 • 180 Interviews
ThoughtWorks Interview Questions
3.9
 • 145 Interviews
Apexon Interview Questions
3.3
 • 135 Interviews
Luxoft Interview Questions
3.7
 • 120 Interviews
View all
Senior Software Engineer
369 salaries
unlock blur

₹10.8 L/yr - ₹36 L/yr

Technical Consultant
262 salaries
unlock blur

₹4.5 L/yr - ₹18.9 L/yr

Software Engineer
237 salaries
unlock blur

₹5.5 L/yr - ₹19.8 L/yr

Senior Technical Consultant
194 salaries
unlock blur

₹9 L/yr - ₹29 L/yr

Senior Business Consultant
174 salaries
unlock blur

₹11 L/yr - ₹36.3 L/yr

Explore more salaries
Compare Blue Yonder with

SAP

4.2
Compare

Manhattan Associates

3.8
Compare

Oracle

3.7
Compare

Infor Global Solution

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