Upload Button Icon Add office photos

Filter interviews by

Jio Platforms Interview Questions, Process, and Tips for Experienced

Updated 4 Apr 2025

Top Jio Platforms Interview Questions and Answers for Experienced

View all 32 questions

Jio Platforms Interview Experiences for Experienced

Popular Designations

57 interviews found

Software Developer Interview Questions & Answers

user image Uneza Nakhwa

posted on 21 Jan 2023

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

I applied via Approached by Company and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Introduction about yourself. Project explanation. Which framework you have worked on. Hardly 20mins interview scheduled. Interviewer was very good and friendly. SQL questions. Oop concepts.
  • Q2. 2. Collection framework.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was easy. Not that difficult as I thought.

Top Jio Platforms Software Developer Interview Questions and Answers

Q1. Rotting Oranges Problem Statement You are given a grid containing oranges where each cell of the grid can contain one of the three integer values: 0 - representing an empty cell 1 - representing a fresh orange 2 - representing a rotten ora... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 24 May 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Remove duplicates from array
  • Ans. 

    Use a Set to remove duplicates from an array of strings.

    • Create a Set from the array to automatically remove duplicates

    • Convert the Set back to an array to get the final result

  • Answered by AI
  • Q2. SQL joins related questions
Round 2 - Technical 

(2 Questions)

  • Q1. Why Java is independent
  • Ans. 

    Java is independent due to its platform-independent nature and write once, run anywhere principle.

    • Java programs are compiled into bytecode, which can be executed on any platform with a Java Virtual Machine (JVM)

    • Java follows the principle of 'write once, run anywhere', allowing developers to write code on one platform and run it on any other platform without modification

    • Java's platform independence is achieved through t...

  • Answered by AI
  • Q2. Reverse linked list problem
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Create a new linked list with reversed order of nodes

    • Iterate through the original linked list and insert each node at the beginning of the new list

    • Update the head of the new list to point to the last node inserted

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about urself
  • Q2. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on DSA ,SQL and the projects mentioned in resume

Skills evaluated in this interview

Data Engineer Interview Questions asked at other Companies

Q1. Next Greater Element Problem Statement You are given an array arr of length N. For each element in the array, find the next greater element (NGE) that appears to the right. If there is no such greater element, return -1. Input: T N arr[0]... read more
View answer (3)

I applied via Naukri.com and was interviewed in Sep 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Take me through your profile
  • Q2. What difference will you make

Interview Preparation Tips

Interview preparation tips for other job seekers - Pls be yourself and will value the attitude to learn and grow

HR Business Partner Interview Questions asked at other Companies

Q1. If a company suffers in a loss so what can you do for decreasing the loss ?
View answer (2)

I applied via Approached by Company and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. All about ott and video parameters.
  • Q2. Packager and origin workflow
Round 2 - HR 

(1 Question)

  • Q1. Tell me something about yourself and salary negotiations.

Interview Preparation Tips

Interview preparation tips for other job seekers - Job is safe in comparison to other organizations but the salary they will offer you is far below thaen market standard and work life balance is also not there..They will force to work you on weekends and no comp offs are there. No family and personal time.

Assistant Manager Operations Interview Questions asked at other Companies

Q1. What can you tell me about xlookup function?
View answer (26)

Jio Platforms interview questions for popular designations

 Graduate Engineer Trainee (Get)

 (18)

 Software Developer

 (17)

 Assistant Manager

 (8)

 Deputy Manager

 (8)

 Software Engineer

 (7)

 Software Development Engineer

 (7)

 Product Manager

 (6)

 Data Scientist

 (5)

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

3 questions asked, don't remember exact question, all related to array & string level (easy/medium)

Round 2 - Technical 

(2 Questions)

  • Q1. Q. Introduce yourself and explain your college project? Q. Write code to check no. is palindromes or not ? with 3-4 different ways Q. theoretical question related to pointer and architecture design? Q. Di...
  • Q2. Q. (Puzzle) you 9 ball , out of which 1 ball is defective its weight is more than other ball, in how many minimum attempts you find defective ball? Q. Write code to find loop in link list and tell approac...

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have another offer, go for it, don't join jio as a freshers. Either candidate is underpaid or overpaid, it is not good for candidate in both cases.

Skills evaluated in this interview

Deputy Manager Interview Questions asked at other Companies

Q1. 1.WHAT IS SPECIAL OF UR HOME TOWN 2.Who is Main compitetor with us and which products...3.what is main business in your area and its functions...4 Previous comoany achevements 5.Your strengts and weakness.
View answer (72)

