Chetu pvt Ltd interview experience Real time questions & tips from candidates to crack your interview

SDE - 1

Chetu pvt Ltd
upvote
share-icon
3 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Journey
I started coding from 1st year of my college. I did practice questions daily and participated in every possible hackathon to develop my skills.
Application story
I thought of asking for a referral on LinkedIn to one of Chetu's employees. I was lucky enough to get a referral from them. Within a week or so, I got a call from them asking to schedule an interview.
Why selected/rejected for the role?
I got selected for the SDE role because I gave my answer very well and the interviewer was very satisfied with all of my answers. Also if was not knowing the answer i told directly i don't know .
Preparation
Duration: 3 months
Topics: Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming
Tip
Tip

Tip 1 : Be very clear with your project explanation and try to give example with the real life example .
Tip 2 : Also try to cover all the CS core subjects explanation clearly.

Application process
Where: Referral
Eligibility: No
Resume Tip
Resume tip

Tip 1: Mention your best projects
Tip 2: Highlight your achievements

Interview rounds

01
Round
Easy
Video Call
Duration60 mins
Interview date20 Sep 2020
Coding problem2

1. Merge Sort

Easy
15m average time
85% success
0/40
Asked in companies
Media.netHewlett Packard EnterpriseIBM

Given a sequence of numbers ‘ARR’. Your task is to return a sorted sequence of ‘ARR’ in non-descending order with help of the merge sort algorithm.

Example :

Merge Sort Algorithm -

Merge sort is a Divide and Conquer based Algorithm. It divides the input array into two-parts, until the size of the input array is not ‘1’. In the return part, it will merge two sorted arrays a return a whole merged sorted array.

subsequence

The above illustrates shows how merge sort works.
Note :
It is compulsory to use the ‘Merge Sort’ algorithm.
Problem approach

It works on the principle of Divide and Conquer. Merge sort repeatedly divides the array into several arrays until each array consists of a single element and merging those arrays in a manner that results into a sorted array.

Try solving now

2. Min Jumps

Easy
15m average time
85% success
0/40
Asked in companies
IBMAmerican ExpressSamsung R&D Institute

You live in a Ninja town which is in the form of a N * M grid. In this town, people travel from one place to another by jumping over the buildings which are present in each cell of the grid. It is Christmas eve, and Santa wants to give gifts and chocolates to the kids who live in the building which is present at the cell (N - 1, M - 1). Initially, Santa is present on cell (0, 0). Since Santa is in a hurry, help him find a path from starting point to the endpoint with the least amount of time.

The Santa may go only from one building to any of its adjacent buildings which is present either to the right or to the bottom or bottom right cell i.e. if the current position is (x, y), he may go to (x + 1, y + 1) or (x + 1, y) or (x, y + 1) given that the new coordinates are in the grid. The time taken to reach from one building to another is equal to the absolute difference between the heights of buildings.

Note:

1. The heights of the buildings are positive.
2. Santa starts from the cell (0, 0) and he has to reach the building (N - 1, M - 1).
3. Santa cannot leave the grid at any point of time.
Problem approach

// Base case: if the first element is 0 or if the destination is unreachable from the first element
if (N <= 1 || arr[0] == 0)
return -1;

int maxReach = arr[0], steps = arr[0], jumps = 1;

Try solving now
02
Round
Medium
Video Call
Duration60 mins
Interview date25 Sep 2020
Coding problem1

1. DBMS Questions

What is the difference between Primary Key and Foreign Key?(Learn)
What are the different types of JOIN in SQL?(Learn)
Explain the difference between left outer join and right outer join?(Learn)
Write a query to find the names of employees that begin with ‘S’. [where name like "S%"]

Problem approach

Tip 1: Understand the question well
Tip 2: Try to write the query within a minimal time

03
Round
Medium
Video Call
Duration60 mins
Interview date29 Sep 2020
Coding problem2

1. Longest Common Subsequence

Moderate
0/80
Asked in companies
AmazonVisaRed Hat

You have been given two Strings “STR1” and “STR2” of characters. Your task is to find the length of the longest common subsequence.

A String ‘a’ is a subsequence of a String ‘b’ if ‘a’ can be obtained from ‘b’ by deletion of several (possibly, zero or all) characters. A common subsequence of two Strings is a subsequence that is common to both Strings.

Problem approach

By using DP.

Try solving now

2. Pair Sum

Easy
15m average time
90% success
0/40
Asked in companies
SalesforceUberPayU

You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to return the list of all pairs of elements such that each sum of elements of each pair equals 'S'.

Note:

Each pair should be sorted i.e the first value should be less than or equals to the second value. 

Return the list of pairs sorted in non-decreasing order of their first value. In case if two pairs have the same first value, the pair with a smaller second value should come first.
Problem approach

By creating a Custom function.

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
Software Developer
3 rounds | 15 problems
Interviewed by Chetu pvt Ltd
1132 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by OYO
4657 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 5 problems
Interviewed by Meesho
6451 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by Salesforce
3452 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