Logo

Get AmbitionBox App

Faster and better experience!

AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    WINNERS AWAITED!
    • ABECA 2025
      WINNERS AWAITED!

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    • AmbitionBox Best Places to Work 2021

      1st Edition

For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Jio Platforms

Compare button icon Compare button icon Compare
3.5

based on 1.6k Reviews

Play video Play video Video summary
  • About
  • Reviews
    1.6k
  • Salaries
    10.7k
  • Interviews
    208
  • Jobs
    -
  • Benefits
    82
  • Photos
    -
  • Posts
    2

Filter interviews by

Jio Platforms Interview Questions and Answers

Updated 12 May 2025
Popular Designations

75 Interview questions

A Jpam was asked 1w ago
Q. Do you know correlation values?
Ans. 

Correlation values (corr values) measure the strength and direction of a relationship between two variables.

  • Correlation values range from -1 to 1.

  • A value of 1 indicates a perfect positive correlation (e.g., height and weight).

  • A value of -1 indicates a perfect negative correlation (e.g., temperature and ice cream sales).

  • A value of 0 indicates no correlation (e.g., shoe size and intelligence).

  • Common methods to calcu...

View all Jpam interview questions
An Assistant Manager was asked 1mo ago
Q. What are your future career plans?
Ans. 

I aim to grow into a leadership role, enhancing my skills and contributing to team success while pursuing continuous learning.

  • Pursue further education, such as an MBA, to strengthen my management skills.

  • Seek mentorship opportunities to learn from experienced leaders in the industry.

  • Aim for a promotion to a managerial position within the next 3-5 years.

  • Engage in networking to build relationships that can lead to ne...

View all Assistant Manager interview questions
A Software Engineer (GET) was asked 1mo ago
Q. What advanced concepts do you understand in Java and Object-Oriented Programming (OOP)?
Ans. 

I understand advanced Java concepts like generics, streams, and design patterns, enhancing OOP principles for robust software design.

  • Generics: Allows for type-safe data structures. Example: List<String> ensures only Strings are added.

  • Streams: Facilitates functional-style operations on collections. Example: list.stream().filter(x -> x.startsWith("A")).collect(Collectors.toList());

  • Design Patterns: Common so...

A Java Developer was asked 1mo ago
Q. Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use ...
Ans. 

The Two Sum problem involves finding two numbers in an array that add up to a specific target sum.

  • Input: An array of integers and a target integer. Example: nums = [2, 7, 11, 15], target = 9.

  • Output: Indices of the two numbers that add up to the target. Example: Output for above input would be [0, 1].

  • Brute Force Approach: Check all pairs of numbers to see if they sum to the target. Time complexity: O(n^2).

  • Optimal A...

View all Java Developer interview questions

What people are saying about Jio Platforms

View All
pudur
Verified Icon
1w
works at
Jio Platforms
Salary
How much I can expect in ses chennai being 11years experience , if my current CTC 10Lpa
Got a question about Jio Platforms?
Ask anonymously on communities.
A C Developer was asked 3mo ago
Q. How would you store 12 bytes of character data into 6 bytes by reversing each byte?
Ans. 

To store 12 bytes of char in 6 bytes by reversing each byte, we can split the original bytes into pairs and reverse the order of each pair.

  • Split the 12 bytes into 6 pairs of 2 bytes each

  • Reverse the order of bytes in each pair

  • Store the reversed pairs in the 6 bytes of memory

View all C Developer interview questions
A Product Manager was asked 6mo ago
Q. Explain the product GTM strategy.
Ans. 

Product GTM strategy involves planning and executing the launch and promotion of a product to target customers.

  • Identify target market and customer segments

  • Develop messaging and positioning for the product

  • Choose distribution channels and pricing strategy

  • Create marketing and sales plans

  • Coordinate cross-functional teams for successful launch

  • Analyze and adjust strategy based on feedback and results

View all Product Manager interview questions
A Product Manager was asked 6mo ago
Q. Explain the key metrics for a B2B product launch.
Ans. 

Key metrics for B2B product launch include customer acquisition cost, customer lifetime value, conversion rate, and churn rate.

  • Customer Acquisition Cost (CAC) - the cost of acquiring a new customer, including marketing and sales expenses.

  • Customer Lifetime Value (CLV) - the total revenue a customer is expected to generate over their lifetime.

  • Conversion Rate - the percentage of leads that result in a sale or desired...

View all Product Manager interview questions
Are these interview questions helpful?
A Software Development Engineer was asked 6mo ago
Q. Explain the merge sort algorithm.
Ans. 

Merge sort is a divide and conquer algorithm that recursively splits an array into halves, sorts them, and then merges them back together.

  • Divide the array into two halves

  • Recursively sort each half

  • Merge the sorted halves back together

View all Software Development Engineer interview questions
A Data Scientist was asked 6mo ago
Q. Describe your understanding of LLM models and how to implement them.
Ans. 

Implementing a LLM model involves understanding its architecture and parameters.

  • Understand the architecture of the LLM model, which typically involves multiple layers of neurons.

  • Implement the model using a deep learning framework like TensorFlow or PyTorch.

  • Fine-tune the model by adjusting hyperparameters such as learning rate and batch size.

  • Train the model on a dataset with labeled examples to learn patterns and m...

View all Data Scientist interview questions
A Software Developer was asked 6mo ago
Q. Explain the rolling hash algorithm and its applications in data structures and algorithms.
Ans. 

Rolling hash is a hashing technique used in data structures and algorithms to efficiently compare substrings of text.

  • Rolling hash is used in algorithms like Rabin-Karp string matching algorithm.

  • It involves updating the hash value of a substring by removing the contribution of the first character and adding the contribution of the next character.

  • It is useful for comparing substrings in constant time complexity.

View all Software Developer interview questions
1 2 3 4 5 6 7

Jio Platforms Interview Experiences

208 interviews found

Product Manager Interview Questions & Answers

user image Anonymous

posted on 12 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Approached by Company

Round 1 - Technical 

(2 Questions)

  • Q1. Explain product GTM strategy.
  • Ans. 

    Product GTM strategy involves planning and executing the launch and promotion of a product to target customers.

    • Identify target market and customer segments

    • Develop messaging and positioning for the product

    • Choose distribution channels and pricing strategy

    • Create marketing and sales plans

    • Coordinate cross-functional teams for successful launch

    • Analyze and adjust strategy based on feedback and results

  • Answered by AI
    Add your answer
  • Q2. Explain key metrics for B2B product launch.
  • Ans. 

    Key metrics for B2B product launch include customer acquisition cost, customer lifetime value, conversion rate, and churn rate.

    • Customer Acquisition Cost (CAC) - the cost of acquiring a new customer, including marketing and sales expenses.

    • Customer Lifetime Value (CLV) - the total revenue a customer is expected to generate over their lifetime.

    • Conversion Rate - the percentage of leads that result in a sale or desired acti...

  • Answered by AI
    Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Explain various flavours of AB Testing. What tools did you use?
  • Ans. 

    AB Testing involves testing two or more versions of a webpage or app to see which one performs better.

    • A/B Testing: compares two versions of a webpage or app to see which one performs better

    • Multivariate Testing: tests multiple variables at once to see which combination is most effective

    • Split URL Testing: directs users to different URLs to test variations

    • Tools: Google Optimize, Optimizely, VWO, Adobe Target

  • Answered by AI
    Add your answer
  • Q2. How will you use prioritization frameworks while grooming backlog in Azure DevOps?
  • Ans. 

    Prioritization frameworks help in organizing and managing backlog efficiently in Azure DevOps.

    • Use frameworks like MoSCoW (Must have, Should have, Could have, Won't have) to categorize tasks based on priority

    • Consider factors like business value, effort required, and dependencies when prioritizing tasks

    • Regularly review and adjust priorities based on changing requirements and feedback

    • Example: Prioritize bug fixes over new...

  • Answered by AI
    Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Location preference
  • Add your answer

Product Manager Interview Questions asked at other Companies

Q1. You see an increasing number of order cancellations, with a 24-hour cancellation window. What would you do?
View answer (27)
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 1 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 Coding Problems (easy to medium difficulty) and 10 MCQ's regarding Basic CS subjects

Round 2 - One-on-one 

(3 Questions)

  • Q1. Introduction, education background, interests etc
  • Add your answer
  • Q2. Questions regarding OOPs, OS, Networking, DBMS (Core CSE subjects)
  • Add your answer
  • Q3. Coding question
  • Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Quick Introduction
  • Add your answer
  • Q2. Why Jio and what do you expect from JPL?
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are fresher, brush up your basic CSE Core subjects and a little DSA. rest should be fine.

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)
Anonymous

