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 Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Blue Yonder Interview Questions and Answers

Updated 14 Apr 2025
Popular Designations

50 Interview questions

A Senior Software Engineer was asked 4mo ago
Q. Explain how Redux works.
Ans. 

Redux is a predictable state container for JavaScript apps, enabling centralized state management and unidirectional data flow.

  • Centralized Store: Redux maintains a single store that holds the entire state of the application.

  • Actions: Actions are plain JavaScript objects that describe changes to the state. Example: { type: 'ADD_TODO', payload: 'Learn Redux' }

  • Reducers: Reducers are pure functions that take the curren...

View all Senior Software Engineer interview questions
A Senior Data Scientist was asked 4mo ago
Q. How does back propagation work over time?
Ans. 

Back propagation over time is a method used in recurrent neural networks to update weights by propagating errors backwards through time.

  • Back propagation through time (BPTT) is an extension of the backpropagation algorithm for recurrent neural networks.

  • It involves unfolding the network over time and calculating gradients for each time step.

  • The gradients are then used to update the weights of the network to minimize...

View all Senior Data Scientist interview questions
A Senior Data Scientist was asked 4mo ago
Q. Explain batch normalization.
Ans. 

Batch normalization is a technique used in machine learning to improve the training of deep neural networks by normalizing the input of each layer.

  • Batch normalization normalizes the input of each layer by adjusting and scaling the activations.

  • It helps in reducing internal covariate shift, which leads to faster convergence during training.

  • Batch normalization also acts as a regularizer, reducing the need for other r...

View all Senior Data Scientist interview questions
A Senior Data Scientist was asked 4mo ago
Q. Explain back propagation.
Ans. 

Back propagation is a technique used in neural networks to update the weights of the network by calculating the gradient of the loss function with respect to the weights.

  • Back propagation involves calculating the error at the output layer and then propagating it back through the network to update the weights using gradient descent.

  • It uses the chain rule of calculus to calculate the gradient of the loss function wit...

View all Senior Data Scientist interview questions
A Senior Data Scientist was asked 4mo ago
Q. Explain the transformer architecture.
Ans. 

Transformer architecture is a type of deep learning model that uses self-attention mechanism to process sequential data.

  • Utilizes self-attention mechanism to weigh the importance of different input elements

  • Consists of encoder and decoder layers for processing input and generating output

  • Introduced in the paper 'Attention is All You Need' by Vaswani et al. in 2017

View all Senior Data Scientist interview questions
A Data Science Consultant was asked 5mo ago
Q. Explain one ML model to a non-technical stakeholder.
Ans. 

Random Forest is a machine learning model that uses multiple decision trees to make predictions.

  • Random Forest is an ensemble learning method that combines multiple decision trees to improve accuracy and reduce overfitting.

  • Each decision tree in the Random Forest is trained on a random subset of the data and features.

  • The final prediction is made by averaging the predictions of all the individual trees in the forest.

  • ...

View all Data Science Consultant interview questions
A Product Engineer was asked 6mo ago
Q. Write a basic C program.
Ans. 

A basic C program typically includes headers, main function, and can perform simple tasks like printing text or calculations.

  • Include necessary headers: `#include <stdio.h>` for input/output functions.

  • Define the main function: `int main() { ... }` serves as the entry point.

  • Use `printf` to display output: `printf("Hello, World!\n");` prints text.

  • Return an integer value: `return 0;` indicates successful executi...

View all Product Engineer interview questions
Are these interview questions helpful?
A Product Engineer was asked 6mo ago
Q. Why are you choosing this company?
Ans. 

I am drawn to this company for its innovative approach, commitment to quality, and strong values that align with my career aspirations.

  • The company's focus on cutting-edge technology aligns with my passion for innovation, as seen in their recent product launch.

  • I admire the company's commitment to sustainability, which resonates with my personal values and desire to make a positive impact.

  • The collaborative culture h...

View all Product Engineer interview questions
A Technical Support Engineer was asked 7mo ago
Q. Explain joins in SQL.
Ans. 

Joins in SQL are used to combine rows from two or more tables based on a related column between them.

  • Joins are used to retrieve data from multiple tables based on a related column

  • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

  • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

View all Technical Support Engineer interview questions
A Technical Support Engineer was asked 7mo ago
Q. Write a for loop.
Ans. 

A For loop is used to iterate over a collection of items and perform a set of actions for each item.

  • Initialize a counter variable before the loop

  • Set the condition for the loop to continue based on the counter variable and the length of the array

  • Increment the counter variable after each iteration

  • Access each element in the array using the counter variable

