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 Interview Questions, Process, and Tips

Updated 25 Feb 2025

Top Blue Yonder Interview Questions and Answers

View all 46 questions

Blue Yonder Interview Experiences

Popular Designations

60 interviews found

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

DSA questions, Javascript questions, react questions, nodejs.

Full Stack Developer Interview Questions asked at other Companies

Q1. Query And MatrixYou are given a binary matrix with ‘M’ rows and ‘N’ columns initially consisting of all 0s. 'Q' queries follow. The queries can be of 4 types: Query 1: 1 R index Query 2: 1 C index Query 3: 2 R index Query 4: 2 C index In ea... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology (NIT), Rourkela and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Data Structures and Algorithms medium level questions

Round 2 - Technical 

(2 Questions)

  • Q1. I was asked to solve problems from linkedlist and trees. Then he asked about concepts of OOPs and DBMS. Comparatively he asked tough questions from OOPs.
  • Q2. As I had used reactjs, nodejs and MongoDB in my project, interviewer asked FAQs from these topics.
Round 3 - HR 

(2 Questions)

  • Q1. How do you handle pressure.
  • Q2. Toughest problem faced in project.
  • Ans. 

    Implementing a real-time chat feature with message encryption and decryption.

    • Implementing end-to-end encryption to ensure secure communication

    • Handling real-time updates and synchronization across multiple devices

    • Dealing with potential performance issues due to encryption and decryption processes

  • Answered by AI

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given SumYou are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K. An array is said to have a triplet {ARR[i], ARR[j], ARR[... read more
View answer (4)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Program to find the largest and smallest integer in a program
  • Ans. 

    Program to find the largest and smallest integer in a program

    • Iterate through the array of integers to find the largest and smallest values

    • Initialize variables to store the largest and smallest values, update them as needed

    • Handle edge cases like empty array or array with only one element

    • Return the largest and smallest values found

  • Answered by AI
  • Q2. Explain internal working of HashMap, what is abstract class
  • Ans. 

    HashMap is a data structure that stores key-value pairs using hashing. An abstract class is a class that cannot be instantiated.

    • HashMap uses hashing to store key-value pairs for efficient retrieval.

    • Abstract classes cannot be instantiated and can have abstract methods that must be implemented by subclasses.

    • Example: HashMap map = new HashMap<>();

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Which list you will prefer using if you want to create an application that needs constant modification, ArrayList or LinkedList
  • Ans. 

    LinkedList is preferred for constant modification due to faster insertion and deletion times.

    • LinkedList is preferred for constant modification because it has faster insertion and deletion times compared to ArrayList.

    • LinkedList allows for easy insertion and deletion of elements without the need to shift other elements, making it more efficient for constant modifications.

    • ArrayList is better for random access and iteratin...

  • Answered by AI

Skills evaluated in this interview

Top Blue Yonder Senior Software Engineer Interview Questions and Answers

Q1. Which list you will prefer using if you want to create an application that needs constant modification, ArrayList or LinkedList
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. I was interviewed for PLSQL based role. So I was asked about joins, constraints, procedure and function difference, view and materialized view
  • Q2. Write a sql query to find out 2nd highest salary
  • Ans. 

    SQL query to find 2nd highest salary

    • Use the ORDER BY clause to sort salaries in descending order

    • Use the LIMIT clause to retrieve the second row

  • Answered by AI
  • Q3. Write a function to do factorial
  • Ans. 

    Function to calculate factorial of a number

    • Create a function that takes an integer as input

    • Use a loop to multiply the number by all integers from 1 to the input number

    • Return the final result

  • Answered by AI
  • Q4. Asked about regexp functions

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't give interview in this company. They will not give any response to candidates. Even after Clearing the first round, HR scheduled my final round where panel only not showed up and they didn't even bother to reschedule. So please consider and think before giving interview to blue yonder as they won't respond to you

Skills evaluated in this interview

Senior Technical Consultant Interview Questions asked at other Companies

Q1. How do you get one to many mapping of permissions and user count from bridge table with many to many mapping of users to permissions
View answer (1)

Blue Yonder interview questions for popular designations

 Senior Software Engineer

 (5)

 Associate Software Engineer

 (3)

 Lead Software Engineer

 (3)

 Software Engineer

 (3)

 Support Engineer

 (3)

 Business Consultant

 (2)

 Java Developer

 (2)

 Senior Software Developer

 (2)

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

2 coding questions and few other technical questions from os, cn, dsa and so on

Round 2 - Coding Test 

They asked me sql, dsa and oops...all of them were basics

Round 3 - HR 

(2 Questions)

  • Q1. Why this company
  • Ans. 

    I chose this company because of its innovative projects, strong company culture, and opportunities for growth.

    • Innovative projects: I am excited about the cutting-edge technologies and projects the company is working on.

    • Strong company culture: I value a positive work environment and the company's reputation for fostering a supportive culture is appealing to me.

    • Opportunities for growth: I see potential for career advance

  • Answered by AI
  • Q2. Are u okay with any location?
  • Ans. 

    Yes, I am open to any location for the position of Associate Software Engineer.

    • I am flexible and willing to relocate for the right opportunity.

    • I believe in adapting to new environments and challenges.

    • I am excited about the prospect of working in different locations to gain diverse experiences.

  • Answered by AI

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (1)

Get interview-ready with Top Blue Yonder Interview Questions

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain your role in your previous company
  • Ans. 

    I was responsible for analyzing business processes, identifying areas for improvement, and implementing solutions to increase efficiency and profitability.

    • Analyzed current business processes to identify inefficiencies

    • Developed and implemented strategies to improve efficiency and profitability

    • Collaborated with various departments to ensure successful implementation of solutions

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why do you want to join our company
  • Ans. 

    I am impressed by your company's reputation for innovation and growth.

    • I admire your company's track record of success in implementing cutting-edge solutions.

    • I am excited about the opportunity to work with a team of talented professionals.

    • I believe that my skills and experience align well with the goals of your company.

  • Answered by AI

Business Consultant Interview Questions asked at other Companies

Q1. Guesstimate on how many flights on a day in Delhi airport
View answer (1)

Jobs at Blue Yonder

View all
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Core Java Questions
  • Q2. Merge Sort

Senior Software Developer Interview Questions asked at other Companies

Q1. Intersection of Linked ListYou are given two Singly Linked List of integers, which are merging at some node of a third linked list. Your task is to find the data of the node at which merging starts. If there is no merging, return -1. For ex... read more
View answer (4)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain about distributed system design
  • Ans. 

    Distributed system design involves breaking down a system into smaller components that communicate and coordinate with each other over a network.

    • Decompose the system into smaller services that can run independently

    • Use messaging protocols like MQTT or AMQP for communication

    • Implement fault tolerance and scalability measures

    • Consider data consistency and synchronization across nodes

    • Examples: microservices architecture, Apa

  • Answered by AI
  • Q2. Make an class with other objects as immutable
  • Ans. 

    Create a class with other objects as immutable

    • Use final keyword to make class immutable

    • Make all fields private and final

    • Do not provide setter methods, only getter methods

    • If class contains mutable objects, make sure to return a copy of them in getter methods

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focused on System design, asa

Skills evaluated in this interview

Top Blue Yonder Senior Software Engineer Interview Questions and Answers

Q1. Which list you will prefer using if you want to create an application that needs constant modification, ArrayList or LinkedList
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on Core Java + Java 8 features + Threads + Exceptions + Spring Boots Questions
  • Q2. Coding question like combining list of (x,y) coordinate if they overlap
Round 2 - Technical 

(2 Questions)

  • Q1. Same like previous Round 1 where questions were on Core Java + Java 8 features + Spring boot
  • Q2. Coding questions: 1) To implement HashMap 2) find duplicate count 3) from the list of integers find pairs whos sum matches the target. expecting an optimized solution
  • Ans. 

    Implement HashMap, find duplicate count, and find pairs with sum matching target in an optimized way.

    • Implement HashMap using arrays and linked lists for collision resolution.

    • Use a HashMap to store element counts and find duplicates efficiently.

    • Use a two-pointer approach to find pairs with sum matching the target in O(n) time complexity.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Moderate Knowledge of DSA if the role requires it.

