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

Software Developer

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

Interview preparation journey

expand-icon
Journey
I cracked the interview through college placement drives. The journey of a B.Tech student in cracking an interview can be challenging, but with proper preparation and determination, it can be a successful one. Here are some steps that can help a B.Tech student prepare for and crack an interview: Research the company: Before going for an interview, it is essential to research the company thoroughly. Understand the company's culture, values, products or services, and the job role you have applied for. This will help you understand the company's expectations and prepare accordingly. Update your resume: Make sure your resume is updated and tailored to the job role you have applied for. Highlight your relevant skills and experience, and ensure that your resume is error-free. Practice common interview questions: You can find common interview questions online and practice answering them. This will help you articulate your thoughts and prepare for unexpected questions. Prepare for technical questions: As a B.Tech student, you may be asked technical questions related to your field. Brush up on your technical knowledge, including programming languages, algorithms, and other technical skills. Dress appropriately: Dress professionally for the interview. Choose clean and ironed clothes that fit well.
Application story
The journey of a B.Tech student in cracking an interview can be challenging, but with proper preparation and determination, it can be a successful one. Here are some steps that can help a B.Tech student prepare for and crack an interview: Research the company: Before going for an interview, it is essential to research the company thoroughly. Understand the company's culture, values, products or services, and the job role you have applied for. This will help you understand the company's expectations and prepare accordingly. Update your resume: Make sure your resume is updated and tailored to the job role you have applied for. Highlight your relevant skills and experience, and ensure that your resume is error-free. Practice common interview questions: You can find common interview questions online and practice answering them. This will help you articulate your thoughts and prepare for unexpected questions. Prepare for technical questions: As a B.Tech student, you may be asked technical questions related to your field. Brush up on your technical knowledge, including programming languages, algorithms, and other technical skills. Dress appropriately: Dress professionally for the interview. Choose clean and ironed clothes that fit well.
Why selected/rejected for the role?
I was selected because of my good understanding of dsa and I’ve made several projects in NLP. The journey of a B.Tech student in cracking an interview can be challenging, but with proper preparation and determination, it can be a successful one. Here are some steps that can help a B.Tech student prepare for and crack an interview: Research the company: Before going for an interview, it is essential to research the company thoroughly. Understand the company's culture, values, products or services, and the job role you have applied for. This will help you understand the company's expectations and prepare accordingly. Update your resume: Make sure your resume is updated and tailored to the job role you have applied for. Highlight your relevant skills and experience, and ensure that your resume is error-free. Practice common interview questions: You can find common interview questions online and practice answering them. This will help you articulate your thoughts and prepare for unexpected questions. Prepare for technical questions: As a B.Tech student, you may be asked technical questions related to your field. Brush up on your technical knowledge, including programming languages, algorithms, and other technical skills. Dress appropriately: Dress professionally for the interview. Choose clean and ironed clothes that fit well.
Preparation
Duration: 3 Months
Topics: Oops, system design, algorithm ,data structures , dbms
Tip
Tip

Tip 1 : practice dsa daily
Tip 2 : learn oops
Tip 3 : be confident

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

Tip 1 : do your best and don’t be afraid
Tip 2 : study regularly and be determined

Interview rounds

01
Round
Medium
Online Coding Interview
Duration60 minutes
Interview date25 Sep 2022
Coding problem2

1. Huffman Coding

Moderate
25m average time
75% success
0/80
Asked in companies
Media.netZSWells Fargo

You are given an array 'ARR' of Integers having 'N' elements. The array contains an encoded message. For each index 'i', 'ARR[i]' denotes the frequency of the 'i'th' character in the message. The characters are of an alien language having 'N' alphabets. Given the frequency of each of the 'N' alphabets in the message, your task is to find out the Huffman codes for each of the 'N' alphabets in the message.

The Huffman Code for a message is the set of codes such that :

1) All codes are binary strings.
2) Each code should be able to determine its corresponding character uniquely.
3) The total numbers of bits used to represent the message are minimized.

Note:

If there are multiple sets of valid Huffman codes for a message. You can print any of them.

For example:

Consider the array ARR = [ 1, 4, 2 ] having 3 elements. 
The array containing Huffman Codes for the above array will be [ '10', '0', '11' ]. Other Valid Huffman Codes are [ '01', '1', '00' ], [ '00', '1', '01' ] etc. Codes like [ '1', '0', '01' ], [ '1', '10' , '0' ] are some of the invalid Huffman Codes.
Try solving now

2. Area Under Curve

Moderate
30m average time
60% success
0/80
Asked in companies
Jio Platforms LimitedIntello Labs

Given a curve whose edges are parallel to either X-axis or Y-axis, you need to find the area under this curve along the X-axis. The curve will be given in the form of a linked list containing N nodes, where each node represents the coordinates of the curve.

The area under the curve along the X-axis is defined as the total area covered by the curve and the line Y = 0. See the sample explanation figure below for further clarification.

Note
1. The coordinates will be given in non-descending order of X coordinate from start to end of the linked list.

2. All the coordinates will be pairwise distinct i.e there are no two coordinates (X1, Y1) and (X2, Y2) such that X1 =  X2 and Y1 = Y2 and there will be an edge between every two consecutive coordinates.

3. The first coordinate and the last coordinate in the input can be assumed as the starting point and the ending point of the curve respectively and there will not be an edge between these two coordinates.
Try solving now
02
Round
Medium
Online Coding Interview
Duration60 Minutes
Interview date25 Sep 2022
Coding problem2

Timing( was it late night) 

1. Count Number of Subsequences

Moderate
15m average time
85% success
0/80
Asked in companies
Goldman SachsHCL TechnologiesAmazon

Given an array of non-negative integers ‘A’ and an integer ‘P’, find the total number of subsequences of ‘A’ such that the product of any subsequence should not be more than ‘P’.

A subsequence is a sequence that can be derived from another sequence by deleting some or no elements without changing the order of the remaining elements.
Note
You need to print your answer modulo 10^9 + 7.
For Example
Let us take  A = [1,2,3] and P = 4. 
All the subsequences not having product more than ‘4’ are {1}, {2}, {3}, {1,2}, {1,3}. Therefore count is equal to ‘5’.
Problem approach

Step 1 : I first applied bubble sort. It was not good enough. 
Step 2 : Interviewer asked me to optimise the solution.
Step 3 : Then i gave solution with merge sort and interviewer was happy.

Try solving now

2. Box Stacking

Hard
25m average time
65% success
0/120
Asked in companies
DirectiMorgan StanleyJio Platforms Limited

You are given a set of ‘n’ types of rectangular 3-D boxes. The height, width, and length of each type of box are given by arrays, ‘height’, ‘width’, and ‘length’ respectively, each consisting of ‘n’ positive integers. The height, width, length of the i^th type box is given by ‘height[i]’, ‘width[i]’ and ‘length[i]’ respectively.

You need to create a stack of boxes that is as tall as possible using the given set of boxes.

Below are a few allowances:

You can only stack a box on top of another box if the dimensions of the 2-D base of the lower box ( both length and width ) are strictly larger than those of the 2-D base of the higher box. 

You can rotate a box so that any side functions as its base. It is also allowed to use multiple instances of the same type of box. This means, a single type of box when rotated, will generate multiple boxes with different dimensions, which may also be included in stack building.

Return the height of the highest possible stack so formed.

alt text

Note:
The height, Width, Length of the type of box will interchange after rotation.

No two boxes will have all three dimensions the same.

Don’t print anything, just return the height of the highest possible stack that can be formed.
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
SDE - 1
2 rounds | 1 problems
Interviewed by Jio Platforms Limited
1338 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
Software Engineer
3 rounds | 6 problems
Interviewed by Jio Platforms Limited
711 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Developer
5 rounds | 14 problems
Interviewed by Microsoft
3931 views
1 comments
0 upvotes
company logo
Software Developer
6 rounds | 12 problems
Interviewed by SAP Labs
2806 views
0 comments
0 upvotes
company logo
Software Developer
3 rounds | 3 problems
Interviewed by Amazon
1134 views
0 comments
0 upvotes