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 for Experienced

Updated 14 Apr 2025
Popular Designations

30 Interview questions

A Senior Software Engineer was asked 3mo ago
Q. Given an array of integers, find the duplicate element.
Ans. 

Identify duplicate strings in an array using various methods.

  • Use a HashSet to track seen strings. Example: ['apple', 'banana', 'apple'] results in 'apple' as duplicate.

  • Sort the array and check adjacent elements. Example: ['apple', 'banana', 'apple'] becomes ['apple', 'apple', 'banana'].

  • Use a frequency map (dictionary) to count occurrences. Example: {'apple': 2, 'banana': 1} indicates 'apple' is a duplicate.

View all Senior Software 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
A Senior Technical Consultant was asked
Q. Write a function to calculate the factorial of a number.
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

View all Senior Technical Consultant interview questions
A Senior Technical Consultant was asked
Q. Write an SQL query to find the second 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

View all Senior Technical Consultant interview questions
A Senior Technical Consultant was asked
Q. Tell me about your experience with regular expression functions.
Ans. 

Regular expressions (regex) are powerful tools for pattern matching and text manipulation in programming and data processing.

  • Regex allows for complex string searches, such as validating email formats: `^[\w-\.]+@[\w-]+\.[a-z]{2,4}$`.

  • You can extract specific patterns from text, like finding dates: `\b\d{2}/\d{2}/\d{4}\b`.

  • Regex can replace substrings, e.g., removing extra spaces: `\s+` can be replaced with a single ...

View all Senior Technical Consultant interview questions
A Senior Software Engineer was asked
Q. What is the difference between Test and TestCase attributes in unit testing?
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.

View all Senior Software Engineer interview questions
Are these interview questions helpful?
A Node JS Developer was asked
Q. What are 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.

View all Node JS Developer interview questions
🔥 Asked by recruiter 2 times
A Node JS Developer was asked
Q. 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 flexibility, scalability, and resilience in large and complex applications.

  • Examples...

View all Node JS Developer interview questions
A Node JS Developer was asked
Q. 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, meanin...

View all Node JS Developer interview questions

Blue Yonder Interview Experiences for Experienced

26 interviews found

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
Easy
Process Duration
Less than 2 weeks
Result
No response

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

  • Q1. Questions on SOLID principles, OOPS concepts, constructors.
  • Q2. Find duplicate element in an array
  • Ans. 

    Identify duplicate strings in an array using various methods.

    • Use a HashSet to track seen strings. Example: ['apple', 'banana', 'apple'] results in 'apple' as duplicate.

    • Sort the array and check adjacent elements. Example: ['apple', 'banana', 'apple'] becomes ['apple', 'apple', 'banana'].

    • Use a frequency map (dictionary) to count occurrences. Example: {'apple': 2, 'banana': 1} indicates 'apple' is a duplicate.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep the basics right and you can crack the interview
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
  • Ans. 

    Regular expressions (regex) are powerful tools for pattern matching and text manipulation in programming and data processing.

    • Regex allows for complex string searches, such as validating email formats: `^[\w-\.]+@[\w-]+\.[a-z]{2,4}$`.

    • You can extract specific patterns from text, like finding dates: `\b\d{2}/\d{2}/\d{4}\b`.

    • Regex can replace substrings, e.g., removing extra spaces: `\s+` can be replaced with a single space...

  • Answered by AI

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

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

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Tell me about your project

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and answer everything, answer confidently. Most of the time the interviewer is not much qualified and will hire you based on your confidence

Consultant Interview Questions & Answers

user image Anonymous

posted on 1 Nov 2023

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

I applied via Campus Placement and was interviewed in Oct 2023. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Hard(dynamic programming questions)

Round 3 - Group Discussion 

Easy - topic related to supply chain

Round 4 - Technical 

(2 Questions)

  • Q1. Based on projects and past experience
  • Q2. Challenges in project
  • Ans. 

    Managing stakeholder expectations, resource constraints, scope changes, and communication issues are common challenges in projects.

    • Managing stakeholder expectations is crucial for project success

    • Dealing with resource constraints can impact project timelines and quality

    • Handling scope changes requires effective change management processes

    • Communication issues can lead to misunderstandings and delays

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

(2 Questions)

  • Q1. General knowledge and current affairs
  • Q2. Projects and sql queries
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. General leetcode medium question
Round 2 - Technical 

(1 Question)

  • Q1. Some more medium difficult leetcode questions.
Round 3 - HR 

(1 Question)

  • Q1. Salary and notice period negotiations, and explanation of the product I will be working on.

Plsql Developer Interview Questions & Answers

user image Karnataka Ramyasree

posted on 24 Apr 2024

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Write function to determine Factorial of given number? about cursors materialized view window functions Joins
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. About mulesoft processes and api design in mulesoft
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 in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. SQL related and app support questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company

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 for experienced candidates?
Blue Yonder interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Blue Yonder interview process for experienced candidates are Technical, HR and Resume Shortlist.
How to prepare for Blue Yonder interview for experienced candidates?
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 for experienced candidates?

Some of the top questions asked at the Blue Yonder interview for experienced candidates -

  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.

Overall Interview Experience Rating

4/5

based on 20 interview experiences

Difficulty level

Easy 19%
Moderate 81%

Duration

Less than 2 weeks 63%
2-4 weeks 38%
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 588 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 588 Reviews and Ratings
Senior Software Engineer
383 salaries
unlock blur

₹18.1 L/yr - ₹32.5 L/yr

Software Engineer
299 salaries
unlock blur

₹9.7 L/yr - ₹17 L/yr

Technical Consultant
249 salaries
unlock blur

₹5.8 L/yr - ₹14.9 L/yr

Senior Technical Consultant
203 salaries
unlock blur

₹10.3 L/yr - ₹32 L/yr

Senior Business Consultant
198 salaries
unlock blur

₹18 L/yr - ₹30 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