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 516 Reviews

Filter interviews by

Blue Yonder Software Engineer Interview Questions and Answers

Updated 10 Nov 2024

Blue Yonder Software Engineer Interview Experiences

3 interviews found

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.
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

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
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.

Software Engineer Jobs at Blue Yonder

View all

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(5 Questions)

  • Q1. Explain OOPS concept and how you apply it in your implementation
  • Ans. 

    OOPS is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPS focuses on the concept of classes and objects

    • Encapsulation: bundling data and methods that operate on the data within a single unit

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for diffe...

  • Answered by AI
  • Q2. Difference between Comparable and Comparator. Difference between Abstract Class and Interface
  • Ans. 

    Comparable is an interface used for natural ordering, Comparator is an interface used for custom ordering. Abstract class can have method implementations, Interface cannot.

    • Comparable interface is used to define the natural ordering of objects. Example: String class implements Comparable interface for natural ordering based on alphabetical order.

    • Comparator interface is used to define custom ordering of objects. Example:...

  • Answered by AI
  • Q3. Given a string. Find the number of occurrences of each character
  • Ans. 

    Count occurrences of each character in a given string

    • Create an array to store the count of each character

    • Iterate through the string and increment the count of each character in the array

    • Return the array with counts for each character

  • Answered by AI
  • Q4. Given an array. Remove the number of duplicates
  • Ans. 

    Remove duplicates from an array of strings

    • Iterate through the array and store each element in a set to keep track of unique values

    • Create a new array with the unique values from the set

  • Answered by AI
  • Q5. Given a student object having name and grade data variables. Sort the object on the basis of highest grade.

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

The coding test consists of multiple-choice questions and one medium-hard level coding question.

Round 2 - Technical 

(5 Questions)

  • Q1. Given three jugs with different capacities and no measuring tools, how can you measure out a specific amount of water using the jugs you have?
  • Q2. What is the angle between the minute and hour hand of a clock at 3:45?
  • Ans. 

    The angle between the minute and hour hand of a clock at 3:45 is 157.5 degrees.

    • Calculate the angle formed by the hour hand from 12 o'clock position to 3:45 position (135 degrees)

    • Calculate the angle formed by the minute hand from 12 o'clock position to 3:45 position (22.5 degrees)

    • Subtract the smaller angle from the larger angle to get the angle between the two hands (157.5 degrees)

  • Answered by AI
  • Q3. What is indexing in Database Management Systems (DBMS)?
  • Ans. 

    Indexing in DBMS is a technique used to improve the performance of queries by allowing faster retrieval of data.

    • Indexes are data structures that store a small portion of the data set in an easily searchable format.

    • They help in speeding up the data retrieval process by reducing the number of disk accesses needed.

    • Indexes can be created on one or more columns of a table to improve the performance of SELECT queries.

    • Example...

  • Answered by AI
  • Q4. What is the lifecycle of a React component?
  • Ans. 

    The lifecycle of a React component includes mounting, updating, and unmounting phases.

    • Mounting phase: constructor, render, componentDidMount

    • Updating phase: shouldComponentUpdate, render, componentDidUpdate

    • Unmounting phase: componentWillUnmount

  • Answered by AI
  • Q5. How you delete entry in mongodb database
  • Ans. 

    To delete an entry in MongoDB database, you can use the deleteOne() or deleteMany() methods.

    • Use deleteOne() method to delete a single document based on a specific condition

    • Use deleteMany() method to delete multiple documents based on a specific condition

    • Make sure to specify the filter criteria to accurately delete the desired entry

  • Answered by AI

Software Engineer Interview Questions & Answers

Amadeus user image Atul Singh Jamwal

posted on 18 Jun 2024

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

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Why you want to join Amadeus
  • Q2. WHy left the previous company
  • Q3. What do you know about Amadeus
  • Q4. Why we should pay you this much

Interview Preparation Tips

Interview preparation tips for other job seekers - Do study more about Amadues
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Javascript and Nodejs concepts
Round 2 - Technical 

(1 Question)

  • Q1. Nodejs + React concepts in depth
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Project details question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 tips
Round 2 - Technical 

(1 Question)

  • Q1. LRU Cache question and couple on array
Round 3 - Technical 

(1 Question)

  • Q1. System Design question related to Lift
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial, project related and SQL
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Manipal Institute of Technology (MIT) and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 coding questions with difficulty level easy to medium and duration was 1hr in HackerEarth.

Round 2 - Technical 

(2 Questions)

  • Q1. This round went very well, panelist asked basic coding questions and one logic question.
  • Q2. 1. reverse a string 2. find the 2nd max value in a array 3. write a code for BST
  • Ans. 

    This JSON response provides answers to three interview questions for a Software Engineer position.

    • To reverse a string, you can use built-in string manipulation functions or iterate through the string and swap characters from both ends.

    • To find the 2nd max value in an array, you can sort the array in descending order and return the element at index 1.

    • To write a code for a Binary Search Tree (BST), you need to define a No...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. This round is mostly based on my resume based question
  • Q2. What projects have you done and asked about internship where I have worked recently.

Blue Yonder Interview FAQs

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

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

  1. Experince in developing mobile a...read more
  2. Some more medium difficult leetcode questio...read more
  3. General leetcode medium quest...read more

Tell us how to improve this page.

Blue Yonder Software Engineer Interview Process

based on 5 interviews

1 Interview rounds

  • Technical Round
View more
Blue Yonder Software Engineer Salary
based on 233 salaries
₹5 L/yr - ₹20 L/yr
39% more than the average Software Engineer Salary in India
View more details

Blue Yonder Software Engineer Reviews and Ratings

based on 38 reviews

3.8/5

Rating in categories

3.1

Skill development

3.9

Work-life balance

3.3

Salary

3.7

Job security

3.7

Company culture

2.8

Promotions

3.1

Work satisfaction

Explore 38 Reviews and Ratings
Software Engineer

Bangalore / Bengaluru

3-7 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
371 salaries
unlock blur

₹12 L/yr - ₹36 L/yr

Technical Consultant
264 salaries
unlock blur

₹4.5 L/yr - ₹18.9 L/yr

Software Engineer
233 salaries
unlock blur

₹5 L/yr - ₹20 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.7
Compare

Oracle

3.7
Compare

Infor Global Solution

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