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

SDE - 1

TravClan
upvote
share-icon
3 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Journey
I received that opportunity from OnCampus. First Round was MCQs based. after that Written Technical Test for shortlisted students. I was able to solve all 3 questions in that round. In Technical Interviewer asked Python, Project related Questions, and DBMS Questions. I had rejected in the Interview round.
Application story
I received that opportunity from OnCampus. First Round was MCQs based. after that Written Technical Test for shortlisted students. I was able to solve all 3 questions in that round. In Technical Interviewer asked Python, Project related Questions, and DBMS Questions. I had rejected in the Interview round.
Why selected/rejected for the role?
I was not able to give an explanation well for advance Java Script questions. so that's the reason, I was rejected But rejection is a part of life. it gives the motivation to make Sucess.
Preparation
Duration: 3 months
Topics: Data Structures & Algorithms, Operating System, Object-Oriented Programming System, DBMS, CN
Tip
Tip

Tip 1 : Prepare DSA well and I personally recommend Coding Ninjas and GeeksForGeeks for interview preparation.
Tip 2 : Be confident & relaxed during the interview.
Tip 3 : Do revise your projects i.e how it works and what are its functionalities.

Application process
Where: Campus
Eligibility: 7.0 CGPA
Resume Tip
Resume tip

Tip 1: Make your resume short and try to make it one page only and mention all the skills that you are confident in.
Tip 2: Do not put false things on your resume.

Interview rounds

01
Round
Easy
Online Coding Interview
Duration45 minutes
Interview date14 Aug 2021
Coding problem1

30 MCQs questions which were based on c++ oops, SQL based questions

1. OS Question

What is deadlock?

02
Round
Medium
Online Coding Test
Duration60 minutes
Interview date16 Aug 2021
Coding problem2

In this round, There was Zoom Meeting for all shortlisted students. The camera was on in that Zoom meeting they asked to code on Online Ide and paste that code on Wordpad and share that code on Email ID.

1. Sort 0 1 2

Easy
22m average time
0/40
Asked in companies
AmazonOracleWalmart

You have been given an integer array/list(ARR) of size 'N'. It only contains 0s, 1s and 2s. Write a solution to sort this array/list.

Note :
Try to solve the problem in 'Single Scan'. ' Single Scan' refers to iterating over the array/list just once or to put it in other words, you will be visiting each element in the array/list just once.
Problem approach

By using Pointers to track elements position.

Try solving now

2. Search In Rotated Sorted Array

Easy
12m average time
85% success
0/40
Asked in companies
OYOZSAmazon

You have been given a sorted array/list 'arr' consisting of ‘n’ elements. You are also given an integer ‘k’.


Now the array is rotated at some pivot point unknown to you.


For example, if 'arr' = [ 1, 3, 5, 7, 8], then after rotating 'arr' at index 3, the array will be 'arr' = [7, 8, 1, 3, 5].


Now, your task is to find the index at which ‘k’ is present in 'arr'.


Note :
1. If ‘k’ is not present in 'arr', then print -1.
2. There are no duplicate elements present in 'arr'. 
3. 'arr' can be rotated only in the right direction.


Example:
Input: 'arr' = [12, 15, 18, 2, 4] , 'k' = 2

Output: 3

Explanation:
If 'arr' = [12, 15, 18, 2, 4] and 'k' = 2, then the position at which 'k' is present in the array is 3 (0-indexed).


Problem approach

By using Binary Search. I was able to solve.

Try solving now
03
Round
Medium
Face to Face
Duration75 minutes
Interview date19 Aug 2021
Coding problem1

In Technical Interviewer asked Python, Project related Questions, JavaScript and DBMS Questions. I was not able to give an explanation well for advance Java Script questions Hoisting, High-order Functions. also asked for Asynchronous JavaScript. so that's the reason, I was rejected in the Interview round

1. Next Greater Element

Easy
10m average time
90% success
0/40
Asked in companies
IBMInfo Edge India (Naukri.com)Amazon

You are given an array 'a' of size 'n'.



The Next Greater Element for an element 'x' is the first element on the right side of 'x' in the array, which is greater than 'x'.


If no greater elements exist to the right of 'x', consider the next greater element as -1.


For example:
Input: 'a' = [7, 12, 1, 20]

Output: NGE = [12, 20, 20, -1]

Explanation: For the given array,

- The next greater element for 7 is 12.

- The next greater element for 12 is 20. 

- The next greater element for 1 is 20. 

- There is no greater element for 20 on the right side. So we consider NGE as -1.
Problem approach

By using Stack Data Structure, I was able to solve.

Try solving now

Here's your problem of the day

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

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
5 rounds | 6 problems
Interviewed by TravClan
0 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 4 problems
Interviewed by TravClan
0 views
0 comments
0 upvotes
company logo
Software Engineer
4 rounds | 7 problems
Interviewed by TravClan
961 views
0 comments
0 upvotes
company logo
SDE - 1
4 rounds | 13 problems
Interviewed by TravClan
104 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - 1
5 rounds | 12 problems
Interviewed by Amazon
114579 views
24 comments
0 upvotes
company logo
SDE - 1
4 rounds | 5 problems
Interviewed by Microsoft
57825 views
5 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Amazon
34961 views
7 comments
0 upvotes