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
3.9

based on 21.9k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Jio Sde1 Interview Questions and Answers

Updated 24 Mar 2023

Jio Sde1 Interview Experiences

2 interviews found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 25 Feb 2023

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

I applied via Campus Placement and was interviewed in Aug 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 - Technical 

(2 Questions)

  • Q1. DSA questions on sorting
  • Q2. Computer science fundamental questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for computer science fundamentals and practice data structure and algorithm

Sde1 Interview Questions & Answers

user image Anonymous

posted on 24 Mar 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

Basics of aptitude logical reasoning and etcs

Round 3 - Coding Test 

Wap for palindrome even odd and some string questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your self and focus one one languages on one language on which you r comfortable

Sde1 Interview Questions Asked at Other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and Arra ... read more
asked in Park Plus
Q2. 1. What is a doubly-linked list? And real-world applications.
asked in Amazon
Q3. pid ={3,5,0,1} ppid ={5,4,2,2} process id(pid) ppid=parent proces ... read more
Q4. Given one point and circle how will you find if it's inside circl ... read more
asked in Amazon
Q5. N queen problem with problem statement and dry running of code wi ... read more

Interview questions from similar companies

Sde1 Interview Questions & Answers

Amazon user image Anonymous

posted on 1 Jul 2024

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

1. Question on Graph LC-Hard 2. Question on BFS LC-Medium

Round 2 - One-on-one 

(2 Questions)

  • Q1. 1. Minimum platforms GFG
  • Q2. Find missing number in array without extra space
  • Ans. 

    Find missing number in array without extra space

    • Iterate through the array and XOR all the elements with their indices and the actual numbers

    • The missing number will be the XOR result

    • Example: ['1', '2', '4', '5'] -> XOR(0, 1) ^ XOR(1, 2) ^ XOR(2, 4) ^ XOR(3, 5) = 3

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Question on Heap
  • Q2. Implement Heap in C++
  • Ans. 

    Implementing Heap data structure in C++

    • Use an array to represent the binary tree structure of the heap

    • Implement functions for inserting elements, deleting elements, and heapifying the array

    • Ensure that the heap property is maintained (parent node is always greater than or equal to its children)

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. Implement LRU Cache
  • Ans. 

    LRU Cache is a data structure that stores a fixed number of items and removes the least recently used item when the cache is full.

    • Use a combination of a doubly linked list and a hashmap to efficiently implement LRU Cache.

    • Keep track of the least recently used item at the tail of the linked list.

    • When an item is accessed, move it to the head of the linked list to mark it as the most recently used item.

    • When adding a new it...

  • Answered by AI
  • Q2. Discussion on CV and previous projects
Round 5 - One-on-one 

(1 Question)

  • Q1. Easy LLD question

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Ppt and discussion - on all things in the company

Round 2 - Coding Test 

Leetcode - 2 medium, 1 hard

Interview Preparation Tips

Interview preparation tips for other job seekers - be calm, don't swear outside the placement area

Sde1 Interview Questions & Answers

TCS user image Anonymous

posted on 13 Jan 2023

Interview experience
5
Excellent
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 - Aptitude Test 

They asked some technical interview questions

Round 3 - HR 

(2 Questions)

  • Q1. How do you face challenges?
  • Q2. How do you deal with deadlines?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic CS subjects well and be ready for hr questions

Sde1 Interview Questions & Answers

Infosys user image Anonymous

posted on 27 Jun 2022

Round 1 - Aptitude Test 

Was good and you get questions from various topics.
Apti
Basics of cs

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Your strengths on technical subjects you have gine

Interview Preparation Tips

Interview preparation tips for other job seekers - Good with basics will be helpful and try to more focus in what you know and brush up your basics
Round 1 - Coding Test 

DSA
OOPS
C++
DBMS
OS
CN
BASIC MATHS
PROBABILITY
CALCULUS

Round 2 - Technical 

(1 Question)

  • Q1. DSA PROBABITLITY OOPS PROGRAMMING BASICS C++

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well from geeks for geeks and solve lots of DSA questions. also be thorough with whatever you write on your resume, every subject everything revise it beforehand

Sde1 Interview Questions & Answers

Amazon user image Harshita Manwani

posted on 17 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is linked list?
  • Ans. 

    A linked list is a linear data structure where elements are stored in nodes with each node pointing to the next node in the sequence.

    • Consists of nodes connected by pointers

    • Does not have a fixed size like arrays

    • Can easily insert or delete elements without shifting other elements

    • Examples: Singly linked list, Doubly linked list, Circular linked list

  • Answered by AI
  • Q2. How to use set in javascript
  • Ans. 

    Sets in JavaScript are used to store unique values of any type.

    • Create a new set using the Set constructor

    • Add values to the set using the add() method

    • Check if a value exists in the set using the has() method

    • Remove a value from the set using the delete() method

    • Iterate over the set using the forEach() method

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 features
  • Q2. Shallow copy and deep copy in java
  • Ans. 

    Shallow copy creates a new object with references to the original object's data, while deep copy creates a new object with copies of the original object's data.

    • Shallow copy only duplicates the references to the original object's data, not the data itself.

    • Deep copy creates a new object with copies of the original object's data, ensuring that changes to the copied object do not affect the original object.

    • In Java, shallow...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good

Skills evaluated in this interview

Sde1 Interview Questions & Answers

TCS user image Anonymous

posted on 18 Aug 2022

Round 1 - Aptitude Test 

Per question time good amoubnt of questions

Round 2 - HR 

(1 Question)

  • Q1. Easy questions based on my resume
Round 3 - Technical 

(1 Question)

  • Q1. Bvased on javba as i mentioned java in my resume

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on coding and aptitude and reasoni9ng as both are needed to crack the interview

Jio Interview FAQs

How many rounds are there in Jio Sde1 interview?
Jio interview process usually has 2-3 rounds. The most common rounds in the Jio interview process are Resume Shortlist, Technical and Aptitude Test.
How to prepare for Jio Sde1 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. The most common topics and skills that interviewers at Jio expect are Analytical, Data Management, Data Mining, Data Modeling and Deep Learning.
What are the top questions asked in Jio Sde1 interview?

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

  1. Computer science fundamental questi...read more
  2. DSA questions on sort...read more

Tell us how to improve this page.

Sde1 Interview Questions from Similar Companies

Amazon Sde1 Interview Questions
4.1
 • 33 Interviews
Accenture Sde1 Interview Questions
3.9
 • 3 Interviews
TCS Sde1 Interview Questions
3.7
 • 2 Interviews
Infosys Sde1 Interview Questions
3.7
 • 1 Interview
View all
Jio Sde1 Salary
based on 40 salaries
₹4.8 L/yr - ₹15.7 L/yr
52% less than the average Sde1 Salary in India
View more details

Jio Sde1 Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

5.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Assistant Manager
5.5k salaries
unlock blur

₹1 L/yr - ₹10.5 L/yr

Deputy Manager
3.5k salaries
unlock blur

₹4.2 L/yr - ₹13.6 L/yr

Manager
1.8k salaries
unlock blur

₹6 L/yr - ₹22.4 L/yr

Senior Manager
1.4k salaries
unlock blur

₹10.4 L/yr - ₹32 L/yr

Network Engineer
1.1k salaries
unlock blur

₹1.7 L/yr - ₹9.3 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

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