Get interview-ready with Top Jio Platforms Interview Questions

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Get random, push, and pop. All in O(1) time.
  • Ans. 

    Use a combination of a stack and a queue to achieve O(1) time complexity for random, push, and pop operations.

    • Use a stack to push elements and pop them in O(1) time.

    • Use a queue to enqueue elements and dequeue them in O(1) time.

    • To achieve random access in O(1) time, maintain an array to store the elements and use a hash map to store the indices of each element.

  • Answered by AI
  • Q2. Valid parentheses
  • Q3. Reverse a string
  • Ans. 

    Reverse a string by iterating through the characters and swapping them

    • Create a function that takes a string as input

    • Initialize two pointers, one at the beginning and one at the end of the string

    • Swap the characters at the two pointers and move them towards the center until they meet

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA is enough for SDE - 1

Skills evaluated in this interview

Software Development Engineer 1 Interview Questions asked at other Companies

Q1. 4. Design a system for making table reservations at a restaurant.
View answer (1)

I applied via Campus Placement and was interviewed in Sep 2022. There were 4 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 - Aptitude Test 

General apptitude test that every company conduct before the interview process.

Round 3 - Technical 

(1 Question)

  • Q1. Based on resume and also cover basic concepts in c, oops concepts, DBMS and some programming questions.
Round 4 - HR 

(1 Question)

  • Q1. General HR questions were asked after the technical interview and basics details were asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Whole process is simple and be confident in every stage.

Assistant Manager Interview Questions asked at other Companies

Q1. You are Handling cash operations then how you manage operations with sales ?
View answer (89)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Implement stack
  • Q2. Find the given target in an array in most optimised approach

Top Jio Platforms Software Developer Interview Questions and Answers

Q1. Rotting Oranges Problem Statement You are given a grid containing oranges where each cell of the grid can contain one of the three integer values: 0 - representing an empty cell 1 - representing a fresh orange 2 - representing a rotten ora... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Interview Questions & Answers

user image Anonymous

posted on 25 Nov 2022

I applied via Walk-in and was interviewed in May 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 - HR 

(2 Questions)

  • Q1. Fiber lead questions all telicom line knowledge
  • Q2. My current job positions fiber lead in ahamdabad
Round 3 - One-on-one 

(2 Questions)

  • Q1. Operation manisment development questions
  • Q2. All fttx & nld engineer questions

Interview Preparation Tips

Interview preparation tips for other job seekers - My name arvind singh jarseniya
I am total Experience 8 years fttx engineer & NLD engineer
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 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 

For device department it's c & c++

Round 3 - One-on-one 

(1 Question)

  • Q1. Biggest blocker in project and how get handled.

Senior Product Manager Interview Questions asked at other Companies

Q1. What are the growth hacks you would use to grow traffic?
View answer (1)

Jio Platforms Interview FAQs

How many rounds are there in Jio Platforms interview for experienced candidates?
Jio Platforms interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Jio Platforms interview process for experienced candidates are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Jio Platforms interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Jio Platforms. The most common topics and skills that interviewers at Jio Platforms expect are Appium, Automation Testing, Testing, Application Testing and Automation.
What are the top questions asked in Jio Platforms interview for experienced candidates?

Some of the top questions asked at the Jio Platforms interview for experienced candidates -

  1. What BRS and what will be the journal entry for ...read more
  2. What is the journal entry for purchase of an asset? How will it change if tax i...read more
  3. Q. (Puzzle) you 9 ball , out of which 1 ball is defective its weight is more th...read more
How long is the Jio Platforms interview process?

The duration of Jio Platforms interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Jio Platforms Interview Process for Experienced

based on 43 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

Mphasis Interview Questions
3.4
 • 809 Interviews
DXC Technology Interview Questions
3.7
 • 804 Interviews
Nagarro Interview Questions
4.0
 • 765 Interviews
NTT Data Interview Questions
3.8
 • 629 Interviews
Publicis Sapient Interview Questions
3.5
 • 623 Interviews
GlobalLogic Interview Questions
3.6
 • 594 Interviews
View all

Jio Platforms Reviews and Ratings

based on 1.5k reviews

3.5/5

Rating in categories

3.3

Skill development

3.5

Work-life balance

3.1

Salary

4.1

Job security

3.2

Company culture

2.7

Promotions

3.2

Work satisfaction

Explore 1.5k Reviews and Ratings
Software Developer
620 salaries
unlock blur

₹4.2 L/yr - ₹15 L/yr

Software Development Engineer
575 salaries
unlock blur

₹3 L/yr - ₹13 L/yr

Assistant Manager
486 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Product Manager
446 salaries
unlock blur

₹10 L/yr - ₹42 L/yr

Deputy Manager
445 salaries
unlock blur

₹4.8 L/yr - ₹20 L/yr

Explore more salaries
Compare Jio Platforms with

Jio

4.0
Compare

DXC Technology

3.7
Compare

Mphasis

3.4
Compare

Sutherland Global Services

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