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

Clear (1)

Blue Yonder Lead Software Engineer Interview Questions, Process, and Tips

Updated 7 Apr 2023

Top Blue Yonder Lead Software Engineer Interview Questions and Answers

View all 6 questions

Blue Yonder Lead Software Engineer Interview Experiences

3 interviews found

I applied via Company Website and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. System Design, Trees
Round 2 - Technical 

(1 Question)

  • Q1. Coding, java, work experiences
Round 3 - Technical 

(1 Question)

  • Q1. Work Experience, Agile, Scrum
Round 4 - HR 

(1 Question)

  • Q1. 2 rounds of Salary Negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview will depend on the team for which you apply

I applied via Referral and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. Make a Java class immutable
  • Ans. 

    To make a Java class immutable, use final keyword and initialize all fields in constructor.

    • Use final keyword for class and all fields

    • Initialize all fields in constructor

    • Do not provide setter methods

    • Make sure to return a new instance in any method that modifies the state

  • Answered by AI
  • Q2. Check whether two strings are anagrams of each other
  • Ans. 

    Check if two strings are anagrams of each other

    • Create a character count array for both strings

    • Compare the character count arrays

    • If they are equal, the strings are anagrams

  • Answered by AI
  • Q3. List some REST endpoints for a ticket booking system
  • Ans. 

    REST endpoints for a ticket booking system

    • GET /events - get list of available events

    • GET /events/{id} - get details of a specific event

    • POST /events/{id}/tickets - book tickets for an event

    • GET /bookings - get list of all bookings

    • GET /bookings/{id} - get details of a specific booking

    • PUT /bookings/{id} - update a booking

    • DELETE /bookings/{id} - cancel a booking

  • Answered by AI
  • Q4. List top employees by salary from each department(basic Group By query)
  • Q5. What is pessimistic locking and optimistic locking?
  • Ans. 

    Pessimistic locking is when a resource is locked for a long time, while optimistic locking is when a resource is locked only when it is being modified.

    • Pessimistic locking involves locking a resource for a long time to prevent other users from accessing it.

    • Optimistic locking involves locking a resource only when it is being modified, allowing other users to access it in the meantime.

    • Pessimistic locking is useful when co...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Pretty basic and easy questions. Easy/ Medium Leetcode problems would suffice.

Skills evaluated in this interview

Lead Software Engineer Interview Questions Asked at Other Companies

asked in Freshworks
Q1. Square Root with Decimal Precision Problem Statement You are prov ... read more
asked in Freshworks
Q2. Vertical Order Traversal Problem Statement You are given a binary ... read more
asked in Epsilon
Q3. If we have 2 tables with the same schema, one table has indexes a ... read more
asked in Freshworks
Q4. Power Calculation Problem Statement Given a number x and an expon ... read more
asked in Freshworks
Q5. Longest Unique Substring Problem Statement Given a string input o ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Specific to your Programming language. data structures
  • Q2. Design for shorten url
  • Ans. 

    Shorten URL design involves generating a unique short code for a long URL to save space and improve usability.

    • Use a hashing algorithm to generate a unique short code for each URL

    • Store the mapping between short code and long URL in a database

    • Redirect users to the long URL when they access the short URL

    • Consider adding expiration time for short URLs to prevent abuse

    • Provide analytics to track usage of short URLs

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. More on design patterns
  • Q2. Java performance and query optimization in oracle
  • Ans. 

    Java performance and query optimization in Oracle

    • Use prepared statements to avoid SQL injection and improve performance

    • Use indexes to speed up query execution

    • Avoid using SELECT * and only select necessary columns

    • Use connection pooling to reuse database connections

    • Use caching to reduce database round trips

    • Tune database parameters like buffer cache and shared pool size

    • Use profiling tools to identify performance bottlenec

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Negotiations and offer discussions ,policies

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions are based on skillset and resume.
Prepare Data structures and algorithms ,design patterns

Skills evaluated in this interview

Lead Software Engineer Jobs at Blue Yonder

View all

Interview questions from similar companies

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Ans. 

    Find 5 missing numbers in an array of size 95 containing numbers in range 1 to 100.

    • Create a boolean array of size 100 and mark the present numbers

    • Iterate through the boolean array and find the missing numbers

    • Alternatively, use a HashSet to store the present numbers and find the missing ones

  • Answered by AI
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Solving puzzles(25 horses,ant and sweets,height of a building..) try as many as possible before appearing for interview
  • Q2. If experienced , then project details of previous companies a must prepare question
  • Q3. Writing test cases for random scenarios
  • Q4. Programming in whatsoever language you r comfortable with, basic coding problems of DS,Algos. eg. Zigzag tree traversal algo,random linked list copy
  • Q5. Some people asked me questions related to the work i will do if hired in the project
  • Q6. Be genuine in ur CV, and be prepared with everything you write there.

