Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Jio Team. If you also belong to the team, you can get access from here

Jio Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Jio SDE (Software Development Engineer) Interview Questions, Process, and Tips

Updated 11 Nov 2022

Top Jio SDE (Software Development Engineer) Interview Questions and Answers

  • Q1. Print all the Elements not present in a sorted array and tell the time and space complexity of the algorithm.
  • Q2. Given a sorted array arr, integer start and end. Find all the elements that are in the range of start and end and are missing in the array.
  • Q3. Print all the elements not present in an unsorted array and tell the time and space complexity of the algorithm.
View all 9 questions

Jio SDE (Software Development Engineer) Interview Experiences

3 interviews found

I applied via Recruitment Consulltant 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 - Technical 

(3 Questions)

  • Q1. Basic Concept of OOPs, Java, Spring Boot, MySQL.
  • Q2. Find the kth smallest value in an unsorted array
  • Ans. 

    Find the kth smallest value in an unsorted array

    • Sort the array and return the kth element

    • Use quickselect algorithm to find the kth smallest element in O(n) time

    • Build a min heap of size k and traverse the array to find the kth smallest element

  • Answered by AI
  • Q3. Merge Sort Algorithm Implementation
  • Ans. 

    Merge Sort is a divide and conquer algorithm that divides an array into two halves, sorts them and then merges them.

    • Divide the array into two halves recursively

    • Sort each half recursively using merge sort

    • Merge the two sorted halves

    • Time complexity is O(nlogn)

    • Space complexity is O(n)

  • Answered by AI
Round 3 - Technical 

(5 Questions)

  • Q1. Detailed discussion on the project I have worked on.
  • Q2. What is a Load Balancer?
  • Ans. 

    A Load Balancer distributes incoming network traffic across multiple servers to improve performance and availability.

    • It helps to avoid overloading a single server

    • It improves responsiveness and availability of applications

    • It can be hardware or software-based

    • Examples include Amazon ELB, F5 BIG-IP, and NGINX

    • It can also perform health checks on servers and route traffic accordingly

  • Answered by AI
  • Q3. Difference between Spring MVC and Spring Boot
  • Ans. 

    Spring MVC is a framework for building web applications, while Spring Boot is an opinionated framework for building standalone applications.

    • Spring MVC requires more configuration and setup compared to Spring Boot

    • Spring Boot provides a pre-configured environment with sensible defaults

    • Spring Boot includes an embedded server, making it easier to deploy standalone applications

    • Spring MVC is more suitable for building tradit...

  • Answered by AI
  • Q4. Difference between SQL and NoSQL
  • Ans. 

    SQL is a relational database management system while NoSQL is a non-relational database management system.

    • SQL databases are structured and use tables with predefined schema while NoSQL databases are unstructured and use collections or documents.

    • SQL databases use SQL (Structured Query Language) for querying and managing data while NoSQL databases use various query languages like MongoDB's query language.

    • SQL databases ar...

  • Answered by AI
  • Q5. Find the equilibrium index where the sum of all the values before the equilibrium index is equal to the sum of all the values after the equilibrium index.
  • Ans. 

    Find the equilibrium index where the sum of all values before it is equal to the sum of all values after it.

    • Iterate through the array and calculate the total sum.

    • Then iterate again and keep track of the left sum and right sum.

    • If they are equal at any index, return that index as the equilibrium index.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA Concepts well, Spring and java concepts, and projects you have mentioned in the resume.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Very Very easy coding questions with a lot of time. Basic DSA knowledge could have cracked it easily. The only problem that too not for me but for some my friends was their own test portal which was quite buggy.

Round 2 - Technical 

(2 Questions)

  • Q1. Given a sorted array arr, integer start and end. Find all the elements that are in the range of start and end and are missing in the array.
  • Ans. 

    Find missing elements in a sorted array within a given range.

    • Loop through the array and check if each element is within the given range.

    • If an element is outside the range, add all the missing elements within the range to a list.

    • Return the list of missing elements.

  • Answered by AI
  • Q2. What projects have you done?
Round 3 - HR 

(2 Questions)

  • Q1. Introduce yourself including your family background, education background, technical skills, interest and hobbies.
  • Q2. What do you know about Jio?

Interview Preparation Tips

Topics to prepare for Jio SDE (Software Development Engineer) interview:
  • Data Structures
  • Algorithms
  • DBMS
  • OS
Interview preparation tips for other job seekers - Trust me, it's very easy to get in Jio and by very easy I mean damn easy.

Skills evaluated in this interview

SDE (Software Development Engineer) Interview Questions Asked at Other Companies

