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 React Js Frontend Developer Interview Questions and Answers

Updated 5 Mar 2025

Blue Yonder React Js Frontend Developer Interview Experiences

1 interview found

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

I appeared for an interview in Sep 2024.

Round 1 - Technical 

(1 Question)

  • Q1. 2 simple dsa questions and asked about javascript and react questions
Round 2 - Technical 

(1 Question)

  • Q1. Asked react advance concepts and one machiene coding round

Interview Preparation Tips

Interview preparation tips for other job seekers - I thought it was a front end interview but after completing the 2nd round they told me they are looking for a candidate who having knowledge of back end as well

What people are saying about Blue Yonder

View All
a software engineer
6d
Notice period hell
I want some advice related to notice period. Recent trend that I observed these days is that companys almost always are looking for immediate joiners or below 1 month notice period. I have 2 months notice period. My resume is not even getting shortlisted for any interview. The resume is all perfect with keywords, ATS. But all calls I get ask for notice period or last working day and start ghosting. What can be done .. 😮‍💨? I know there are people with 3 months notice. I can only guess what they would go through.
Got a question about Blue Yonder?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Print even and odd numbers using two threads in Java
  • Ans. 

    Printing even and odd numbers using two threads in Java

    • Create two threads, one for even numbers and one for odd numbers

    • Use a loop to iterate through the numbers and print them

    • Use synchronization to ensure alternate printing of even and odd numbers

    • Use wait() and notify() methods to control the execution of threads

  • Answered by AI

Skills evaluated in this interview

React Js Frontend Developer Interview Questions Asked at Other Companies

asked in Simform
Q1. 1. What is difference between abstract class and interface ?
asked in Simform
Q2. What is the difference between a primary key and a unique key?
asked in Simform
Q3. What is an arrow function in JavaScript?
asked in TCS
Q4. How can we mimic lifecycle methods using useEffect in functional ... read more
asked in Simform
Q5. 5. Why we require interface and what is interface in java ?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Aug 2023. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Medium data structure problem was given and asked to solve. System design questions was asked.

Round 3 - Coding Test 

Medium data structure problem was asked. Java questions were asked and previous projects were discussed.

Round 4 - System Design 

(3 Questions)

  • Q1. System Design question was asked. Java concepts were asked.
  • Q2. Java Concepts were asked.
  • Q3. Previous projects were discussed.
Round 5 - Behavioral 

(1 Question)

  • Q1. Previous projects were discussed. Roles and responsibilities were discussed.

Interview Preparation Tips

Topics to prepare for ServiceNow Senior Software Developer interview:
  • Data Structures
  • Algorithms
  • System Design
  • Java
Interview preparation tips for other job seekers - Prepare well and it becomes easy to crack.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. All about react
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. What is the purpose of using a constant reference in a copy constructor in C++?
  • Ans. 

    Using a constant reference in a copy constructor avoids unnecessary copying and ensures the original object remains unchanged.

    • Efficiency: Passing by constant reference prevents the overhead of copying large objects, improving performance.

    • Const Correctness: It ensures that the original object cannot be modified, maintaining the integrity of the data.

    • Syntax Example: In a copy constructor, you might see 'ClassName(const C...

  • Answered by AI
  • Q2. What is the mechanism of runtime polymorphism?
  • Ans. 

    Runtime polymorphism allows methods to be invoked at runtime based on the object's type, enabling dynamic method resolution.

    • Achieved through method overriding in inheritance.

    • Example: A base class 'Animal' has a method 'sound()', overridden by 'Dog' and 'Cat'.

    • The method invoked depends on the object type at runtime.

    • Facilitates code flexibility and reusability.

    • Commonly used in frameworks and libraries for dynamic behavio...

  • Answered by AI
  • Q3. What is the process for creating a custom string class using char* in coding?
  • Ans. 

    Creating a custom string class using char* involves managing memory, constructors, destructors, and operator overloading.

    • Memory Management: Use dynamic memory allocation (e.g., new and delete) to manage the char* array, ensuring proper allocation and deallocation.

    • Constructor: Implement a constructor to initialize the string from a char* input, copying the content and allocating necessary memory.

    • Destructor: Define a des...

  • Answered by AI
  • Q4. What is the minimum number of weighings required to identify the person with a different weight among nine individuals, where eight have equal weight and one has a different weight, using a balance scale?
  • Q5. What is the method for projecting one vector onto another vector?
  • Ans. 

    Vector projection involves calculating the component of one vector along another using dot products.

    • The formula for projecting vector A onto vector B is: proj_B(A) = (A · B / B · B) * B.

    • Here, A · B represents the dot product of vectors A and B.

    • The result is a vector that points in the direction of B and has a magnitude equal to the component of A in that direction.

    • Example: If A = (3, 4) and B = (1, 0), then proj_B(A) =...

  • Answered by AI
  • Q6. Given the product of the ages of two individuals is a certain number and both individuals are eligible to vote, how can one determine the ages of each individual?

I applied via Naukri.com and was interviewed in Aug 2022. There were 2 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 tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Core deep concepts of c++ and few basic coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with the concepts of c++ and dsa
Also be precise with your past experience and vocal about the things you've achieved and learnt.
Round 1 - Technical 