Interview Preparation Tips

College Name: Na
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Coupa and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

15 MCQs of two different sessions. They also has session isolated timings.

Round 2 - Coding Test 

3 Coding questions of easy and medium level.

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

I applied via LinkedIn and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Aptitude+3 easy to medium level coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Linked List & DSA questions on strings
Round 3 - Technical 

(1 Question)

  • Q1. Resume + DSA questions
Round 4 - Technical 

(1 Question)

  • Q1. Non technical+ System design basics + DSA

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare system design basics

I applied via LinkedIn and was interviewed in Aug 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Simple java, Jsf technology, Nothing much

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't Join in PSO.if you want a better work life balance.
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Core java, WMS knowledge if any.

Interview Preparation Tips

Interview preparation tips for other job seekers - Core java is more than enough. WMS knowledge is a plus.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. About OOPS concept, basic SQL questions, core Java questions
Round 3 - Technical 

(1 Question)

  • Q1. Core Java questions, simple coding questions, SQL questions.
Round 4 - Behavioral 

(3 Questions)

  • Q1. Asked about the work I did in previous company, what are my strengths?, Discussed regarding current job roles and responsibilities Puzzle questions
  • Q2. How to pour exact half water from one container to other without knowing the measurements?
  • Ans. 

    Use the tilt method to pour exact half water from one container to other without measurements.

    • Fill both containers with water

    • Tilt one container slowly until water reaches the halfway mark

    • Stop pouring when the water level reaches halfway in the other container

  • Answered by AI
  • Q3. A dog fell into 30 feet well, trying to climb up to the ground. It will climb 3 feets a day, but in night it will drop 2 feets, So how many days do dog required to reach ground?
  • Ans. 

    The dog will take 28 days to reach the ground.

    • The dog climbs 1 foot (3 feet climb - 2 feet drop) each day.

    • It needs to climb 30 feet to reach the ground.

    • So, it will take 30 days to climb 30 feet, but it will already be on the ground on the 28th day.

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Discussed about why I am leaving the previous company, About salary, Date of joining.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviews will be easy, they just check whether we know about concept, whether we try to solve problems...
Contribute & help others!
anonymous
You can choose to be anonymous

Blue Yonder Interview FAQs

How many rounds are there in Blue Yonder Lead Software Engineer interview?
Blue Yonder interview process usually has 4 rounds. The most common rounds in the Blue Yonder interview process are Technical, HR and Resume Shortlist.
How to prepare for Blue Yonder Lead Software Engineer 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 RDBMS, Hibernate, Automation, Coding and GIT.
What are the top questions asked in Blue Yonder Lead Software Engineer interview?

Some of the top questions asked at the Blue Yonder Lead Software Engineer interview -

  1. What is pessimistic locking and optimistic locki...read more
  2. Check whether two strings are anagrams of each ot...read more
  3. List some REST endpoints for a ticket booking sys...read more

Recently Viewed

INTERVIEWS

ElectrifAi

No Interviews

INTERVIEWS

Saudi Aramco

No Interviews

INTERVIEWS

Blue Yonder

No Interviews

INTERVIEWS

Daimler Truck

No Interviews

INTERVIEWS

Toyo Engineering

No Interviews

INTERVIEWS

Apar Industries

No Interviews

INTERVIEWS

Blue Yonder

No Interviews

INTERVIEWS

ElectrifAi

No Interviews

INTERVIEWS

Blue Yonder

No Interviews

INTERVIEWS

Daimler Truck

No Interviews

Tell us how to improve this page.

Blue Yonder Lead Software Engineer 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
 • 905 Interviews
SAP Interview Questions
4.2
 • 309 Interviews
Adobe Interview Questions
3.9
 • 252 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Globant Interview Questions
3.8
 • 173 Interviews
Dassault Systemes Interview Questions
4.0
 • 160 Interviews
VMware Software Interview Questions
4.4
 • 158 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
NCR Voyix Interview Questions
3.9
 • 124 Interviews
ServiceNow Interview Questions
4.1
 • 120 Interviews
View all
Blue Yonder Lead Software Engineer Salary
based on 144 salaries
₹16.3 L/yr - ₹46 L/yr
33% more than the average Lead Software Engineer Salary in India
View more details

Blue Yonder Lead Software Engineer Reviews and Ratings

based on 8 reviews

3.9/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

3.1

Salary

3.9

Job security

3.7

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 8 Reviews and Ratings
Lead Software Engineer -

Bangalore / Bengaluru

5-9 Yrs

Not Disclosed

Lead Software Engineer-Java, Spring, No Sql

Hyderabad / Secunderabad,

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

Lead Software Engineer - ReactJS, Redux & Flux

Hyderabad / Secunderabad

5-11 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
364 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Consultant
261 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
232 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Consultant
191 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Business Consultant
178 salaries
unlock blur

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