C Developer Interview Questions & Answers

user image Anonymous

posted on 12 Feb 2025

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

I appeared for an interview in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Insert node in single link list, stack implementation using array, call by value & call by reference, multithreading question using synchronization
  • Add your answer
  • Q2. Function overloading and Overriding
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Multithreading question using synchronization. More than one thread is writing and the same thread is reading..
  • Add your answer
  • Q2. There were 12 bytes of char and had to store that in 6 bytes reversing each byte.
  • Ans. 

    To store 12 bytes of char in 6 bytes by reversing each byte, we can split the original bytes into pairs and reverse the order of each pair.

    • Split the 12 bytes into 6 pairs of 2 bytes each

    • Reverse the order of bytes in each pair

    • Store the reversed pairs in the 6 bytes of memory

  • Answered by AI
    Add your answer

C Developer Interview Questions asked at other Companies

Q1. String Transformation Problem Given a string (STR) of length N, you are tasked to create a new string through the following method: Select the smallest character from the first K characters of STR, remove it from STR, and append it to the n... read more
View answer (1)
Anonymous

Interview Questions & Answers

user image Sanjana

posted on 30 Apr 2025

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. What do you consider to be your greatest strengths?
  • Ans. 

    My greatest strengths include strong communication skills, adaptability, and a customer-centric approach that drives satisfaction.

    • Strong Communication Skills: I excel in conveying information clearly and effectively, which helps in resolving customer queries promptly.

    • Adaptability: I can quickly adjust to new situations and challenges, as demonstrated when I successfully handled a sudden increase in call volume during a...

  • Answered by AI
    Add your answer
  • Q2. Why do you want to work here
  • Add your answer
  • Q3. Tell me about your self
  • Add your answer
  • Q4. What you do in your free time
  • Add your answer
  • Q5. In your opinion what are your greatest weaknennses
  • Ans. 

    My greatest weaknesses include time management and being overly critical of my work, which I continuously strive to improve.

    • Time Management: I sometimes struggle with prioritizing tasks effectively, leading to last-minute rushes. For example, I once missed a deadline because I underestimated the time needed for a project.

    • Perfectionism: I tend to be overly critical of my work, which can slow down my progress. For instan...

  • Answered by AI
    Add your answer
  • Q6. What do you consider your greatest accomplished
  • Ans. 

    My greatest accomplishment is successfully leading a team project that improved customer satisfaction by 30% through effective communication.

    • Team Leadership: I led a team of five in a project aimed at enhancing customer service protocols, resulting in a 30% increase in customer satisfaction scores.

    • Effective Communication: I implemented weekly check-ins and feedback sessions, which fostered open communication and collab...

  • Answered by AI
    Add your answer
  • Q7. What is your main goal?
  • Ans. 

    My main goal is to provide exceptional customer service while continuously improving my skills and contributing to team success.

    • Customer Satisfaction: I aim to ensure every customer interaction leaves them satisfied, like resolving a complaint effectively.

    • Skill Development: I want to enhance my communication and problem-solving skills through training and real-world experience.

    • Team Contribution: I strive to support my ...

  • Answered by AI
    Add your answer
  • Q8. What do you desire to achieve in your life?
  • Add your answer
  • Q9. What is your favorite company?
  • Ans. 

    My favorite company is Apple, known for its innovative technology, sleek design, and commitment to user experience.

    • Innovative Products: Apple consistently releases groundbreaking products like the iPhone and MacBook, setting trends in the tech industry.

    • User-Centric Design: Apple's focus on intuitive design ensures that their products are easy to use, enhancing customer satisfaction.

    • Ecosystem Integration: The seamless i...

  • Answered by AI
    Add your answer
  • Q10. Why it's your favourite
  • Ans. 

    I enjoy customer associate roles for their dynamic interaction, problem-solving opportunities, and the chance to make a positive impact.

    • Dynamic Interaction: Engaging with diverse customers daily keeps the job exciting and helps develop strong communication skills.

    • Problem-Solving: Each customer presents unique challenges, allowing me to think critically and find tailored solutions, enhancing my adaptability.

    • Positive Imp...

  • Answered by AI
    Add your answer
