Upload Button Icon Add office photos

Filter interviews by

Amazon Transportation Services Software Developer Interview Questions and Answers

Updated 6 Jun 2024

Amazon Transportation Services Software Developer Interview Experiences

1 interview found

Software Developer Interview Questions & Answers

user image Suryansh Nigam

posted on 6 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

30 min .. time, speed, distance

Round 2 - Coding Test 

Normal easy qus via leetcode

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General aptitude questions

Round 2 - Coding Test 

Problem solving, solved 2 out of 3 questions

Round 3 - Group Discussion 

General topics were given in gd

Round 4 - Technical 

(2 Questions)

  • Q1. Programming concepts
  • Q2. Projects and coding round questions solved
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Good and easy too to crack it

Round 2 - Coding Test 

Good and easy too to crack it

Round 3 - Group Discussion 

Common topic is given to speak

Round 4 - HR 

(2 Questions)

  • Q1. Are you willing to relocate
  • Q2. Basic intro questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java questions , stream api
  • Q2. Whatever you have mention in resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Java basics, memory management, multithreading.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. They asked so many questions from it went well
  • Q2. How was your experience
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via campus placement at Kamaraj College, Thoothukudi and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Coding Test 

The platform is hackerrank and they asked arrays and string topics and the duration is 1hr

Round 2 - Technical 

(4 Questions)

  • Q1. What is the difference between http and https
  • Ans. 

    HTTP is unsecured while HTTPS is secured with SSL/TLS encryption.

    • HTTP stands for Hypertext Transfer Protocol, while HTTPS stands for Hypertext Transfer Protocol Secure.

    • HTTP operates on port 80, while HTTPS operates on port 443.

    • HTTP data is transmitted in plain text, while HTTPS data is encrypted using SSL/TLS.

    • HTTPS provides authentication, integrity, and confidentiality of data exchanged between a client and a server.

    • W...

  • Answered by AI
  • Q2. Asked some sql querys
  • Q3. Asked some sql joins
  • Q4. Fully based on user resume
Round 3 - HR 

(1 Question)

  • Q1. They asked general questions like family background

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

One medium and one standard DP question

Round 2 - Technical 

(1 Question)

  • Q1. Medium level question based on binary search
Round 3 - Technical 

(2 Questions)

  • Q1. Design google-pay
  • Ans. 

    Design Google Pay - a digital wallet platform for online payments and transactions.

    • Allow users to securely store payment information such as credit/debit cards, bank accounts, and loyalty cards.

    • Enable users to make payments in stores, online, and within apps using their stored payment methods.

    • Implement security features like biometric authentication, tokenization, and encryption to protect user data.

    • Provide features fo...

  • Answered by AI
  • Q2. HLD of recursive
  • Ans. 

    High Level Design (HLD) of recursive functions in software development.

    • Recursive functions call themselves to solve smaller instances of the same problem.

    • HLD of recursive functions involves defining the base case, recursive case, and termination condition.

    • Example: HLD of a recursive function to calculate factorial of a number involves defining base case as factorial(0) = 1.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Puzzles available on GFG
  • Q2. Behavioral question

Interview Preparation Tips

Interview preparation tips for other job seekers - be good in DSA, system design, projects, puzzles

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops XML MVC SQL
Round 2 - Technical 

(2 Questions)

  • Q1. Jquery tags syntax uses
  • Ans. 

    Jquery tags syntax uses angle brackets and CSS selectors.

    • Jquery tags are enclosed in angle brackets, like

      or

    • Jquery selectors are used to target specific elements, like $('p') or $('.class')