View all Technical Support Engineer interview questions

Blue Yonder Interview Experiences

67 interviews found

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

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

Round 1 - Aptitude Test 

Time and work,speed , logical reasoning

Round 2 - Technical 

(2 Questions)

  • Q1. About projects done
  • Q2. Why are you choosing this company
  • Ans. 

    I am drawn to this company for its innovative approach, commitment to quality, and strong values that align with my career aspirations.

    • The company's focus on cutting-edge technology aligns with my passion for innovation, as seen in their recent product launch.

    • I admire the company's commitment to sustainability, which resonates with my personal values and desire to make a positive impact.

    • The collaborative culture here f...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Basic C program
  • Ans. 

    A basic C program typically includes headers, main function, and can perform simple tasks like printing text or calculations.

    • Include necessary headers: `#include <stdio.h>` for input/output functions.

    • Define the main function: `int main() { ... }` serves as the entry point.

    • Use `printf` to display output: `printf("Hello, World!\n");` prints text.

    • Return an integer value: `return 0;` indicates successful execution.

  • Answered by AI
  • Q2. Diode working, DSA concept
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. React native related questions
  • Q2. Experince in developing mobile apps
  • Ans. 

    I have 3 years of experience developing mobile apps for both iOS and Android platforms.

    • Developed mobile apps using Swift for iOS and Java/Kotlin for Android

    • Experience with mobile app design principles and user interface development

    • Worked on integrating APIs and third-party libraries for enhanced functionality

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Generic interview

Skills evaluated in this interview

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

(1 Question)

  • Q1. Explain any one ML model to a non tech stakeholder?
  • Ans. 

    Random Forest is a machine learning model that uses multiple decision trees to make predictions.

    • Random Forest is an ensemble learning method that combines multiple decision trees to improve accuracy and reduce overfitting.

    • Each decision tree in the Random Forest is trained on a random subset of the data and features.

    • The final prediction is made by averaging the predictions of all the individual trees in the forest.

    • Rando...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Aug 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain back propagation?
  • Ans. 

    Back propagation is a technique used in neural networks to update the weights of the network by calculating the gradient of the loss function with respect to the weights.

    • Back propagation involves calculating the error at the output layer and then propagating it back through the network to update the weights using gradient descent.

    • It uses the chain rule of calculus to calculate the gradient of the loss function with res...

  • Answered by AI
  • Q2. Explain batch normalization?
  • Ans. 

    Batch normalization is a technique used in machine learning to improve the training of deep neural networks by normalizing the input of each layer.

    • Batch normalization normalizes the input of each layer by adjusting and scaling the activations.

    • It helps in reducing internal covariate shift, which leads to faster convergence during training.

    • Batch normalization also acts as a regularizer, reducing the need for other regula...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain transformer architechure?
  • Ans. 

    Transformer architecture is a type of deep learning model that uses self-attention mechanism to process sequential data.

    • Utilizes self-attention mechanism to weigh the importance of different input elements

    • Consists of encoder and decoder layers for processing input and generating output

    • Introduced in the paper 'Attention is All You Need' by Vaswani et al. in 2017

  • Answered by AI
  • Q2. How back propagation overtime works?
  • Ans. 

    Back propagation over time is a method used in recurrent neural networks to update weights by propagating errors backwards through time.

    • Back propagation through time (BPTT) is an extension of the backpropagation algorithm for recurrent neural networks.

    • It involves unfolding the network over time and calculating gradients for each time step.

    • The gradients are then used to update the weights of the network to minimize the ...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java, streams,coding

Interview Preparation Tips

Interview preparation tips for other job seekers - poor standards of interview, initially asked couple byhearted interview questions,
and then came reverse a LinkedList question, so i took couple minutes and presented solution, initially he didn't say anything, and then he said my solution is wrong, so i went through the code and an example as well, still not able find the flaw, then he said conditions while loop is not right, again i thoroughly checked not able find error, i asked why it is wrong and tried explained my code as well, but he is not trying understand and conducting interview as if interrogation and not uttering a word as if he revealing something, in-between he is saying its simple question, and he is typing something, seeing and comparing, finally i said ok, i don't know and assume i am wrong lets move next question, as i am losing time, he did similar stuff following questions, later i checked in google and finally realized that he is checking geekforgeeks code and comparing my code, first of all a question can have multiple solutions and later run my code it works the same, but he comparing loop to loop and variable to variable, saying my code is wrong, i tried to explain he does not even understand how to reverse linked list and saying very easy question and treating like interrogation, so disappointed.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Java Basics like jdk, jre, core java questions
  • Q2. Merge sort
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I appeared for an interview in Sep 2024.

