amazon intern 2026 vo experience

amazon logo
amazon
· Intern
February 8, 2026 · 12 reads

Summary

I had a virtual onsite interview for an Amazon intern position, which involved a significant portion of behavioral questions followed by a coding problem and its follow-ups.

Full Experience

I started as usual with about five minutes of self-introduction and small talk. Then there were around 27 minutes of behavioral questions, including:

Why Amazon? Why this internship program?

Describe a situation where you had to make a quick decision.

One question related to a deadline (DDL).

Overall, there was a fairly high proportion of behavioral questions. The depth of answers and follow-up questions varied randomly depending on the interviewer.

Then there were about 25 minutes of coding: given two sorted arrays arr1 and arr2, merge arr2 into arr1 without using an extra array, keeping arr1 in ascending order. This was straightforward with a two-pointer approach. The follow-up asked how to merge them if the arrays were in descending order, and how to handle it if the arrays were unsorted.

Finally, I had a chance to ask one question, which was mostly just a formality.

Interview Questions (5)

1.

Why Amazon and This Internship?

Behavioral

Why Amazon? Why this internship program?

2.

Quick Decision Making

Behavioral

Describe a situation where you had to make a quick decision.

3.

Merge Two Sorted Arrays In-Place

Data Structures & Algorithms·Medium

Given two sorted arrays arr1 and arr2, merge arr2 into arr1 without using an extra array, keeping arr1 in ascending order.

4.

Merge Two Sorted Arrays (Descending Order)

Data Structures & Algorithms·Medium

How to merge two arrays if they were sorted in descending order.

5.

Merge Two Unsorted Arrays

Data Structures & Algorithms·Medium

How to handle merging two arrays if they were unsorted.

Discussion (0)

Share your thoughts and ask questions

Join the Discussion

Sign in with Google to share your thoughts and ask questions

No comments yet

Be the first to share your thoughts and start the discussion!