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

Software Engineer

Reliance Jio
upvote
share-icon
2 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Journey
started coding when I was in 1st year. I learned that to get an internship, we have to do coding. I started with basic coding, started with easy problems, and gradually increased the problem's difficulty. After that, I moved to Code Studio and solved problems based on tags: first easy, then medium, then hard.
Application story
I have seen on LinkedIn & the position is vacant so I have started approaching people, By luck or by my LinkedIn profile presence whatever we can say I got a reply from the assistant manager of the company and he put a referral for me
Why selected/rejected for the role?
I got selected because of the technical knowledge I have and the answers I gave. The interviewer was very satisfied with my projects and the way I explained my projects to him.
Preparation
Duration: 3 Months
Topics: Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming,System Design
Tip
Tip

Tip 1 : Practice at least 250 Questions
Tip 2 : Do at least 2 projects

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

Tip 1 : Have at least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects, and experiences more.

Interview rounds

01
Round
Medium
Video Call
Duration60 Minutes
Interview date10 Sep 2022
Coding problem2

1. 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.
Try solving now

2. Game of Stones

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

Given the count of total stones in a game. Two-player ‘Ale’ and ‘Bob’ are playing the game. Your task is to find who will win the game if both the players are playing optimally.

Rules of the game.

1. In a single turn, a player can choose a single stone or ‘even’ number of stones.

2. They will play alternatively, which means in the first chance ‘Ale’ will collect the stones, in second-chance ‘Bob’ will collect the stones. And always ‘Ale’ will start the game.

3. If any player is not able to take any stones then another player will win the game.

Try solving now
02
Round
Medium
Video Call
Duration60 Minutes
Interview date15 Sep 2022
Coding problem2

1. Move Zeroes To End

Moderate
30m average time
70% success
0/80
Asked in companies
AmazonMicrosoftThought Works

Given an unsorted array of integers, you have to move the array elements in a way such that all the zeroes are transferred to the end, and all the non-zero elements are moved to the front. The non-zero elements must be ordered in their order of appearance.

For example, if the input array is: [0, 1, -2, 3, 4, 0, 5, -27, 9, 0], then the output array must be:

[1, -2, 3, 4, 5, -27, 9, 0, 0, 0].

Expected Complexity: Try doing it in O(n) time complexity and O(1) space complexity. Here, ‘n’ is the size of the array.

Try solving now

2. Largest Number in Binary Tree

Moderate
36m average time
60% success
0/80
Asked in companies
OLX GroupSamsungSprinklr

You have been given a Binary Tree of 'N' nodes where the nodes have integer values.

Your task is to find the largest number that could be formed by concatenating all its nodes values.

For example:
For the given binary tree:   

tree example

Output: 96553210    

Explanation: After concatenating all the numbers in the above binary tree this is the largest number 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
company logo
Graduate Engineer Trainee
4 rounds | 8 problems
Interviewed by Reliance Jio
1338 views
0 comments
0 upvotes
company logo
SDE - 1
4 rounds | 8 problems
Interviewed by Amazon
8518 views
0 comments
0 upvotes
company logo
SDE - Intern
1 rounds | 3 problems
Interviewed by Amazon
3319 views
0 comments
0 upvotes
company logo
Backend Developer
2 rounds | 3 problems
Interviewed by Reliance Jio
890 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Engineer
3 rounds | 7 problems
Interviewed by Optum
7873 views
1 comments
0 upvotes
company logo
Software Engineer
5 rounds | 5 problems
Interviewed by Microsoft
9973 views
1 comments
0 upvotes
company logo
Software Engineer
2 rounds | 4 problems
Interviewed by Amazon
4310 views
1 comments
0 upvotes