Answered by AI
  • Q2. Seting values XML data JSON data transfer
  • Skills evaluated in this interview

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

    (5 Questions)

    • Q1. What is closure
    • Ans. 

      A closure is a function that has access to its own scope, the scope in which it was defined, and the global scope.

      • A closure is created when a function is defined inside another function.

      • The inner function has access to the variables and parameters of the outer function, even after the outer function has finished executing.

      • Closures are useful for creating private variables and functions in JavaScript.

      • They can also be us...

    • Answered by AI
    • Q2. What is Encapsulation
    • Ans. 

      Encapsulation is the process of hiding internal details and providing a public interface for accessing and manipulating data.

      • Encapsulation bundles data and methods together into a single unit.

      • It helps in achieving data abstraction and data hiding.

      • By encapsulating data, we can control access to it and prevent unauthorized modifications.

      • Encapsulation promotes code reusability and maintainability.

      • Example: A class in objec...

    • Answered by AI
    • Q3. What is Inheritance
    • Ans. 

      Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

      • Inheritance allows for code reuse and promotes the concept of hierarchy.

      • The class that is being inherited from is called the superclass or base class.

      • The class that inherits from the superclass is called the subclass or derived class.

      • The subclass can access the public and protected members of the s...

    • Answered by AI
    • Q4. What is Abstraction
    • Ans. 

      Abstraction is the process of simplifying complex systems by focusing on essential details.

      • Abstraction involves hiding unnecessary details and exposing only relevant information.

      • It allows developers to create models or representations that capture the essential aspects of a system.

      • Abstraction helps in managing complexity, improving code reusability, and enhancing maintainability.

      • For example, in object-oriented programm...

    • Answered by AI
    • Q5. What is Polymorphism
    • Ans. 

      Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as the same type.

      • Polymorphism is a fundamental concept in object-oriented programming.

      • It enables code reusability and flexibility.

      • Polymorphism can be achieved through method overriding and method overloading.

      • Example: A parent class Animal can have multiple child classes like Dog, Cat, and Bird. They can ...

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    5
    Excellent
    Difficulty level
    Easy
    Process Duration
    2-4 weeks
    Result
    Selected Selected

    I applied via Indeed and was interviewed in Oct 2023. There was 1 interview round.

    Round 1 - One-on-one 

    (2 Questions)

    • Q1. Behavioural and Experience based questions
    • Q2. Tell be about a time sort of stuff

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be sure of your work

    Amazon Transportation Services Interview FAQs

    How many rounds are there in Amazon Transportation Services Software Developer interview?
    Amazon Transportation Services interview process usually has 2 rounds. The most common rounds in the Amazon Transportation Services interview process are Aptitude Test and Coding Test.

    Tell us how to improve this page.

    Amazon Transportation Services Software Developer Interview Process

    based on 1 interview

    Interview experience

    3
      
    Average
    View more
    Amazon Transportation Services Software Developer Salary
    based on 9 salaries
    ₹5.6 L/yr - ₹11.6 L/yr
    22% more than the average Software Developer Salary in India
    View more details

    Amazon Transportation Services Software Developer Reviews and Ratings

    based on 2 reviews

    3.6/5

    Rating in categories

    3.6

    Skill development

    3.6

    Work-life balance

    3.8

    Salary

    3.6

    Job security

    3.6

    Company culture

    3.6

    Promotions

    3.6

    Work satisfaction

    Explore 2 Reviews and Ratings
    Associate
    483 salaries
    unlock blur

    ₹1 L/yr - ₹5 L/yr

    Team Lead
    475 salaries
    unlock blur

    ₹2.2 L/yr - ₹9 L/yr

    Process Associate
    368 salaries
    unlock blur

    ₹1.4 L/yr - ₹4.5 L/yr

    Channel Team Lead
    238 salaries
    unlock blur

    ₹4.8 L/yr - ₹13 L/yr

    Supervisor
    236 salaries
    unlock blur

    ₹1.3 L/yr - ₹5 L/yr

    Explore more salaries
    Compare Amazon Transportation Services with

    Delhivery

    3.9
    Compare

    Ekart Logistics

    4.0
    Compare

    Blue Dart Express

    4.0
    Compare

    DTDC Express

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