Upload Button Icon Add office photos

Filter interviews by

Jio Platforms Software Developer Intern Interview Questions, Process, and Tips

Updated 1 Nov 2023

Top Jio Platforms Software Developer Intern Interview Questions and Answers

  • Q1. Reverse Words In A String You are given a string of length N. You need to reverse the string word by word. There can be multiple spaces between two words and there can be ...read more
  • Q2. Second largest element in the array You have been given an array/list 'ARR' of integers. Your task is to find the second largest element present in the 'ARR'. Note: a) Du ...read more
  • Q3. Basic HR Questions Basic HR questions were asked like: Where do you see yourself after 5 years Why do you want to switch from EXTC Why should we hire you

Jio Platforms Software Developer Intern Interview Experiences

3 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Coding Test 

Basic coding questions and cs fundamentals

Round 2 - HR 

(1 Question)

  • Q1. Basic hr questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology, Surathkal and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

Leetcode Medium Level Problems

Round 3 - Technical 

(1 Question)

  • Q1. Merge Sort , Project Discussion and OOPS MCQS

Interview Preparation Tips

Interview preparation tips for other job seekers - Revise DSA and other CS core subjects.

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your ta ... read more
asked in CommVault
Q2. Sliding Maximum You are given an array 'ARR' of integers of lengt ... read more
asked in Amazon
Q3. Fish EaterThere is a river which flows in one direction. One day, ... read more
Q4. Program to check the validity of a PasswordNinjas are trying to h ... read more
Q5. Find K Closest ElementsYou are given a sorted array 'A' of length ... read more

I was interviewed before Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. Reverse Words In A String

    You are given a string of length N. You need to reverse the string word by word. There can be multiple spaces between two words and there can be leading or trailing spaces but in ...

  • Ans. Brute force
    • Create a String ans to store the reversed string.
    • Initialize a variable i to 0 and iterate the whole string through a while loop.
    • Skip initial spaces by just incrementing i.
    • Create a String that will store the current word.
    • Add the currentword and space at the beginning of ans.
    • After traversing the whole string, check if the length of ans is greater than 0 then return ans after removing the last space otherwise r...
  • Answered Anonymously
Round 2 - HR 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Easy

  • Q1. Second largest element in the array

    You have been given an array/list 'ARR' of integers. Your task is to find the second largest element present in the 'ARR'.

    Note:
    a) Duplicate elements ...
  • Ans. Simple solution

    The idea is to sort the array in decreasing order and return the second largest element in the array.

    1. Sort the array in decreasing order.
    2. We can create a function to sort the elements using a sorting algorithm such as quicksort or use inbuilt sorting functions.
    3. Traverse from index 1(0-based indexing) because the element at index 0 will clearly be the first largest and check whether duplicates of the larger ...
  • Answered Anonymously

Interview Preparation Tips

Eligibility criteria8+ CGPAJio Platforms Limited interview preparation:Topics to prepare for the interview - Data Structures, OOPS, DBMS, OOPs, Algorithms, DP, Greedy, MLTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Try solving Love Babbar 450 Prog questions on youtube
Tip 2 : Have a good resume and projects
Tip 3 : Do learn some extra technologies eg. ML/AI

Application resume tips for other job seekers

Tip 1 : Do not lie at all
Tip 2 : Have some projects/internships listed

Final outcome of the interviewSelected

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. What was ur expected salary
  • Q2. Tell the needed one

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep prepared for every round
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

DSA questions of array and strings

Round 3 - Technical 

(1 Question)

  • Q1. DSA on array advanced topics

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA is must

I was interviewed in Dec 2020.

Round 1 - Video Call 

(3 Questions)

Round duration - 45 Minutes
Round difficulty - Easy

This round was held on Google Meet Video Call at 10 A.M.
There were 2 Interviewers and they were very helpful.

  • Q1. Kth largest element in the unsorted array

    You are given an array consisting of 'N' distinct positive integers and a number 'K'. Your task is to find the kth largest element in the array.

    E...
  • Ans. Brute Force
    • The most obvious brute force approach would be to sort the array in descending order and return the ‘K’th element from the beginning of the array.
    • Sort the array in descending order, for sorting most of the languages have their inbuilt sort methods which are usually very fast.
    • After sorting, return the element arr['K'-1](i.e. element at index ‘K’-1, considering 0-based indexing).
    Space Complexity: O(1)Explanati...
  • Answered Anonymously
  • Q2. System Design Question

    Draw E-R Diagram for Uber.

  • Q3. Maximum sum path from the leaf to root

    You are given a binary tree of 'N' nodes.

    Your task is to find the path from the leaf node to the root node which has the maximum path sum among all the roo...

  • Ans. Recursive Subproblem

    The idea here is that we will do a recursive solution by asking the children of the current node for the max sum path and then choose the path with the max sum. 

     

    The approach will be as follows:

    1. Get the max sum path for the left subtree.
    2. Get the max sum path for the right subtree.
    3. Select the one with the max sum from both and insert current node's data into it.
    4. Return the updated path.
       

    Al...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

