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

SDE - 1

Jio Platforms Limited
upvote
share-icon
4 rounds | 6 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 3 Months
Topics: Data Structures, OOPS, Dynamic Programming, Backtracking, Binary Search Trees, Binary Search
Tip
Tip

Tip 1 : Solve leetcode problems.
Tip 2 : Don't run for multiple languages , any one language is enough
Tip 3 : Maintain Consistency

Application process
Where: Campus
Eligibility: Above 7 CGPA
Resume Tip
Resume tip

Tip 1 : Make it single page.
Tip 2 : Only write key points in resume and don't write any false point

Interview rounds

01
Round
Medium
Online Coding Interview
Duration90 Minutes
Interview date8 Oct 2021
Coding problem2

It was in the evening. Coding platform was good. There were 3 coding questions only in the screening round

1. Triple Sum

Easy
15m average time
85% success
0/40
Asked in companies
HSBCRakuten IndiaJio Platforms Limited

It was Todd’s Birthday, So Bojack decided to give Todd a Binary tree with ‘N’ nodes. But the binary tree was too big to keep in his house, so Bojack decided to give exactly three nodes from that tree such that the sum of these three numbers equals ‘X’. Can you help Bojack determine if it is possible to make a sum equal to ‘X’?

For Example :
X = 11

The sum of nodes 7, 3, 1 is 11. So we will return True.
Problem approach

Step1. Implemented brute force solution first.
Step2. Then saw as order of elements does not mattered so thought of sorting it and to use 2 pointer 
Step3. Implemented it.

Try solving now

2. Inorder Traversal

Easy
32m average time
0/40
Asked in companies
Wells FargoAmazonShareChat

You have been given a Binary Tree of 'n' nodes, where the nodes have integer values. Your task is to return the In-Order traversal of the given binary tree.


For example :
For the given binary tree:

The Inorder traversal will be [5, 3, 2, 1, 7, 4, 6].
Problem approach

This was simple question , here only had to traverse in inorder in a tree

Try solving now
02
Round
Medium
Video Call
Duration45 minutes
Interview date16 Oct 2021
Coding problem1

It was conducted in day time. Interviewer shared the jio's platform link where question was there and a function was there which I needed to complete while sharing my screen. Interviewer was very nice in behaviour

1. Check Whether Binary tree Is Complete

Moderate
25m average time
70% success
0/80
Asked in companies
WalmartMakeMyTripDunzo

You are given a binary tree. Your task is to check whether the given binary tree is a Complete Binary tree or not.

A Complete Binary tree is a binary tree whose every level, except possibly the last, is completely filled, and all nodes in the last level are placed at the left end.

Example of a complete binary tree :

Example

Problem approach

Step1. First I provided the solution , that just do the inorder traversal and check whether the output is sorted or not 
Step2. Interviewer asked to do without inorder traversal. So implemented with recursion too

Try solving now
03
Round
Medium
Video Call
Duration45 minutes
Interview date16 Oct 2021
Coding problem1

It was conducted in early evening, again it consist of one coding question and some Basic OOP question.

1. Rat in a maze

Easy
15m average time
85% success
0/40
Asked in companies
OlaIBMGoldman Sachs

You are given a starting position for a rat which is stuck in a maze at an initial point (0, 0) (the maze can be thought of as a 2-dimensional plane). The maze would be given in the form of a square matrix of order 'N' * 'N' where the cells with value 0 represent the maze’s blocked locations while value 1 is the open/available path that the rat can take to reach its destination. The rat's destination is at ('N' - 1, 'N' - 1). Your task is to find all the possible paths that the rat can take to reach from source to destination in the maze. The possible directions that it can take to move in the maze are 'U'(up) i.e. (x, y - 1) , 'D'(down) i.e. (x, y + 1) , 'L' (left) i.e. (x - 1, y), 'R' (right) i.e. (x + 1, y).

Note:
Here, sorted paths mean that the expected output should be in alphabetical order.
For Example:
Given a square matrix of size 4*4 (i.e. here 'N' = 4):
1 0 0 0
1 1 0 0
1 1 0 0
0 1 1 1 
Expected Output:
DDRDRR DRDDRR 
i.e. Path-1: DDRDRR and Path-2: DRDDRR

The rat can reach the destination at (3, 3) from (0, 0) by two paths, i.e. DRDDRR and DDRDRR when printed in sorted order, we get DDRDRR DRDDRR.
Problem approach

I already had solved this question in my screening round , so this time it was not difficult for me. Directly implemented the backtracking recursive solution

Try solving now
04
Round
Easy
HR Round
Duration45 minutes
Interview date16 Oct 2021
Coding problem2

It was conducted at night like it was 8.00pm . HR was very nice. She asked managerial questions only and asked about my hobbies, experiences, why I want to join jio etc.

1. Basic HR question

Why do you want to join jio?

Problem approach

Tip 1 : First do some research about the organization and have a look on the vision statement. Provide your answers which should be aligned with company vision.
Tip 2 : Never argue with HR rather do discussion if you think you are right and she is not agreeing

2. Basic HR Question

What will you do if there is some conflict in a team were you working?r

Problem approach

Tip 1 : Try to show your leadership skills in your answers 
Tip 2 : Have patience , think a little bit and then answer for it.

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
SDE - 1
4 rounds | 4 problems
Interviewed by Jio Platforms Limited
1182 views
0 comments
0 upvotes
SDE - 1
3 rounds | 3 problems
Interviewed by Jio Platforms Limited
1087 views
0 comments
0 upvotes
SDE - 1
4 rounds | 9 problems
Interviewed by Jio Platforms Limited
1119 views
0 comments
0 upvotes
SDE - 1
3 rounds | 4 problems
Interviewed by Jio Platforms Limited
1042 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