Good knowledge of concepts for the respective Role you are applying.

Skills evaluated in this interview

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Asked About Xamarin Binding
  • Q2. Layout optimisation in Xamarin forms
  • Ans. 

    Layout optimisation in Xamarin forms involves improving performance and user experience by efficiently arranging UI elements.

    • Use ListView instead of StackLayout for long lists to improve performance.

    • Avoid nesting multiple layouts within each other to reduce complexity.

    • Utilize Grid layout for more complex UI designs.

    • Use RelativeLayout for positioning elements relative to each other.

    • Implement caching mechanisms for frequ

  • Answered by AI
  • Q3. Unit tesing Difference between Test and TestCase attribute
  • Ans. 

    Test attribute is used to define a test method, while TestCase attribute is used to define a test case class.

    • Test attribute is used to mark a method as a test method in a test class.

    • TestCase attribute is used to mark a class as a test case class containing multiple test methods.

    • Test attribute is used in frameworks like NUnit, JUnit, etc.

    • TestCase attribute is used in frameworks like NUnit, JUnit, etc.

  • Answered by AI
  • Q4. About Polymorphism

Skills evaluated in this interview

Top Blue Yonder Senior Software Engineer Interview Questions and Answers

Q1. Which list you will prefer using if you want to create an application that needs constant modification, ArrayList or LinkedList
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

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, HR and One-on-one Round.
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, Automation and SQL.
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. 3.What is POM in Automation Framewo...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.

Blue Yonder Interview Process

based on 59 interviews

Interview experience

4.2
  
Good
View more
Join Blue Yonder Innovative supply chain solutions.

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 902 Interviews
SAP Interview Questions
4.2
 • 308 Interviews
Adobe Interview Questions
3.9
 • 251 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Globant Interview Questions
3.8
 • 171 Interviews
e2open Interview Questions
3.5
 • 54 Interviews
Kinaxis Interview Questions
4.0
 • 6 Interviews
View all

Blue Yonder Reviews and Ratings

based on 530 reviews

3.9/5

Rating in categories

3.5

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 530 Reviews and Ratings
Sr QA Automation Engineer

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

Software Engineer II

Bangalore / Bengaluru

2-11 Yrs

Not Disclosed

IN-Technical Account Advisor - TAM/SaaS/Supply Chain/ITIL

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

Explore more jobs
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