Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Amazon Transportation Services Senior Technical Support Engineer 2 Interview Questions and Answers

Updated 18 Feb 2025

Amazon Transportation Services Senior Technical Support Engineer 2 Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Router congratulations trablsutiong switch congratulations fiber related network engineer
  • Q2. Switch congratulations all network issues resolved Lan and wan network
  • Ans. 

    The LAN and WAN network issues have been resolved successfully.

    • Identify and troubleshoot the root cause of the network issues

    • Implement necessary fixes or configurations to resolve the issues

    • Test the network connections to ensure stability and functionality

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Switch congratulations fiber router congratulations onu divace congratulations trablsutiong

Interview questions from similar companies

I applied via Walk-in and was interviewed before Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Prime number star pattern Js basics form validations

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn all basics of JS and node
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. About the experience and what I did
Round 2 - Coding Test 

Give me a palindrom of string related question

Round 3 - Technical 

(1 Question)

  • Q1. System design based on how to scale something
  • Ans. 

    To scale a system, consider horizontal and vertical scaling, load balancing, caching, database sharding, and microservices architecture.

    • Implement horizontal scaling by adding more instances of the application to distribute the load.

    • Consider vertical scaling by upgrading the hardware resources of the existing server.

    • Use load balancing to evenly distribute incoming network traffic across multiple servers.

    • Implement cachin...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Feb 2022. There were 3 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 

(1 Question)

  • Q1. Given a string, find the longest length palindromic substring in the given string.
  • Ans. 

    Find the longest palindromic substring in a given string.

    • Use dynamic programming to solve the problem efficiently.

    • Start with the base cases of single characters and two characters.

    • For longer substrings, check if the first and last characters match and if the substring between them is also a palindrome.

    • Keep track of the longest palindrome seen so far.

    • Time complexity: O(n^2), space complexity: O(n^2).

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Mention the most challenging technical problem you had to solve.
  • Ans. 

    Developing a real-time data processing system for a high-traffic website.

    • Designing a scalable architecture to handle the high volume of incoming data.

    • Optimizing the data processing algorithms to minimize latency.

    • Ensuring data consistency and accuracy in a distributed system.

    • Implementing fault-tolerant mechanisms to handle system failures.

    • Testing and debugging the system under various load conditions.

  • Answered by AI
  • Q2. Some minor low level entity design.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice DSA, some design patterns and low level design properly

Skills evaluated in this interview

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 120 minutes
Round difficulty - Medium

Due to pandemic placement process went virtual. Test was conducted at 10 A.M.

  • Q1. 

    Decode String Problem Statement

    Your task is to decode a given encoded string back to its original form.

    Explanation:

    An encoded string format is <count>[encoded_string], where the 'encoded_string...

  • Ans. 

    The task is to decode an encoded string back to its original form by repeating the encoded string 'count' times.

    • Parse the input string to extract the count and the encoded string within the brackets

    • Use recursion to decode the encoded string by repeating it 'count' times

    • Handle nested encoded strings by recursively decoding them

    • Output the decoded string for each test case

  • Answered by AI
  • Q2. 

    Detect and Remove Loop in Linked List

    For a given singly linked list, identify if a loop exists and remove it, adjusting the linked list in place. Return the modified linked list.

    Expected Complexity:

    A...

  • Ans. 

    Detect and remove loop in a singly linked list in place with O(n) time complexity and O(1) space complexity.

    • Use Floyd's Cycle Detection Algorithm to identify the loop in the linked list.

    • Once the loop is detected, use two pointers approach to find the start of the loop.

    • Adjust the pointers to remove the loop and return the modified linked list.

    • Example: For input 5 2 and 1 2 3 4 5, output should be 1 2 3 4 5.

  • Answered by AI
  • Q3. 

    Infix to Postfix Conversion

    You are provided with a string EXP which represents a valid infix expression. Your task is to convert this given infix expression into a postfix expression.

    Explanation:

    An i...

  • Ans. 

    Convert a given infix expression to postfix expression.

    • Use a stack to keep track of operators and operands.

    • Follow the rules of precedence for operators (*, / have higher precedence than +, -).

    • Handle parentheses by pushing them onto the stack and popping when closing parenthesis is encountered.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

Due to pandemic placement process went virtual. Test was conducted at 2 P.M.

  • Q1. 

    Find First Repeated Character in a String

    Given a string 'STR' composed of lowercase English letters, identify the character that repeats first in terms of its initial occurrence.

    Example:

    Input:
    STR =...
  • Ans. 

    The task is to find the first repeated character in a given string of lowercase English letters.

    • Iterate through the string and keep track of characters seen so far in a set.

    • If a character is already in the set, return it as the first repeated character.

    • If no repeated character is found, return '%'.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