Anonymous

Data Scientist Interview Questions & Answers

user image Anonymous

posted on 6 Nov 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Technical things
  • Add your answer
  • Q2. Llm model understanding how to implement
  • Ans. 

    Implementing a LLM model involves understanding its architecture and parameters.

    • Understand the architecture of the LLM model, which typically involves multiple layers of neurons.

    • Implement the model using a deep learning framework like TensorFlow or PyTorch.

    • Fine-tune the model by adjusting hyperparameters such as learning rate and batch size.

    • Train the model on a dataset with labeled examples to learn patterns and make p...

  • Answered by AI
    Add your answer
Round 2 - HR 

(2 Questions)

  • Q1. Willing to relocate
  • Add your answer
  • Q2. Expected ctc, fixed variable
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was easy

Skills evaluated in this interview

Data Scientist Interview Questions asked at other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you find a line that best fits the data, to be able to extrapolate? this is not a supervised ML problem, there's no target. and how would you do it, if you want to treat this as a s... read more
View answer (5)
Anonymous

Senior Telecaller Interview Questions & Answers

user image Alfiya Shaikh

posted on 9 Jul 2024

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

I applied via Walk-in and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Assignment 

Any informative article

Round 2 - Technical 

(4 Questions)

  • Q1. Telercaller as fresher
  • Add your answer
  • Q2. Something to learn innovative
  • Add your answer
  • Q3. Having something to gain Informative and achieve goals
  • Add your answer
  • Q4. Helping customers services in different way and solve issues
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - To learn something in proper manner and to achieve something

Senior Telecaller Interview Questions asked at other Companies

Q1. If given the opportunity, will you complete your studies?
View answer (1)
Anonymous

Jpam Interview Questions & Answers

user image Anonymous

posted on 12 May 2025

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Do you know corr values
  • Ans. 

    Correlation values (corr values) measure the strength and direction of a relationship between two variables.

    • Correlation values range from -1 to 1.

    • A value of 1 indicates a perfect positive correlation (e.g., height and weight).

    • A value of -1 indicates a perfect negative correlation (e.g., temperature and ice cream sales).

    • A value of 0 indicates no correlation (e.g., shoe size and intelligence).

    • Common methods to calculate ...

  • Answered by AI
    Add your answer
  • Q2. What is your role in jio
  • Ans. 

    As a team member at Jio, I contribute to innovative projects that enhance connectivity and digital services for millions of users.

    • Collaborate with cross-functional teams to develop new features for Jio's mobile and broadband services.

    • Analyze user feedback to improve service quality, leading to a 20% increase in customer satisfaction.

    • Implement data-driven strategies to optimize network performance, resulting in reduced ...

  • Answered by AI
    Add your answer
  • Q3. How many leaves you are jio
  • Add your answer

Jpam Interview Questions asked at other Companies

Q1. In how many days did Jio acquire its first 100 million customers?
View answer (1)
Anonymous

Product Manager Interview Questions & Answers

user image Mohit Agrawal

posted on 19 Aug 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview in Jul 2024.

Round 1 - Technical 

