Ho presentato la mia candidatura tramite un'altra fonte. La procedura ha richiesto 2 giorni. Ho sostenuto un colloquio presso Amazon nel mese di set 2011
Colloquio
Amazon contacted me when I updated my resume on Monster. After a call from their recruiter, I was asked for a first technical phone interview. I did not do well in that interview, however I got asked to do a second technical interview in which you are asked programming questions I think I did better but I did not get the job.
Domande di colloquio [3]
Domanda 1
Define the strategy pattern and when could it be used
How would you implement a priority queue. What is the O analysis of your implementation. How would you store a tree structure. How would you implement a tinyURL service.
given a tree write a function isSymmetrical that would find out if the tree is symmetric or not.
-----
Class Node
{
Node leftChild
Node rightChild;
int value;
}
//Write this method:
boolean isSymmetrical(Node treeRoot) {
Examples:
This is symmetrical
7
/ \
5 5
/ \
9 9
/ \ / \
2 8 8 2
This is not symmetrical (value difference):
7
/ \
5 6
/ \
9 9
/ \ / \
2 8 8 2
This is not symmetrical (structural difference)
7
/ \
5 5
/ \
9 9
/ \ /
2 8 8
Ho sostenuto un colloquio presso Amazon (Bengaluru)
Colloquio
It was a 2-3 round process, depending on how your interview went, with increasingly hard DSA questions followed by some HR and behavioural questions. First round was mostly easy and medium leetcode, followed by medium and hard questions in the second round and above on more complex topics.
Ho presentato la mia candidatura online. Ho sostenuto un colloquio presso Amazon (Bengaluru)
Colloquio
The interview process consisted of an online assessment followed by two technical interview rounds and one behavioral round. The technical rounds focused on Data Structures, Algorithms, Java, and problem-solving skills. The behavioral round covered Amazon Leadership Principles and past project experiences. The interviewers were professional and the process was well structured.
Domande di colloquio [1]
Domanda 1
Q: Find the first non-repeating character in a string.
Ho presentato la mia candidatura online. Ho sostenuto un colloquio presso Amazon (Tel Aviv)
Colloquio
Amazon's home assignment test involves receiving a coding or case study assignment, completing it independently within a specified deadline (usually a few days), and submitting it for team review. I got an answer after 2 days