asked in Carwale
Q1. A string is given consisting of lowercase alphabets. Write a func ... read more
asked in Carwale
Q2. Given a balance and 100 coins;out of which,one is heavier. Find m ... read more
Q3. Given a binary search tree , print the path which has the sum equ ... read more
asked in Housing.com
Q4. Given a square area of 1024x1024 on a map with some flats (housin ... read more
asked in Carwale
Q5. Delete nodes in linkedlist which have a greater value on right si ... read more

I applied via Company Website and was interviewed in Jun 2022. There were 4 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 - Coding Test 

90 Mins on amcat global platform, 2 Easy level questions on Array and two pointers

Round 3 - Technical 

(2 Questions)

  • Q1. Print all the Elements not present in a sorted array and tell the time and space complexity of the algorithm.
  • Ans. 

    Print all elements not present in a sorted array with time and space complexity.

    • Iterate through array and print missing elements

    • Use binary search for faster search

    • Time complexity: O(n log n)

    • Space complexity: O(1)

  • Answered by AI
  • Q2. Print all the elements not present in an unsorted array and tell the time and space complexity of the algorithm.
  • Ans. 

    Print all elements not present in an unsorted array and give time and space complexity.

    • Iterate through array and use a hashset to keep track of seen elements.

    • Print elements not in hashset.

    • Time complexity: O(n), Space complexity: O(n)

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself, your college , family, hobbies and projects
  • Q2. Why do you want to join this company?

Interview Preparation Tips

Topics to prepare for Jio SDE (Software Development Engineer) interview:
  • Arrays
  • Linked List
  • Two pointers
Interview preparation tips for other job seekers - It will be an easy experience, so chill out, practice 2 pointers, arrays and linked lists questions on LeetCode.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Sql related ques mege into, rank,dense rank,queries of joins etc.
  • Q2. Java 8 related ques optional and stream
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basi aptitude and coding mcq

Round 2 - Technical 

(1 Question)

  • Q1. What is hashmap
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Wap to sum of 3 numbers

Round 2 - HR 

(3 Questions)

  • Q1. What is your hobbies
  • Q2. Why you like to join viasat
  • Q3. Are u comfortable to relocate
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. I have interviewed for React, started with webpack related question
  • Q2. JavaScript questions
  • Q3. React and CSS basic questions.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Explain yourself in brief
Round 2 - Coding Test 

Programming Simple questions to understand your logical thinking

Round 3 - Coding Test 

Technical and HR round for better understanding your skills.

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

Team work - how to participate, foster etc.

Round 2 - HR 

(2 Questions)

  • Q1. Ambition and how to work towards it
  • Q2. How to function in a team

I was interviewed in Jan 2022.

Round 1 - Video Call 

(1 Question)

Round duration - 40 Minutes
Round difficulty - Medium

Round 1 was mainly focused on data structures and algorithms ,core java concepts and dbms

  • Q1. You are given a string. What is the minimum number of characters that need to be inserted to convert it into a palindrome?
  • Ans. 

    Tip 1 : Be clear and loud while solving problem , discuss approach with interviewer.

  • Answered Anonymously
Round 2 - Video Call 

Round duration - 40 to 50 min
Round difficulty - Medium

Focussed mainly on projects and system design

Round 3 - Video Call 

Round duration - 30 Minutes
Round difficulty - Medium

Managerial round

Round 4 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in GurgaonEligibility criteria1+ year of experienceAirtel interview preparation:Topics to prepare for the interview - 1. Data Structure and algorithms (arrays, queue, stack, LinkedList, Dynamic programming,Graph,Trees) 2. DBMS 3.System Design(might not asked to freshers) 4.Core and advanced Java 5. Computer Networks (not much)6. Operating SystemsTime required to prepare for the interview - 1.5 - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Make you Data Structure and algorithms , Problem solving strong ( use to do some dsa problems on code studio and leetcode daily.
Tip 2 : Practiced Quality questions and mostly asked questions list available on codestudio( used company tags and topic tags) as quality matters more than quantity of questions .
Tip 3 : Give mock interviews, this really helped me as it gives you clearity and builds confidence.
Tip 4 : Read respective company’s interview experiences available on codestudio and other websites before going to actual interview, as this gives you idea about level of interviews and you can prepare beforehand.
Tip 5 : after solving dsa problem .Try to look in discussion section too as you can get more optimised or more efficient approach used by others to solve the problem.
Tip 6 : Prepare important concepts from Operating system,DBMS,System design too as that might also be asked.
Tip 7 : Do atleast 2 quality projects.
Not a Tip But : Lot of quality content available online, whenever felt like stuck with some concepts take help from senior or colleagues ( I use to watch coding ninja shorts by parikh jain whenever felt demotivated or stuck with concepts)

Application resume tips for other job seekers

Tip 1 : Have a concise resume , don't fill your resume with unnecessary details like your address, relationship status etc.
Tip 2 :Resume should not be more than 2 pages( try to make it very concise in 1 page)

Final outcome of the interviewSelected

Skills evaluated in this interview

Jio Interview FAQs

How many rounds are there in Jio SDE (Software Development Engineer) interview?
Jio interview process usually has 3-4 rounds. The most common rounds in the Jio interview process are Technical, Resume Shortlist and Coding Test.
What are the top questions asked in Jio SDE (Software Development Engineer) interview?

Some of the top questions asked at the Jio SDE (Software Development Engineer) interview -

  1. Print all the Elements not present in a sorted array and tell the time and spac...read more
  2. Given a sorted array arr, integer start and end. Find all the elements that are...read more
  3. Print all the elements not present in an unsorted array and tell the time and s...read more

Tell us how to improve this page.

Jio SDE (Software Development Engineer) Salary
based on 41 salaries
₹4.5 L/yr - ₹16.4 L/yr
65% less than the average SDE (Software Development Engineer) Salary in India
View more details

Jio SDE (Software Development Engineer) Reviews and Ratings

based on 2 reviews

4.5/5

Rating in categories

4.5

Skill development

4.0

Work-life balance

3.6

Salary

4.5

Job security

4.5

Company culture

4.0

Promotions

4.5

Work satisfaction

Explore 2 Reviews and Ratings
Assistant Manager
5.4k salaries
unlock blur

₹1.2 L/yr - ₹10.5 L/yr

Deputy Manager
3.4k salaries
unlock blur

₹4.2 L/yr - ₹13.8 L/yr

Manager
1.8k salaries
unlock blur

₹6 L/yr - ₹22.4 L/yr

Senior Executive
1.5k salaries
unlock blur

₹1.7 L/yr - ₹8 L/yr

Senior Manager
1.4k salaries
unlock blur

₹10.3 L/yr - ₹30.6 L/yr

Explore more salaries
Compare Jio with

Jio Platforms

3.5
Compare

Bharti Airtel

4.0
Compare

Vodafone Idea

4.1
Compare

Bharat Sanchar Nigam

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