(1 Question)

  • Q1. How you will improve an image search of any app?
  • Ans. 

    I would improve image search by implementing advanced image recognition technology and optimizing search algorithms.

    • Implement AI-powered image recognition technology to accurately identify objects in images

    • Optimize search algorithms to prioritize relevant images based on user input and behavior

    • Allow users to filter search results by various criteria such as color, size, and type

    • Incorporate user feedback to continuously...

  • Answered by AI
    Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. Uber saw a sudden surge in orders, analyze the reason for the same
  • Ans. 

    Uber saw a sudden surge in orders due to increased demand during peak hours and promotions.

    • Increased demand during peak hours, such as rush hour or weekends

    • Promotions or discounts offered by Uber to attract more customers

    • Events or holidays leading to higher transportation needs

    • Improved app features or user experience driving more usage

  • Answered by AI
    Add your answer
Round 3 - Technical 

(1 Question)

  • Q1. What are functional and non-functional requirements?
  • Ans. 

    Functional requirements specify what the system should do, while non-functional requirements specify how the system should perform.

    • Functional requirements describe the specific behavior or functions of the system, such as user authentication or data processing.

    • Non-functional requirements focus on qualities like performance, security, and usability, such as response time or scalability.

    • Functional requirements are typica...

  • Answered by AI
    Add your answer
Round 4 - HR 

(1 Question)

  • Q1. Why do you want to join Jio?
  • Add your answer

Skills evaluated in this interview

Product Manager Interview Questions asked at other Companies

Q1. You see an increasing number of order cancellations, with a 24-hour cancellation window. What would you do?
View answer (27)
Anonymous

Graduate Engineer Trainee (Get) Interview Questions & Answers

user image Anonymous

posted on 31 Aug 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

50 questions on aptitiude

Round 2 - Coding Test 

2 coding questions were asked

Round 3 - Technical 

(2 Questions)

  • Q1. Find middle node in Linkedin List.
  • Ans. 

    To find the middle node in a linked list, use the slow and fast pointer approach.

    • Initialize two pointers, slow and fast, at the head of the linked list.

    • Move the slow pointer by one step and the fast pointer by two steps until the fast pointer reaches the end of the list.

    • The node pointed to by the slow pointer at this point is the middle node.

  • Answered by AI
    Add your answer
  • Q2. Write code for inorder triversal without using recursion.
  • Ans. 

    Iterative inorder traversal using a stack

    • Create an empty stack to store nodes

    • Initialize current node as root

    • While current is not null or stack is not empty, keep traversing left subtree and pushing nodes onto stack

    • Pop a node from stack, print its value, and set current to its right child

    • Repeat until all nodes are traversed

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Graduate Engineer Trainee (Get) Interview Questions asked at other Companies

Q1. Q: 1 What is IC engine? What is the types of IC engine? Q:2 Difference between Otto cycle and Diesel cycle? What is the process of both cycle and what is the effeciency of both cycle ? Which one is good in effeciency? Q:3 Difference between... read more
View answer (2)
Anonymous

Software Development Engineer Interview Questions & Answers

user image Anonymous

posted on 8 Nov 2024

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

(1 Question)

  • Q1. Explain merge sort code
  • Ans. 

    Merge sort is a divide and conquer algorithm that recursively splits an array into halves, sorts them, and then merges them back together.

    • Divide the array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be good in your basics concepts and resume thoroughly

Skills evaluated in this interview

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road and each vertex represents an intersection, write an algorithm to find the minimum number of vertices at which police officers should be stationed so that all the roads are ... read more
View answer (2)
Anonymous
More about working at Jio Platforms
  • IT Services & Consulting
  • 10k-50k Employees (India)

Jio Platforms Interview FAQs

How many rounds are there in Jio Platforms interview?
Jio Platforms interview process usually has 2-3 rounds. The most common rounds in the Jio Platforms interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Jio Platforms interview?
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, IT, Testing and Application Testing.
What are the top questions asked in Jio Platforms interview?

