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

Blue Yonder Technical Support Engineer Interview Questions and Answers

Updated 15 Nov 2024

Blue Yonder Technical Support Engineer Interview Experiences

2 interviews found

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
Easy
Process Duration
2-4 weeks
Result
-

I was interviewed before Nov 2023.

Round 1 - Technical 

(2 Questions)

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

  • Answered by AI
  • Q2. Explains 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

  • Answered by AI

Skills evaluated in this interview

Technical Support Engineer Interview Questions Asked at Other Companies

asked in Salesforce
Q1. Admin Questions :- What is Relationships what are types of relati ... read more
asked in Zoho
Q2. Send an email to customer apologising the mistake made by the rep ... read more
asked in Salesforce
Q3. How you will get contact of account with name starting with abc.
Q4. What are the steps which you will follow if a customer calls and ... read more
Q5. How to release previous IP which assign to your device?

Interview questions from similar companies

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 Dec 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Support Role Questions 1) Like explaining a case which was done in your previous role and experience
  • Q2. Questions on Javascript
Round 2 - One-on-one 

(1 Question)

  • Q1. Technical Interview questions on Javascript, HTML, CSS and behavioural
Round 3 - Behavioral 

(1 Question)

  • Q1. Manager Questions based on Position and previous work experience.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How does internet works
  • Q2. HTTP codes SQL troubleshooting
Round 2 - Technical 

(1 Question)

  • Q1. SQL python java
Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiations
  • Q2. Work shifts questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Few linux commands
  • Q2. Explain few, Any command for example
  • Ans. 

    Some common commands for technical support engineers include ping, ipconfig, and tracert.

    • Ping: Used to test the reachability of a host on an IP network.

    • Ipconfig: Displays all current TCP/IP network configuration values.

    • Tracert: Shows the route that packets take to reach a specified destination.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself and past experiences
Round 2 - Technical 

(1 Question)

  • Q1. Linux environment, hardware issues, navigation in linux, logs.
Round 3 - Behavioral 

(1 Question)

  • Q1. Discussion about past experience and current roll
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Question related to L3 and L2 topics
Round 2 - HR 

(1 Question)

  • Q1. Salary expectation. Relocation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well what we have mentioned in the resume
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 

(2 Questions)

  • Q1. Basic Linux in-depth
  • Q2. Final year Project review and discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and be your self. Make your introduction tell all about your self.

I applied via Referral and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. If I open www.google.com, explain what goes on in the background.
  • Ans. Explain the process from the scratch. DNS, TCP, SSL, and HTTP requests to google.com. The browser makes a DNS connection to get the IP address (explain the full process, recursive query), makes a TCP connection to the IP address (explain the handshake). Then since google is on HTTPS, a TLS handshake happens (Explain the full flow). Then, an HTTP GET request is made by the browser to fetch the page.
  • Answered by Md. Tahseen khan
  • Q2. Few differences between HTTP 1.0 and 1.1. You may want to check HTTP2 as well.
  • Ans. 

    HTTP 1.1 introduced persistent connections, chunked transfer encoding, and improved caching.

    • HTTP 1.1 allows multiple requests over a single connection

    • HTTP 1.1 supports chunked transfer encoding for better handling of large data

    • HTTP 1.1 introduced improved caching mechanisms

    • HTTP 2.0 uses binary framing instead of text-based framing in HTTP 1.x

  • Answered by AI
  • Q3. Read about caching headers thoroughly and their differences. Like the difference between no-store and no-cache.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with HTTP, DNS and SSL

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. How to solve the error in the code? what is scope? what are logical operators?
  • Ans. 

    Scope refers to the visibility and accessibility of variables in a program. Logical operators are used to perform logical operations in code.

    • Scope in programming refers to where in the code a variable can be accessed. It can be global, local, or block scope.

    • To solve an error in the code, first identify the error message or behavior causing the issue. Then, debug the code by checking for syntax errors, logical errors, o...

  • Answered by AI
  • Q2. How will you get the data in the table using js? what are the other ways to print the output? what is a block in js?
  • Ans. 

    To get data in a table using js, you can use DOM manipulation methods like getElementById or querySelector. Other ways to print output include console.log and innerHTML. A block in js is a set of statements enclosed in curly braces.

    • Use getElementById or querySelector to get data in a table using js

    • Other ways to print output include console.log and innerHTML

    • A block in js is a set of statements enclosed in curly braces,

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. About ServiceNow? About the technical role in my previous company? previous job roles and responsibilities? Why do you want to switch from previous company? How will you handle the challenges here in servi...
  • Q2. Why do I want to switch from my previous company?
  • Ans. 

    Seeking new challenges and growth opportunities in a different environment.

    • Looking for new challenges and opportunities for growth

    • Interested in gaining experience in a different industry or technology

    • Seeking a better work-life balance or company culture

    • Wanting to work with a different team or leadership style

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview went well, but I didn't receive any feedback beyond the rejection. I hope to get some insights into the reasons for the decision, as it would help to learn for next time. I'll definitely try again!

Skills evaluated in this interview

Blue Yonder Interview FAQs

How many rounds are there in Blue Yonder Technical Support Engineer interview?
Blue Yonder interview process usually has 1 rounds. The most common rounds in the Blue Yonder interview process are One-on-one Round and Technical.
How to prepare for Blue Yonder Technical Support 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 GCP, MongoDB, NoSQL, Open Source and Performance Testing.
What are the top questions asked in Blue Yonder Technical Support Engineer interview?

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

  1. explains Joins in ...read more
  2. write a For l...read more
  3. About mulesoft processes and api design in mules...read more

Tell us how to improve this page.

Blue Yonder Technical Support Engineer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more
Join Blue Yonder Innovative supply chain solutions.
Blue Yonder Technical Support Engineer Salary
based on 42 salaries
₹2.3 L/yr - ₹9 L/yr
11% more than the average Technical Support Engineer Salary in India
View more details

Blue Yonder Technical Support Engineer Reviews and Ratings

based on 7 reviews

4.8/5

Rating in categories

4.3

Skill development

4.6

Work-life balance

4.5

Salary

4.6

Job security

4.6

Company culture

4.2

Promotions

4.6

Work satisfaction

Explore 7 Reviews and Ratings
Senior Software Engineer
364 salaries
unlock blur

₹10.8 L/yr - ₹36 L/yr

Technical Consultant
261 salaries
unlock blur

₹4.8 L/yr - ₹18.3 L/yr

Software Engineer
234 salaries
unlock blur

₹5.5 L/yr - ₹20 L/yr

Senior Technical Consultant
189 salaries
unlock blur

₹9.1 L/yr - ₹29 L/yr

Senior Business Consultant
178 salaries
unlock blur

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