Video Call interview where the interview happened for around 45 minutes.

  • Q1. 

    Maximum Sum Path in a Binary Tree Problem Statement

    You are provided with a binary tree consisting of N nodes where each node has an integer value. The task is to determine the maximum sum achievable by a...

  • Ans. 

    Find the maximum sum achievable by a simple path between any two nodes in a binary tree.

    • Traverse the binary tree to find all possible paths and calculate their sums.

    • Keep track of the maximum sum encountered during traversal.

    • Consider paths that may include the same node twice.

    • Implement a recursive function to explore all paths in the tree.

    • Optimize the solution to avoid redundant calculations.

  • Answered by AI
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Video Call interview where the interview happened for around 30 minutes.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from B V Raju Institute of Technology. I applied for the job as Associate Software Engineer in HyderabadEligibility criteriaAbove 8 CGPADelhivery interview preparation:Topics to prepare for the interview - Java, Operating Systems, Git, LInux, Networking, C++, Python, DataStructures and Algorithms, OOPS, Dynamic ProgrammingTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Practise 5 problems daily from websites like hackerrank, codechef, codeforces
Tip 2 : Participate in codechef, codeforces contest.
Tip 3 : Attend mock interviews and should have good communication skills.

Application resume tips for other job seekers

Tip 1 : Maintain atleast 2 different projects, write powerful summary statement.
Tip 2 : Maintain skills relevant to job description, include relevant experience.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Api optimisations, query optimisations, how to keep code more extensible, scalable etc
Round 2 - One-on-one 

(1 Question)

  • Q1. Questions related to designing around redis
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. DSA Questions - Easy to medium
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Recruitment Consulltant

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

(2 Questions)

  • Q1. Hr asked questions About myself
  • Ans. About last work experience
  • Answered Anonymously
  • Q2. Salary discussion
  • Ans. Fixed salary amount
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself for interview very well.

Be confident when facing interview

I applied via Referral and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

9 Questions

  • Q1. Only asked about current company work ,and 1)How much pc's of lan is there..?, 2) which types of server is there ?
  • Q2. 3)How much salary do u get in current company...?, 4)what is expectation of our company..?
  • Q3. How much year have completed in company ..?
  • Q4. In how much days will u joint in our company?
  • Q5. Asked about notification period of current company?
  • Q6. Again aske about salary expectation?
  • Q7. I have given answer about salary increment and I get a 50 percent hike ?
  • Q8. I have said I will joint the company in 14 th days..
  • Q9. Instakart company provided the offer letter to me

Interview Preparation Tips

Interview preparation tips for other job seekers - only confident our work and cnfidently give the answer I will be suggest.

I applied via Naukri.com and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Job processes

Interview Preparation Tips

Interview preparation tips for other job seekers - Inbound & outbound operations,in grocerys
Contribute & help others!
anonymous
You can choose to be anonymous

Amazon Transportation Services Interview FAQs

How many rounds are there in Amazon Transportation Services Senior Technical Support Engineer 2 interview?
Amazon Transportation Services interview process usually has 1 rounds. The most common rounds in the Amazon Transportation Services interview process are Technical.
What are the top questions asked in Amazon Transportation Services Senior Technical Support Engineer 2 interview?

Some of the top questions asked at the Amazon Transportation Services Senior Technical Support Engineer 2 interview -

  1. Switch congratulations all network issues resolved Lan and wan netw...read more
  2. Router congratulations trablsutiong switch congratulations fiber related networ...read more

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

INTERVIEWS

Amazon Transportation Services

No Interviews

INTERVIEWS

Amazon Transportation Services

No Interviews

INTERVIEWS

Amazon Transportation Services

No Interviews

INTERVIEWS

Amazon Transportation Services

No Interviews

INTERVIEWS

DXC Technology

10 top interview questions

Tell us how to improve this page.

Amazon Transportation Services Senior Technical Support Engineer 2 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Delhivery Interview Questions
3.9
 • 456 Interviews
Ekart Logistics Interview Questions
3.9
 • 305 Interviews
IKS Health Interview Questions
3.6
 • 232 Interviews
Ecom Express Interview Questions
3.8
 • 197 Interviews
XpressBees Interview Questions
3.6
 • 159 Interviews
DTDC Express Interview Questions
3.7
 • 151 Interviews
Visa Interview Questions
3.5
 • 138 Interviews
McDonald's Interview Questions
4.1
 • 121 Interviews
View all
Associate
492 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
476 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Process Associate
367 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Supervisor
235 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead Operations
225 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Amazon Transportation Services with

Delhivery

3.9
Compare

Ekart Logistics

3.9
Compare

Blue Dart Express

4.0
Compare

DTDC Express

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