Some of the top questions asked at the Jio Platforms interview -

  1. Is is possible to implement stack using queue...read more
  2. Tell me something about recursion also do you have idea about time and space co...read more
  3. What is Frontend, Do you know Node j...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 Interviews By Designations

  • Jio Platforms Graduate Engineer Trainee (Get) Interview Questions
  • Jio Platforms Software Developer Interview Questions
  • Jio Platforms Assistant Manager Interview Questions
  • Jio Platforms Deputy Manager Interview Questions
  • Jio Platforms Software Engineer Interview Questions
  • Jio Platforms Software Development Engineer Interview Questions
  • Jio Platforms Product Manager Interview Questions
  • Jio Platforms Data Scientist Interview Questions
  • Show more
  • Jio Platforms Data Engineer Interview Questions
  • Jio Platforms Engineer Trainee Interview Questions

Interview Questions for Popular Designations

  • Graduate Engineer Trainee (Get) Interview Questions
  • Software Developer Interview Questions
  • Deputy Manager Interview Questions
  • Assistant Manager Interview Questions
  • Software Engineer Interview Questions
  • Software Development Engineer Interview Questions
  • Product Manager Interview Questions
  • Engineer Trainee Interview Questions
  • Show more
  • Data Engineer Interview Questions
  • Data Scientist Interview Questions

Overall Interview Experience Rating

4.1/5

based on 233 interview experiences

Difficulty level

Easy 32%
Moderate 62%
Hard 6%

Duration

Less than 2 weeks 68%
2-4 weeks 20%
4-6 weeks 5%
6-8 weeks 4%
More than 8 weeks 3%
View more

Interview Questions from Similar Companies

Mphasis
Mphasis Interview Questions
3.4
 • 829 Interviews
DXC Technology
DXC Technology Interview Questions
3.7
 • 820 Interviews
EXL Service
EXL Service Interview Questions
3.7
 • 778 Interviews
Hexaware Technologies
Hexaware Technologies Interview Questions
3.5
 • 739 Interviews
Sutherland Global Services
Sutherland Global Services Interview Questions
3.5
 • 664 Interviews
Optum Global Solutions
Optum Global Solutions Interview Questions
4.0
 • 652 Interviews
Virtusa Consulting Services
Virtusa Consulting Services Interview Questions
3.7
 • 605 Interviews
L&T Technology Services
L&T Technology Services Interview Questions
3.3
 • 555 Interviews
eClerx
eClerx Interview Questions
3.3
 • 554 Interviews
Coforge
Coforge Interview Questions
3.3
 • 552 Interviews
View all

Jio Platforms Reviews and Ratings

based on 1.6k reviews

3.5/5

Rating in categories

3.3

Skill development

3.5

Work-life balance

3.0

Salary

4.1

Job security

3.2

Company culture

2.7

Promotions

3.2

Work satisfaction

Explore 1.6k Reviews and Ratings
Jio Platforms Salaries in India
Software Developer
654 salaries
unlock blur

₹4.2 L/yr - ₹15 L/yr

Software Development Engineer
619 salaries
unlock blur

₹4.5 L/yr - ₹12.9 L/yr

Assistant Manager
530 salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Product Manager
465 salaries
unlock blur

₹10 L/yr - ₹42 L/yr

Deputy Manager
439 salaries
unlock blur

₹5.5 L/yr - ₹22.5 L/yr

Explore more salaries
Compare Jio Platforms with
Jio

Jio

4.0
Compare
DXC Technology

DXC Technology

3.7
Compare
Mphasis

Mphasis

3.3
Compare
EXL Service

EXL Service

3.7
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Jio Platforms Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Helping over 1 Crore job seekers every month in choosing their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

6 Lakh+

Interviews

1 Crore+

Users/Month

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2026
  • ABECA 2025 winners awaited tag
  • ABECA 2024
  • AmbitionBox Best Places to Work 2022
  • AmbitionBox Best Places to Work 2021
  • Invite employees to rate
AmbitionBox
  • About Us
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter