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

SDE - 2

Cvent
upvote
share-icon
5 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 3 months
Topics: Data Structure, OOPS, Dynamic Programming, LLD, Java, DBMS(SQL)
Tip
Tip

Tip 1 : Basic DS problems related to all topics must be practice throughly with dry run
Tip 2 : Be prepared to explain the projects you have worked on clearly
Tip 3 : OOPS concept should be clear

Application process
Where: Other
Eligibility: No Criteria
Resume Tip
Resume tip

Tip 1 : Mention projects done with brief and clear description
Tip 2 : Mention skills that align with the job description and stay prepared with them.

Interview rounds

01
Round
Easy
Online Coding Test
Duration60 Minutes
Interview date15 May 2021
Coding problem1

Was asked to complete the test any time on the weekend.

1. Second largest element in the array

Easy
15m average time
80% success
0/40
Asked in companies
AdobeTata Consultancy Services (TCS)Samsung

You have been given an array/list 'ARR' of integers. Your task is to find the second largest element present in the 'ARR'.

Note:
a) Duplicate elements may be present.

b) If no such element is present return -1.
Example:
Input: Given a sequence of five numbers 2, 4, 5, 6, 8.

Output:  6

Explanation:
In the given sequence of numbers, number 8 is the largest element, followed by number 6 which is the second-largest element. Hence we return number 6 which is the second-largest element in the sequence.
Problem approach

The question was easy. All cases passed in single run.

Try solving now
02
Round
Medium
Face to Face
Duration60 Minutes
Interview date18 May 2021
Coding problem1

Face to face round on Zoom mainly focused on problem solving and oops concepts. one coding question.
Then asked some oops concepts. I had chosen preferred language as java, so was asked java related questions as well mainly from data types, stream API and collections.

1. Count Ways To Reach The N-th Stairs

Moderate
30m average time
80% success
0/80
Asked in companies
InfosysTata Consultancy Services (TCS)Amazon

You have been given a number of stairs. Initially, you are at the 0th stair, and you need to reach the Nth stair.


Each time, you can climb either one step or two steps.


You are supposed to return the number of distinct ways you can climb from the 0th step to the Nth step.

Example :
N=3

Example

We can climb one step at a time i.e. {(0, 1) ,(1, 2),(2,3)} or we can climb the first two-step and then one step i.e. {(0,2),(1, 3)} or we can climb first one step and then two step i.e. {(0,1), (1,3)}.
Problem approach

First I solved it with recursion. Then was asked to provide iterative approach. After taking some I provided the iterative solution as well. The interviewer was satisfied.

Try solving now
03
Round
Easy
Assignment
Duration60 Minutes
Interview date20 May 2021
Coding problem1

1. MCQ Questions

There were 30 questions based on basic maths(quant), logical reasoning and english.

Problem approach

Tip 1 : Quite easy. Any science graduate can solve these problems.
Tip 2 : Just have a look on the samples that are provided by the company to have an idea.

04
Round
Medium
Face to Face
Duration60 Minutes
Interview date24 May 2021
Coding problem1

This round was taken by a senior engineering manager. Asked a coding problem mentioned below in problem section.
Then he went deep into my projects and asked multiple questions related to them. Main focus was to know how well I knew the system. 
Then also asked concepts related to DBMS and sql.

1. Permutations

Moderate
10m average time
90% success
0/80
Asked in companies
CIS - Cyber InfrastructureTata Consultancy Services (TCS)Flipkart

A permutation is a mathematical technique that determines the number of possible arrangements in a set when the order of the arrangements matters. A string of length 'N' has 'N'! permutations.

Given an array of distinct integers, return all the possible permutations of the array.

Example:
'ARR[]' = [1, 2]

The size of the array is 2. So, the total number of permutations is 2! = 2. The possible permutations are [1, 2] (the array itself) and [2,1] where the position of element 1 in the original array is swapped with element 2 and vice-versa.   
Note:
1. All the numbers in the array are unique.

2. You can return the answer in any order.

3. The original array is also a permutation of the given array.
Try solving now
05
Round
Easy
HR Round
Duration60 Minutes
Interview date1 Jun 2021
Coding problem1

1. Basic HR Questions

This was basically formal round. I was asked about my work at previous company and what was my motivation to join this company, my expectations and future goals if got selected. After a brief interaction this round ended early.

Here's your problem of the day

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

Skill covered: Programming

Which SQL keyword removes duplicate records from a result set?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
4 rounds | 5 problems
Interviewed by Cvent
814 views
0 comments
0 upvotes
company logo
SDE - 2
1 rounds | 3 problems
Interviewed by Cvent
1069 views
0 comments
0 upvotes
company logo
SDE - 1
4 rounds | 7 problems
Interviewed by Cvent
897 views
0 comments
0 upvotes
company logo
Full Stack Engineer
3 rounds | 4 problems
Interviewed by Cvent
384 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - 2
5 rounds | 12 problems
Interviewed by Walmart
25138 views
8 comments
0 upvotes
company logo
SDE - 2
3 rounds | 5 problems
Interviewed by Amazon
5505 views
0 comments
0 upvotes
company logo
SDE - 2
6 rounds | 8 problems
Interviewed by Amazon
3958 views
0 comments
0 upvotes