(2 Questions)

  • Q1. Reverse a string without any library function.
  • Ans. 

    Reverse a string without any library function.

    • Create an empty string to store the reversed string

    • Loop through the original string from end to start

    • Append each character to the empty string

    • Return the reversed string

  • Answered by AI
  • Q2. About current project and it's architecture. Challenges you've faced in current project and how did you've solved it. Basic of OOPS
Round 2 - Mangerial 

(1 Question)

  • Q1. Personality check, tell me something about yourself which is not there in CV

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with current project architecture....easy data structure problem solving skills and groom your concepts in programming language you use.
Are these interview questions helpful?

I appeared for an interview in Aug 2016.

Interview Preparation Tips

Round: Test
Experience: The questions were tricky. We were given a paragraph and after reading it, a statement was given to us and we were asked to say if it is true, false or cannot say. The structure of the statement put us into a a tough place. So practice of such kind of questions is necessary.

For data interpretation questions a good hand on basic statistical mathematics is needed. One has to be quick because of the time crunch. The questions were approachable

Round: Technical Interview
Experience: In this round my resume was scanned and I was required to speak about myself, my projects and explain certain areas of my resume. The interviewer picked up one of my basic project, surprisingly, and asked me to elaborate on it. He asked me how I can improve the project. And I had to write a code to make that change. Basically, one should have a good idea about the projects they've done/ mentioned in their resume. And know it in detail.

Few questions on data structures. Prepare well for coding type questions and data structures.

Round: Puzzle Interview
Experience: The interviewer asked me two puzzles. They were moderate level. And also luckily he was helpful whenever I got stuck.

Round: HR Interview
Experience: HR round was good. Basic questions like " tell me more about yourself", brief information about my past history, college life, extra curricular activities. In the end she asked me, "should we hire you?" And I lightly answered " why not!" So it was a good interview overall.

Skills: Coding Skills, Team Working Ability, Project management
College Name: Visvesvaraya National Institute Of Technology

Interview Preparation Tips

General Tips: Try to be confident and smart about your answers. This interview was the most chill interview I ever gave, the interviewer was having more of a discussion than a question-answer session.
Skill Tips: Try to be very good at this subject if you are targeting this company. Challenging algorithm questions were also asked but they were not too hard. A fine knowledge of Java could give you an edge over other candidates.
Skills: VmWare mainly focuses on Operating System.
College Name: NIT SURATHKAL

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Technical Interview round with questions on DSA.

  • Q1. 

    Reverse Words in a String: Problem Statement

    You are given a string of length N. Your task is to reverse the string word by word. The input may contain multiple spaces between words and may have leading o...

  • Ans. 

    Reverse words in a string while handling leading, trailing, and multiple spaces.

    • Split the input string by spaces to get individual words

    • Reverse the order of the words

    • Join the reversed words with a single space in between

    • Handle leading, trailing, and multiple spaces appropriately

  • Answered by AI
  • Q2. 

    Reverse a Stack Using Recursion

    You are given a stack of integers. Your task is to reverse the stack using recursion without using any extra space other than the internal stack space used due to recursion...

  • Ans. 

    Reverse a stack using recursion without using any extra space other than the internal stack space.

    • Use recursion to pop all elements from the original stack and store them in function call stack.

    • Once the stack is empty, push the elements back in reverse order.

    • Base case of recursion should be when the original stack is empty.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Technical Interview round with questions on DSA.

  • Q1. 

    Convert a Binary Tree to its Mirror Tree

    Given a binary tree, convert this binary tree into its mirror tree. A binary tree is a tree in which each parent node has at most two children. The mirror of a bin...

  • Ans. 

    Convert a binary tree to its mirror tree by interchanging left and right children of all non-leaf nodes.

    • Traverse the binary tree in a recursive manner.

    • Swap the left and right children of each non-leaf node.

    • Continue this process until all nodes have been processed.

  • Answered by AI
  • Q2. 

    Remove Nth Node from End of Linked List

    You are given a singly linked list with 'N' nodes, each containing integer data, and an integer 'K'. Your goal is to remove the 'K'th node counting from the end of ...

  • Ans. 

    Remove the Kth node from the end of a singly linked list.

    • Use two pointers approach to find the Kth node from the end.

    • Handle edge cases like removing the head node or removing the last node.

    • Update the pointers to remove the Kth node and reconnect the list.

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical Managerial round.

Interview Preparation Tips

Eligibility criteriaAbove 6 months of experience24/7 customer private limited interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Blue Yonder Interview FAQs

How many rounds are there in Blue Yonder React Js Frontend Developer interview?
Blue Yonder interview process usually has 2 rounds. The most common rounds in the Blue Yonder interview process are Technical.

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Moderate 100%
View more
Join Blue Yonder Innovative supply chain solutions.

Interview Questions from Similar Companies

Adobe Interview Questions
3.9
 • 248 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
 • 113 Interviews
Atlassian Interview Questions
3.4
 • 92 Interviews
View all
Senior Software Engineer
384 salaries
unlock blur

₹18.1 L/yr - ₹32.8 L/yr

Software Engineer
301 salaries
unlock blur

₹9.8 L/yr - ₹17 L/yr

Technical Consultant
271 salaries
unlock blur

₹6.9 L/yr - ₹21.3 L/yr

Senior Technical Consultant
202 salaries
unlock blur

₹16.6 L/yr - ₹30 L/yr

Senior Business Consultant
199 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