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

Filter interviews by

Blue Yonder Senior Staff System Engineer Interview Questions and Answers

Updated 22 Oct 2024

Blue Yonder Senior Staff System Engineer Interview Experiences

1 interview found

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 questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I was interviewed in Sep 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. Data structures, dynamic programming, string interleaved
  • Q2. Data structures, Longest palindromic substring
  • Q3. Data structures, simulate Write-Back Cache using two python dictionaries with dirty bit implementation and LRU flushing technique on cache full.
  • Ans. 

    Simulate Write-Back Cache using two python dictionaries with dirty bit and LRU flushing technique.

    • Create two dictionaries, one for cache data and one for dirty bit tracking.

    • Implement LRU flushing technique to remove least recently used data when cache is full.

    • Set dirty bit to mark data that has been modified and needs to be written back to main memory.

    • Update dirty bit when data is modified and track which data needs to...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Some random questions on system concepts such as SAN/NAS storage, File system, Caching, NFS, SMB
  • Q2. Some random questions on virtualization technologies e.g.VMware Esxi, vmotion, HA, vsan etc
Round 3 - Technical 

(2 Questions)

  • Q1. System design, Logging server and log searching application.
  • Q2. System Design, storage monitoring and reporting dashboard using any cloud provider AWS, GCP or Azure.
Round 4 - Technical 

(2 Questions)

  • Q1. CI/CD Pipeline, Kubernetes, Dockers related questions.
  • Q2. Git commands, Got scenarios and branching strategies.
Round 5 - Analytical 

(1 Question)

  • Q1. Few questions to evaluate analytical skills from given report and statistical historical data. A descriptive problem statement in detail.
Round 6 - HR 

(1 Question)

  • Q1. Behavioral questions

Skills evaluated in this interview

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

I was interviewed in Oct 2024.

Round 1 - One-on-one 

(3 Questions)

  • Q1. File system implementation question
  • Q2. Implement method which returns total usage
  • Ans. 

    Implement a method to return total usage

    • Create a method that calculates the total usage by summing up individual usage values

    • Ensure the method can handle different types of usage data (e.g. integers, floats)

    • Consider implementing error handling for invalid input data

    • Test the method with sample data to verify its accuracy

  • Answered by AI
  • Q3. A file will have special tag call container , list all the k container with max usgae
  • Ans. 

    List all containers with max usage of the special tag 'container'.

    • Identify all containers with the special tag 'container'.

    • Calculate the usage of each container.

    • Find the container(s) with the maximum usage.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Search and sort alogorithm, remove duplicate item in array and how many times its repeated

Round 2 - Technical 

(1 Question)

  • Q1. Rotate array with how many times the array was rotated. testing questions. team management questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - algorithm focused. leet code would be the best source for preparation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Related to Software Testing Process Coding questions Puzzle
  • Q2. How to get individual character from string
  • Ans. 

    Use indexing to access individual characters from a string.

    • Use square brackets and the index number to access a specific character in the string.

    • Remember that indexing starts at 0 in most programming languages.

    • Example: str = 'hello', to get the first character 'h', use str[0].

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

(1 Question)

  • Q1. Coding Questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Find the first 50 prime numbers
  • Ans. 

    Generate the first 50 prime numbers

    • Start with the first prime number, 2

    • Use a loop to check for prime numbers by dividing each number by all numbers less than it

    • Keep track of the prime numbers found until you have 50

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Tags management
Round 1 - One-on-one 

(1 Question)

  • Q1. Data Structures, Core Java
Round 2 - One-on-one 

(1 Question)

  • Q1. Spring boot, Microservices

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basic programs. Basic unit tests. Basic Rest API
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Number of islands in a matrix

Round 2 - Case Study 

Design data recovery system

Interview Preparation Tips

Interview preparation tips for other job seekers - Study DS Algo
They ask multiple variation of same question

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is webservice?
  • Ans. 

    A webservice is a software system designed to support interoperable machine-to-machine interaction over a network.

    • Webservices use standardized protocols such as HTTP, XML, SOAP, and REST.

    • They allow different applications to communicate with each other regardless of the programming language or platform used.

    • Webservices can be used for a variety of purposes such as data exchange, business process integration, and applica...

  • Answered by AI
  • Q2. What is Difference between API and Webservice
  • Ans. 

    API is a set of protocols for building software while Webservice is a type of API that uses HTTP for communication.

    • API is a set of protocols for building software applications

    • Webservice is a type of API that uses HTTP for communication

    • API can be used for both internal and external communication

    • Webservice is typically used for external communication over the internet

    • API can be in any form like REST, SOAP, etc.

    • Webservice

  • Answered by AI
  • Q3. What is pesticide paradox in testing
  • Ans. 

    Pesticide paradox refers to the phenomenon where pests develop resistance to pesticides over time.

    • Pesticides are used to kill pests, but over time pests develop resistance to them

    • This happens because the pests that are resistant to the pesticide survive and reproduce, passing on their resistance to their offspring

    • This can lead to the need for stronger and more toxic pesticides, which can have negative environmental and...

  • Answered by AI
  • Q4. Star pattern and palindrome Java program

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Java, OOPS and web services concepts.

Skills evaluated in this interview

Blue Yonder Interview FAQs

How many rounds are there in Blue Yonder Senior Staff System Engineer interview?
Blue Yonder interview process usually has 1 rounds. The most common rounds in the Blue Yonder interview process are Technical.

Tell us how to improve this page.

Blue Yonder Senior Staff System Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 897 Interviews
SAP Interview Questions
4.2
 • 308 Interviews
Adobe Interview Questions
4.0
 • 249 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Globant Interview Questions
3.8
 • 170 Interviews
Dassault Systemes Interview Questions
4.0
 • 159 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
VMware Software Interview Questions
4.4
 • 157 Interviews
NCR Voyix Interview Questions
3.9
 • 124 Interviews
ServiceNow Interview Questions
4.2
 • 118 Interviews
View all
Senior Software Engineer
369 salaries
unlock blur

₹10.8 L/yr - ₹36 L/yr

Technical Consultant
264 salaries
unlock blur

₹4.5 L/yr - ₹18.9 L/yr

Software Engineer
230 salaries
unlock blur

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