The round was 2nd technical round conducted through Google Meet.
There were 2 interviewers and they were helpful.
Timing was from 11:10 A.M - 12:00 P.M

  • Q1. Add Two Numbers As Linked Lists

    You are given two linked lists representing two non-negative numbers. The digits in the linked list are stored in reverse order, i.e. starting from least significant digit (...

  • Ans. Recursion
    • A simple approach could be to recursively add the nodes of the linked list while keeping track of the carry generated.
    • The idea behind this approach is the same as finding the sum of two numbers manually on a paper, where we start by adding the LSD and move on till the MSD. Also, keeping track of the carry generated in every iteration.
    • As the linked lists represent the numbers in reverse order, the LSD occurs at...
  • Answered Anonymously
Round 3 - HR 

Round duration - 15 Minutes
Round difficulty - Easy

Timing was 12:30 P.M. to 1:00 P.M.
It was held on Google Meet and HR was helpful.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in ChennaiEligibility criteria70% aboveHexaware Technologies interview preparation:Topics to prepare for the interview - Dynamic Programming, Sort and Search Algorithms, Graphs, Data Structures ( Priority Queue, stack, sets), Greedy Algorithms, OOPS, DBMSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Contribute time for course subjects also like OS,DBMS,OOPS.
Tip 2 : Start practicing on Leetcode and InterviewBit 1 month before your Placement Drive and try solving approx 300+ questions.
Tip 3 : Regularly Participate in Coding Contests on CodeForces and try to be Expert.

Application resume tips for other job seekers

Tip 1 : Don't try to lie in resume as questions can be asked on the same in depth.
Tip 2 : Mention atleast 1 project or past work experience.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before May 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Medium

It was in the morning. It had basic questions and 2 programming questions(1 string and 1 Data Structure)

  • Q1. Character Pattern
    Pattern for N = 4
    A
    BC
    CDE
    DEFG
    
    Input format :
    Integer N (Total no. of rows)
    
    Output format :
    Pattern in N lines
    
    Const...
  • Ans. Space Complexity: Explanation: Time Complexity: Explanation:
  • Answered Anonymously
  • Q2. Stack using queue

    Implement a Stack Data Structure specifically to store integer data using two Queues.

    There should be two data members, both being Queues to store the data internally. You may use the i...

  • Ans. Approach 1
    • This method ensures that every new element entered in the queue ‘q1’ is always at the front.
    • Hence, during pop operation, we just dequeue from ‘q1’.
    • For this, we need another queue ‘q2., which is used to keep every new element to the front of ‘q1’.
    • During push operation :
      • Enqueue new element ‘x’ to queue ‘q2’.
      • One by one, dequeue everything from ‘q1’ and enqueue to ‘q2’.
      • Swap the names of ‘q1’ and ‘q2’.
    • During pop o...
  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

My interviewer asked me about my projects and the concepts involved in making it. Then he asked me to solve a string problem which was not very difficult followed by basic questions on array and it's properties. He also asked HTML tags.

  • Q1. Reverse the String

    You are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string.

    For example:

     If the given string is: STR...
  • Ans. Optimal Solution
    • Traverse the string and swap the first character with the last character, the second character with the second last character and so on.
    • Basically, you need to swap the i-th character with the (N-i-1)-th character where N is the length of the string and 0-based indexing is considered.
    Space Complexity: O(1)Explanation:

    O(1).

     

    In the worst case, only constant extra space is required.

    Time Complexity: O(...
  • Answered Anonymously
Round 3 - HR 

Round duration - 150 minutes
Round difficulty - Easy

This round for Sapient was based on it's core values and how I've implemented these once or more in life. It mostly involved discussion around my leadership, team player, problem solving and innovative skills as a part of the clubs in college. Also, what are my expectations from Sapient and what I bring to them

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in GurgaonEligibility criteriaAbove 6 CGPA, 60% in 12th and 10thPublicis Sapient interview preparation:Topics to prepare for the interview - Strings, Arrays, Stack, Queue, Basics of HTML, Basics of CSS, OOPSTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Be confident, clear and calm with the answers during interview
Tip 2 : Practice coding questions on based on different difficulty
Tip 3 : Prepare the topics thoroughly the questions might not be tough but they would be based on the core concept
Tip 4 : You should have at least 2 projects - JAVA and database related or Data Analytics

Application resume tips for other job seekers

Tip 1 : Projects are mandatory you can steer the interview in that direction
Tip 2 : Resume should only have what you actually know and did
Tip 3 : Add extra-curriculars (for Sapient it really matters if you have incidents related team building, leadership, conflict resolution experiences)

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Dec 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

This round contains 40 mcq questions 15 dsa and 25 aptitude.
then there was 5 coding questions.

  • Q1. Check If Binary Representation of a Number is Palindrome

    Ninja is given an integer ‘N’. Ninja wants to find whether the binary representation of integer ‘N’ is palindrome or not.

    A palindrome is a sequen...

  • Ans. 

    Check if binary conversion of given number is palindrome or not. Ex: 6 (0110) is palindrome.
    I used a recursive function for binary conversion and then check for palindrome using a loop. Refrain from using inbuilt functions as they wanna check your logic. O(n) time complexity.

  • Answered Anonymously
  • Q2. Word Break

    You are given a list of “N” strings A. Your task is to check whether you can form a given target string using a combination of one or more strings of A.

    Note :
    You can use any string of A mult...
  • Ans. 

     One Sentence (string) is given. find out the words, that has length even and greater than equal to 4 (e.g. 4,6,8.. etc.) and separate them with space.
    e.g. Given String : “abcd abc abcde abcdef”
    Output: “ab cd abc abcde abc def”
    I allocated a new string dynamically, and used two for loops to copy one string to another, adding a space at the middle of the word where word length was >=4 and even. O(n^2) time comple

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 25 minutes
Round difficulty - Easy

Technical Round

  • Q1. Sort 0 1

    You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once an...

  • Ans. 

    Then he made it complex by saying that if there are numbers from 0 to k in an array of size n then how will you sort them in O(n), I told him the count sort, he agreed with it and then asked me to quickly write down the code, I wrote it down, there was a silly mistake which he pointed out and said that it’s good and then moved on to next problem. He saw my code for fourth largest in an array, I did it using heap and ti...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Panjab University. I applied for the job as SDE - Intern in GurgaonEligibility criteriaAbove 7 CGPANagarro interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Web Development, Strings, Bit MappingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice well basics of dsa
Tip 2 : Have a good grip of core cs
Tip 3 : have good projects on resume

Application resume tips for other job seekers

Tip 1 : Don't put anything which you are not comfortable to speak
Tip 2 : make it short and crisp

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 78 minutes
Round difficulty - Easy

My slot was at 4.30 pm on 11 th oct 2020

  • Q1. Fishmonger

    A fishmonger wants to bring his goods from port to the market. On his route, he has to traverse an area with many states. He has to pay a toll at each border.

    He is a good businessman. He want...

  • Ans. Brute Force

    In this approach, we have to make a recursive function that returns the minimum toll needed to reach the N-1 node within the given time limit. We have to create a visited array of size N to maintain which vertices are already visited.

    1. We will check If we reached the last node, then return the currToll. This will act as the base case of the recursive function.
    2. We will call the recursive function on all the adja...
  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 20 Minutes
Round difficulty - Easy

It happened in the afternoon

  • Q1. Shape and Overriding

    Create a Class Shape having a field shapeType and a function printMyType.

    Create another class, Square and Rectangle, which inherits the Shape class and has additional fields length ...

  • Ans. Intuitive Approach
    • In the code, there is a class Shape has an attribute shapeType after that, we have class Square and Rectangle, which is inheriting the property of class Shape and has an additional attribute length, length, and breadth, respectively.
    • After that, we first create an object s of Square class and passed the length of a square, creating an object calling printMyType and calculateArea method, respectively.
    • He...
  • Answered Anonymously
  • Q2. DBMS Qustion

    What are ACID properties

Round 3 - Assignment 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. Assignment

    Write an essay on any topic and speak.

  • Ans. 

    Tip 1 : Have good pronunciation practice
    Tip 2 : Practice by reciting difficult words
     

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in PuneEligibility criteriaAbove 60% or 6 C.G.P.AHexaware Technologies interview preparation:Topics to prepare for the interview - Aptitude , Logical Reasoning , Verbal , DBMS , OS , Java Lang , Computer science basicsTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice good aptitude questions
Tip 2 : Read important core subjects thoroughly
Tip 3 : Also revise language basics

Application resume tips for other job seekers

Tip 1 : Be honest with your resume
Tip 2 : Try to somehow highlight your strong points in resume

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Normal MCQ style questions involving basic concepts

Round 2 - Coding Test 

2 coding questions: 1st one average, 2nd one slightly better than average.

Round 3 - Technical 

(1 Question)

  • Q1. Conceptual questions involving linked list, sorting, and various other general topics.
Round 4 - HR 

(2 Questions)

  • Q1. Your introduction
  • Q2. Normal conversation about various random topics (HR was trying to check my communication ability)

Jio Platforms Interview FAQs

How many rounds are there in Jio Platforms Software Developer Intern interview?
Jio Platforms interview process usually has 3 rounds. The most common rounds in the Jio Platforms interview process are Resume Shortlist, Coding Test and Technical.

Tell us how to improve this page.

Jio Platforms Software Developer Intern Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

3.0

Salary

4.0

Job security

2.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
552 salaries
unlock blur

₹4.1 L/yr - ₹16.1 L/yr

Software Development Engineer
511 salaries
unlock blur

₹3 L/yr - ₹13.2 L/yr

Assistant Manager
452 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Product Manager
417 salaries
unlock blur

₹10.2 L/yr - ₹40 L/yr

Senior Manager
358 salaries
unlock blur

₹13.5 L/yr - ₹44.3 L/yr

Explore more salaries
Compare Jio Platforms with

Jio

3.9
Compare

Reliance Industries

4.0
Compare

Bharti Airtel

4.0
Compare

Vodafone Idea

4.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview