Tip 1 : Go through AWS or any other cloud service you are familiar with and the interview questions of that.
Tip 2 : Study interview questions of Linux command . Hands on practice is a plus
Tip 3 : Prepare from your resume, you should be able to give brief introduction on the skills you have mentioned.
Tip 1 : Only mention the skills which you are familiar or can explain to the interviewer.
Tip 2 : If mentioning project , be sure to summarize it well and be ready explain the functioning whenever asked.
3 Java DS and Algo questions of medium level.
For all profiles, first round is same but the cut off varies. For my profile it was to score 70% or above in overall assessment.
Online assessment so now issue of timing and easy to work IDE.



I solved it with backtracking:
1) Start in the leftmost column
2) If all queens are placed
return true
3) Try all rows in the current column.
Do following for every tried row.
a) If the queen can be placed safely in this row
then mark this [row, column] as part of the
solution and recursively check if placing
queen here leads to a solution.
b) If placing the queen in [row, column] leads to
a solution then return true.
c) If placing queen doesn't lead to a solution then
unmark this [row, column] (Backtrack) and go to
step (a) to try other rows.
4) If all rows have been tried and nothing worked,
return false to trigger backtracking.
MCQ round based on the profile offered . I was given Cloud and DevOps Engineer profile so there were MCQs based on that.
Online assessment so timing was on us to choose.
Basic ssh command, file editing, memory check , etc.
Tip 1 : Experience in linux commands.
Tip 2 : Prepare interview questions on linux commands.
Tip 3 : Interview questions on computer networking
Technical Interview with Systems Engineer. Basic discussion on Resume and questions based on the skills mentioned in resume
Enlist and Define basic AWS Cloud services you have worked o?
Tip 1 : Be confident and direct. Give answer to the point
Tip 2 : If not sure, don't twist the question to give some related answer. Politely tell the interviewer that you are not sure of the answer.
Tip 3 : Try to justify each and every skill mentioned in the resume. Do not mention any skill which you are not sure about.
Basic HR round in which they want to know about you . No technical questions , just a conversation about what we do , they will tell you about the organisation and would like to hear about your experiences in other companies.
Tip 1 : Be confident and answer the questions honestly.
Tip 2 : Try to ask your queries on Epam work culture .
Tip 3 : Keep it a 2 way conversation and interact with HR to show your communication skills.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?