Amazon interview experience Real time questions & tips from candidates to crack your interview

Cloud Support Associate

Amazon
upvote
share-icon
5 rounds | 9 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 4 Months
Topics: Computer Networks, Database management System, Operating System, Data structures, Competitive Coding
Tip
Tip

Tip 1 : Good troubleshooting knowledge of OS ad networking issues is a must
Tip 2 : Must have a deep understanding of the linux architecture
Tip 3 : having knowledge of AWS services would be a plus point

Application process
Where: Other
Eligibility: CGPA above 8
Resume Tip
Resume tip

Tip 1 : Candidate must have good communication skills in addition to the technical skills
Tip 2 : Candidate should highlight good leadership qualities for managerial round

Interview rounds

01
Round
Medium
Online Coding Interview
Duration120 Minutes
Interview date11 Dec 2020
Coding problem1

This was the first screening round where we had about 4 sections that were to be completed in a duration of 120 min. The test link was received over the mail and the candidate was proctored through the online portal.

1. Remove Duplicates from Sorted Array

Easy
15m average time
85% success
0/40
Asked in companies
Goldman SachsSamsungHewlett Packard Enterprise

You are given a sorted integer array 'arr' of size 'n'.


You need to remove the duplicates from the array such that each element appears only once.


Return the length of this new array.


Note:
Do not allocate extra space for another array. You need to do this by modifying the given input array in place with O(1) extra memory. 


For example:
'n' = 5, 'arr' = [1 2 2 2 3].
The new array will be [1 2 3].
So our answer is 3.
Problem approach

public int removeDuplicates(int[] nums) {
if (nums.length == 0) return 0;
int i = 0;
for (int j = 1; j < nums.length; j++) {
if (nums[j] != nums[i]) {
i++;
nums[i] = nums[j];
}
}
return i + 1;
}

Try solving now
02
Round
Medium
Video Call
Duration40 Minutes
Interview date19 Dec 2020
Coding problem2

It was the first round after clearing the screening test. It was a chime meeting session where the interviewer evaluated the knowledge of Operating system and programing for a duration of 40 minutes

1. OS Question

Explain the booting process

Problem approach

Tip 1 : Define booting process
Tip 2 : Describe about the various types of booting
Tip 3 : Conclude your answer with an example

2. OS Question

Memory/Process Management Management

Problem approach

Tip 1 : What is Memory Management
Tip 2 : Why Memory Management is required
Tip 3 : Memory allocation

03
Round
Easy
Video Call
Duration40 Minutes
Interview date19 Dec 2020
Coding problem2

This round was again a chime meeting session to evaluate the candidate based on the knowldge of computer networks and linux architecture.

1. Networking Question

Troubleshoot networking issue

Problem approach

Tip 1 : Clear understanding of various network components
Tip 2 : Linux commands to troubleshoot networking issues

2. Networking Question

Subnetting

Problem approach

Tip 1 : What do the different parts of an IP address mean
Tip 2 : What is a subnet mask
Tip 3 : Must be able to solve numericals

04
Round
Easy
HR Round
Duration30 Minutes
Interview date20 Dec 2020
Coding problem2

This was a managerial round where the hiring manager evaluated the candidate on the basis of the leadership principles followed by Amazon

1. Basic HR Question

Situation as in your colleague needs help

Problem approach

Tip 1 : Must mention your role in the situation 
Tip 2 : Describe the actions taken by you

2. Basic HR Question

One thing you are proud you did

Problem approach

Tip 1 : Example of your leadership behaviour
Tip 2 : Situation where you made your team proud

05
Round
Medium
HR Round
Duration30 Minutes
Interview date20 Dec 2020
Coding problem2

This was the final round to discuss over the salary expectation, reallocation and work location you wish to opt for if hired.

1. Basic HR Question

Explain situation which needed you deep dive

Problem approach

Tip 1 : Describe the situation
Tip 2 : Explain the outcome expected
Tip 3 : Mention our role and responsibilities

2. Basic HR Question

Any major problem and your contribution to solving it

Problem approach

Tip 1 : Provide an example fro your previous project or job experience

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
company logo
Cloud Support Associate
4 rounds | 7 problems
Interviewed by Amazon
3174 views
1 comments
0 upvotes
company logo
Cloud Support Associate
4 rounds | 5 problems
Interviewed by Amazon
1821 views
1 comments
0 upvotes
company logo
Cloud Support Associate
4 rounds | 3 problems
Interviewed by Amazon
2975 views
0 comments
0 upvotes
company logo
Cloud Support Associate
3 rounds | 8 problems
Interviewed by Amazon
501 views
0 comments
0 upvotes