Jio Platforms Limited interview experience Real time questions & tips from candidates to crack your interview

SDE - 1

Jio Platforms Limited
upvote
share-icon
3 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 3 Months
Topics: Data Structures, Algorithm, OOPS, Database Management, Competitive programming
Tip
Tip

Tip 1 : Prepare basics first.
Tip 2 : Practise coding problems daily.
Tip 3 : Understanding of OOPS Concepts with real time examples.

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

Tip 1 : Modify your resumes for each job you're applying for by adding relevant achievements and skills.
Tip 2 : List your projects with a brief description.

Interview rounds

01
Round
Easy
Online Coding Interview
Duration90 Minutes
Interview date12 Aug 2021
Coding problem2

MCQs and two programming questions were included in the online test. A 5-day window was given. We can select a slot within those 5 days based on our availability.

1. Sub Sort

Moderate
15m average time
85% success
0/80
Asked in companies
PayPalMakeMyTripExpedia Group

You are given an integer array ‘ARR’. You have to find the length of the shortest contiguous subarray such that, if you sort this subarray in ascending order, then the whole array will be sorted in ascending order.

An array 'C' is a subarray of array 'D' if it can be obtained by deletion of several elements(possibly zero) from the beginning and the end from array 'D'.

Example:

Let’s say we have an array 'ARR' {10, 12, 20, 30, 25, 40, 32, 31, 35, 50, 60}. Then we have to find the subarray {30 , 25 , 40 , 32 , 31 , 35} and print its length = 5 as our output. Because, when we sort this subarray the whole array will be sorted.
Try solving now

2. Merge Two Sorted Arrays

Moderate
15m average time
85% success
0/80
Asked in companies
HSBCHikeAmazon

Ninja has been given two sorted integer arrays/lists ‘ARR1’ and ‘ARR2’ of size ‘M’ and ‘N’. Ninja has to merge these sorted arrays/lists into ‘ARR1’ as one sorted array. You may have to assume that ‘ARR1’ has a size equal to ‘M’ + ‘N’ such that ‘ARR1’ has enough space to add all the elements of ‘ARR2’ in ‘ARR1’.

For example:

‘ARR1’ = [3 6 9 0 0]
‘ARR2’ = [4 10]
After merging the ‘ARR1’ and ‘ARR2’ in ‘ARR1’. 
‘ARR1’ = [3 4 6 9 10]
Problem approach

The idea is to begin from the last element of ar2[] and search it in ar1[]. If there is a greater element in ar1[], then we move the last element of ar1[] to ar2[]. To keep ar1[] and ar2[] sorted, we need to place the last element of ar2[] at the correct place in ar1[]. We can use Insertion Sort type of insertion for this.

Try solving now
02
Round
Easy
Video Call
Duration60 Minutes
Interview date22 Aug 2021
Coding problem2

A virtual interview was conducted. The interviewer was excellent, and each problem was thoroughly explained. About 60 minutes are spent on the interview. Coding questions along with other project based questions were asked..

1. Spiral Matrix

Easy
15m average time
80% success
0/40
Asked in companies
WalmartOracleApple

You are given a 2-D array 'MATRIX' of dimensions N x M, of integers. You need to return the spiral path of the matrix.

Example Of Spiral Path:

Spiral path of a matrix

Try solving now

2. Left View Of Binary Tree

Moderate
30m average time
60% success
0/80
Asked in companies
WalmartSalesforceDelhivery

You have been given a Binary Tree of 'n' nodes, where the nodes have integer values



Example :
If the input tree is as depicted in the picture: 

alt text

The Left View of the tree will be:  2 35 2 
Problem approach

All nodes that are the first nodes in their levels are shown on the left view. Level order traversal and printing the first node in each level is one of the simplest solution.

Try solving now
03
Round
Easy
HR Round
Duration45 minutes
Interview date2 Sep 2021
Coding problem1

It was an online round. Interviewer asked some behavioural questions along with some aptitude questions. More of a one-one discussion.

1. Basic HR Questions

Behavioural questions: Strength and weaknesses, leadership principles, approach of handling a task while working in a group.
Aptitude questions: Probability, Profit loss.

Problem approach

Tip 1 : Be honest.
Tip 2 : Use real life examples while answering something.
Tip 3 : Be Confident and quick while solving Aptitude questions.

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
SDE - 1
4 rounds | 4 problems
Interviewed by Jio Platforms Limited
1217 views
0 comments
0 upvotes
SDE - 1
3 rounds | 3 problems
Interviewed by Jio Platforms Limited
1123 views
0 comments
0 upvotes
SDE - 1
4 rounds | 9 problems
Interviewed by Jio Platforms Limited
1146 views
0 comments
0 upvotes
SDE - 1
3 rounds | 4 problems
Interviewed by Jio Platforms Limited
1063 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - 1
5 rounds | 12 problems
Interviewed by Amazon
115097 views
24 comments
0 upvotes
company logo
SDE - 1
4 rounds | 5 problems
Interviewed by Microsoft
58238 views
5 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Amazon
35147 views
7 comments
0 upvotes