Round 1 - Technical 

(1 Question)

  • Q1. 2 simple dsa questions and asked about javascript and react questions
Round 2 - Technical 

(1 Question)

  • Q1. Asked react advance concepts and one machiene coding round

Interview Preparation Tips

Interview preparation tips for other job seekers - I thought it was a front end interview but after completing the 2nd round they told me they are looking for a candidate who having knowledge of back end as well
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(1 Question)

  • Q1. Explain 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 better scalability, flexibility, and resilience compared to monolithic architectures.

    • Exa...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Basics of oops concepts,testing concepts,SQL
  • Q2. Make your introduction strong
  • Ans. 

    I am a highly skilled Technical Consultant with a proven track record of successfully implementing complex solutions for clients.

    • Highlight key technical skills and experience

    • Mention specific projects or achievements

    • Emphasize problem-solving abilities and client satisfaction

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. Situation on how to manage a team crucial times
  • Q2. How to go along with employees having diffrence of opinion
  • Ans. 

    Listen to their perspectives, encourage open communication, find common ground, and work towards a compromise.

    • Encourage open communication to understand each employee's perspective

    • Listen actively and show empathy towards their opinions

    • Find common ground and areas of agreement to build upon

    • Work towards a compromise that addresses the concerns of all parties involved

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on the topics what ever you put in your resume .Boldly say the correct answer .if you don't know the answer you can say you don't know it at the moment but you can learn it quickly
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. What is the Java program to remove duplicate elements from an array?
  • Q2. Selenium interview questions
  • Q3. Rest Assured, Maven questions, pipeline integration, Release process and the testers involves in release testing, Difference types of testing, How to handle Automation and how can we approach the testing w...

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Blue Yonder?
Ask anonymously on communities.

Blue Yonder Interview FAQs

How many rounds are there in Blue Yonder interview?
Blue Yonder interview process usually has 2-3 rounds. The most common rounds in the Blue Yonder interview process are Technical, One-on-one Round and HR.
How to prepare for Blue Yonder interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Blue Yonder. The most common topics and skills that interviewers at Blue Yonder expect are Python, RDBMS, Supply Chain, SQL and Automation.
What are the top questions asked in Blue Yonder interview?

Some of the top questions asked at the Blue Yonder interview -

  1. 1. What is the difference between Absolute & Relative Xpaths? ...read more
  2. What is pessimistic locking and optimistic locki...read more
  3. Which list you will prefer using if you want to create an application that need...read more
How long is the Blue Yonder interview process?

The duration of Blue Yonder interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 66 interview experiences

Difficulty level

Easy 21%
Moderate 76%
Hard 3%

Duration

Less than 2 weeks 73%
2-4 weeks 24%
4-6 weeks 3%
View more
Join Blue Yonder Innovative supply chain solutions.

Interview Questions from Similar Companies

Adobe Interview Questions
3.9
 • 247 Interviews
24/7 Customer Interview Questions
3.5
 • 179 Interviews
Dassault Systemes Interview Questions
3.9
 • 177 Interviews
Oracle Cerner Interview Questions
3.6
 • 162 Interviews
VMware Software Interview Questions
4.4
 • 145 Interviews
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
Amadeus Interview Questions
3.8
 • 115 Interviews
UKG Interview Questions
3.1
 • 112 Interviews
Atlassian Interview Questions
3.4
 • 92 Interviews
View all

Blue Yonder Reviews and Ratings

based on 587 reviews

3.9/5

Rating in categories

3.6

Skill development

3.9

Work-life balance

3.5

Salary

3.9

Job security

3.8

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 587 Reviews and Ratings
Senior Software Engineer
373 salaries
unlock blur

₹12 L/yr - ₹34.3 L/yr

Software Engineer
297 salaries
unlock blur

₹5.6 L/yr - ₹19 L/yr

Technical Consultant
272 salaries
unlock blur

₹7.3 L/yr - ₹21.5 L/yr

Senior Technical Consultant
203 salaries
unlock blur

₹10.3 L/yr - ₹32 L/yr

Senior Business Consultant
194 salaries
unlock blur

₹11 L/yr - ₹36.3 L/yr

Explore more salaries
Compare Blue Yonder with

SAP

4.2
Compare

24/7 Customer

3.5
Compare

Thomson Reuters

4.1
Compare

Oracle Cerner

3.6
Compare
write
Share an Interview