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

Filter interviews by

Jio Graduate Engineer Trainee (Get) Interview Questions and Answers

Updated 10 Dec 2024

17 Interview questions

A Graduate Engineer Trainee (Get) was asked 6mo ago
Q. What is a Binary Search Tree (BST)?
Ans. 

A Binary Search Tree (BST) is a data structure where each node has at most two children, with the left child being less than the parent and the right child being greater.

  • Nodes in a BST are arranged in a hierarchical order where each node has a left child and a right child.

  • The left child of a node contains a value less than the parent node, while the right child contains a value greater than the parent node.

  • BST all...

A Graduate Engineer Trainee (Get) was asked
Q. What are POST and GET calls?
Ans. 

Post and Get are HTTP methods used to send and receive data between a client and server.

  • GET is used to retrieve data from a server while POST is used to submit data to a server

  • GET requests are visible in the URL while POST requests are not

  • GET requests have a limit on the amount of data that can be sent while POST requests do not

  • Examples of GET requests include searching for information on a website while examples ...

Graduate Engineer Trainee (Get) Interview Questions Asked at Other Companies

asked in JBM Group
Q1. Q: 1 What is IC engine? What is the types of IC engine? Q:2 Diffe ... read more
Q2. How would you check the continuity of a wire inside a wall if the ... read more
Q3. What will be the cost of painting the wall behind me?
Q4. What happens when there is a large air void in concrete?
Q5. What are the different types of concrete?
A Graduate Engineer Trainee (Get) was asked
Q. What are Git and GitHub?
Ans. 

Git is a version control system and GitHub is a web-based platform for hosting and collaborating on Git repositories.

  • Git is used for tracking changes in code and collaborating with others on a project

  • GitHub provides a platform for hosting Git repositories and allows for easy collaboration and version control

  • GitHub also offers features like issue tracking, pull requests, and code reviews

  • Git and GitHub are widely us...

A Graduate Engineer Trainee (Get) was asked
Q. What are some common Java commands?
Ans. 

Java commands are instructions used to execute Java programs and perform various tasks.

  • Java commands are used to compile and run Java programs

  • Some commonly used Java commands include javac, java, jar, and jdb

  • Javac is used to compile Java source code into bytecode

  • Java is used to execute Java bytecode

  • Jar is used to create and manage Java archive files

  • Jdb is used to debug Java programs

  • Java commands can be executed fr...

What people are saying about Jio

View All
a software developer
5d
Career advice Android developer (kotlin + compose) ~ 4YoE
I needed suggestions as to what is the future path I can take for good money and growth. Currently what I'm thinking about: 1. iOS in Android dev 2. KMP/Flutter Also how should I transition to get this as my new job role in a new company without relevant experience.
Got a question about Jio?
Ask anonymously on communities.
A Graduate Engineer Trainee (Get) was asked
Q. Describe the four pillars of OOPS.
Ans. 

The 4 pillars of OOPs are Abstraction, Encapsulation, Inheritance, and Polymorphism.

  • Abstraction: Hiding implementation details and showing only necessary information.

  • Encapsulation: Binding data and functions together to protect data from outside interference.

  • Inheritance: Creating new classes from existing ones, inheriting properties and methods.

  • Polymorphism: Ability of objects to take on multiple forms or behavior...

A Graduate Engineer Trainee (Get) was asked
Q. Why does Java not support multiple inheritance?
Ans. 

Java doesn't have multiple inheritance to avoid the diamond problem.

  • Multiple inheritance can lead to ambiguity when two parent classes have the same method or variable.

  • Java supports multiple interface inheritance to achieve similar functionality.

  • Diamond problem occurs when a class inherits from two classes that have a common parent class.

  • C++ supports multiple inheritance but has to use virtual inheritance to avoid...

A Graduate Engineer Trainee (Get) was asked
Q. How many times do the hour and minute hands overlap on a 12-hour clock in a 12-hour period?
Ans. 

Number of times hour and minute hand overlap in a 12-hour clock in 12 hours.

  • The hands overlap every hour at 5 minutes past the hour.

  • The hands overlap once more between 12:00 and 1:00.

  • Total overlaps in 12 hours are 11.

Are these interview questions helpful?
A Graduate Engineer Trainee (Get) was asked
Q. Write an algorithm to determine if a number n is happy.
Ans. 

Determining if a number is happy or not.

  • A happy number is a number that results in 1 when replaced by the sum of the squares of its digits.

  • If the sum of squares of digits results in a cycle, the number is not happy.

  • For example, 19 is a happy number as 1^2 + 9^2 = 82, 8^2 + 2^2 = 68, 6^2 + 8^2 = 100, 1^2 + 0^2 + 0^2 = 1.

  • To check if a number is happy or not, we can use a hash set to keep track of the numbers we have...

A Graduate Engineer Trainee (Get) was asked
Q. How can you remove 50% of the water from a fully filled right cylinder using only the cylinder itself?
Ans. 

To remove 50% water from a fully filled right cylinder with only the cylinder available.

  • Measure the height of the cylinder

  • Mark the halfway point on the cylinder

  • Pour out the water until it reaches the halfway mark

A Graduate Engineer Trainee (Get) was asked
Q. What are the core concepts of OOPS?
Ans. 

OOPs is a programming paradigm based on the concept of objects, which can contain data and code.

  • OOPs stands for Object-Oriented Programming.

  • It focuses on creating objects that interact with each other to solve a problem.

  • It has four main concepts: encapsulation, inheritance, polymorphism, and abstraction.

  • Encapsulation is the process of hiding data and methods within a class.

  • Inheritance allows a class to inherit pro...

Jio Graduate Engineer Trainee (Get) Interview Experiences

22 interviews found

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

The aptitude test consists of 26 questions, including 2 coding questions.

Round 2 - Technical 

(3 Questions)

  • Q1. What is Data Structures
  • Ans. 

    Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Data structures define the way data is stored, accessed, and manipulated in a computer program.

    • Examples include arrays, linked lists, stacks, queues, trees, and graphs.

    • Choosing the right data structure is crucial for optimizing the performance of algorithms and applications.

  • Answered by AI
  • Q2. Explain a Binary Search Tree
  • Ans. 

    A Binary Search Tree (BST) is a data structure where each node has at most two children, with the left child being less than the parent and the right child being greater.

    • Nodes in a BST are arranged in a hierarchical order where each node has a left child and a right child.

    • The left child of a node contains a value less than the parent node, while the right child contains a value greater than the parent node.

    • BST allows f...

  • Answered by AI
  • Q3. Dijkstra Algorithm
  • Ans. 

    Dijkstra's Algorithm is a graph search algorithm for finding the shortest path from a single source to all other nodes in a graph with non-negative edge weights.

    • Dijkstra's Algorithm is used in various applications such as network routing protocols, GPS systems, and road navigation.

    • It works by maintaining a set of nodes with known shortest distance from the source and iteratively expanding this set by adding the nearest...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Questions on Resume

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Do practice dsa from leetcode and gfg

Round 2 - Aptitude Test 

Practice ample no of questions on di

Interview Preparation Tips

Interview preparation tips for other job seekers - practice well before interview go through mock interview
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is 2G,3G and 4G?
  • Ans. 

    2G, 3G, and 4G are generations of mobile network technology that provide different levels of speed and capabilities.

    • 2G stands for second generation and offers basic voice and text services.

    • 3G stands for third generation and introduced faster data speeds, enabling services like video calling and mobile internet.

    • 4G stands for fourth generation and provides even faster data speeds, supporting services like HD video stream...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

2 DataStructures and Algorithms Problems

Round 3 - Technical 

(2 Questions)

  • Q1. DSA questions, project related questions.
  • Q2. Array or String based questions
Round 4 - HR 

(2 Questions)

  • Q1. Normal Stuff common to every company
  • Q2. 1 puzzle question which is available on GFG

Interview Preparation Tips

Interview preparation tips for other job seekers - Mainly work on your programming basics, oops, DBMS and cloud and then prepare your project.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Jul 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 - Aptitude Test 

30 question in attitude round both technical as well as mathematics .

Round 3 - Technical 

(4 Questions)

  • Q1. What is HTML and CSS?
  • Ans. 

    HTML and CSS are languages used for creating and styling web pages.

    • HTML stands for HyperText Markup Language and is used for creating the structure of a web page.

    • CSS stands for Cascading Style Sheets and is used for styling the elements on a web page.

    • HTML is used to define the content and structure of a web page, while CSS is used to control the layout and appearance.

    • Example: <h1>This is a heading</h1> (HTM...

  • Answered by AI
  • Q2. What is git and github?
  • Ans. 

    Git is a version control system and GitHub is a web-based platform for hosting and collaborating on Git repositories.

    • Git is used for tracking changes in code and collaborating with others on a project

    • GitHub provides a platform for hosting Git repositories and allows for easy collaboration and version control

    • GitHub also offers features like issue tracking, pull requests, and code reviews

    • Git and GitHub are widely used in...

  • Answered by AI
  • Q3. What is java commands?
  • Ans. 

    Java commands are instructions used to execute Java programs and perform various tasks.

    • Java commands are used to compile and run Java programs

    • Some commonly used Java commands include javac, java, jar, and jdb

    • Javac is used to compile Java source code into bytecode

    • Java is used to execute Java bytecode

    • Jar is used to create and manage Java archive files

    • Jdb is used to debug Java programs

    • Java commands can be executed from th...

  • Answered by AI
  • Q4. What is Post and Get call?
  • Ans. 

    Post and Get are HTTP methods used to send and receive data between a client and server.

    • GET is used to retrieve data from a server while POST is used to submit data to a server

    • GET requests are visible in the URL while POST requests are not

    • GET requests have a limit on the amount of data that can be sent while POST requests do not

    • Examples of GET requests include searching for information on a website while examples of PO...

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a recent graduate with a degree in engineering, seeking a position as a Graduate Engineer Trainee.

    • Completed Bachelor's degree in Engineering

    • Strong knowledge in relevant engineering principles and concepts

    • Experience with engineering software and tools

    • Completed internships or projects related to engineering

    • Excellent problem-solving and analytical skills

    • Strong communication and teamwork abilities

  • Answered by AI
  • Q2. What is your weakness?
  • Ans. 

    My weakness is that I tend to be too detail-oriented, which can sometimes slow down my work.

    • I have a tendency to focus on small details and can sometimes lose sight of the bigger picture.

    • I often spend more time than necessary on tasks to ensure they are done perfectly.

    • I am working on improving my time management skills to balance attention to detail with efficiency.

    • For example, in my previous internship, I was assigned...

  • Answered by AI
  • Q3. Why are you choose IT field?
  • Ans. 

    I chose the IT field because of my passion for technology and problem-solving.

    • Passion for technology and problem-solving

    • Opportunities for growth and learning

    • High demand and job security

    • Ability to make a positive impact on society

    • Examples: Enjoying coding and programming, solving complex puzzles, staying updated with the latest tech trends

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Only go through your resume. Each and every point you mention in your resume only asked any questions in your resume that's it. Thank you

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 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. Basic C programming, Python
  • Q2. Any questions in c programming and Python

Interview Preparation Tips

Topics to prepare for Jio Graduate Engineer Trainee (Get) interview:
  • C
  • C++
  • Python
Interview preparation tips for other job seekers - Upload a resume in naukri.com

Thank you...

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

Round 1 - Aptitude Test 

24 aptitude + technical mcqs, 2 coding questions (easy, medium)

Round 2 - Technical 

(2 Questions)

  • Q1. Resume related questions
  • Q2. Software Engineering related questions (SDLC)
Round 3 - Technical 

(3 Questions)

  • Q1. Basic trending technologies were asked
  • Q2. Why do you want to join JIO
  • Ans. 

    I want to join JIO for its innovative culture, commitment to technology, and the opportunity to contribute to transformative projects.

    • JIO is at the forefront of digital transformation in India, providing a platform for innovative solutions.

    • The company's focus on cutting-edge technology aligns with my passion for engineering and development.

    • Joining JIO offers the chance to work on large-scale projects that impact millio...

  • Answered by AI
  • Q3. List 5 jio products, and resume related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and prepare well, and know atleast basic definition of every terms mention on your resume.
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 Feb 2022. There were 5 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 

Moderate Level Aptitude:- Quantitative, Logical Reasoning, Verbal ability + 2 code (if you score less than 60% you will go through Group Discussion Round)

Round 3 - Coding Test 

Q1. WAP to check number is automorphic or not.
Q2. WAP to find equilibrium index of an array.
Q3. WAP to count distinct element in an array.
Q4. WAP to find the next permutation.
Q5. WAP to check whether number is Armstrong or not.
Q6. WAP to find common elements in 3 sorted array.
(Main topics: Programs on Number,String,Array)
Atleast run 1 Program

Round 4 - Technical 

(1 Question)

  • Q1. Q1. Tell me about yourself? Q2. What is BIOS and OS? Q3. What is SDLC and their stages? Q4. What is Agile and Waterfall model? Q5. What is BlackBox Testing? Q6. OOPs Concepts (Encapsulation, Abstraction, I...
Round 5 - HR 

(1 Question)

  • Q1. Q1. Introduce yourself Q2. Father's Occupation Q3. Where do you stay? Q4. Your Project Q5. Your weakness Q6. Why JIO?

Interview Preparation Tips

Interview preparation tips for other job seekers - Never Think to apply for an interview only when you are fully prepared. It's never gonna happen that you know everything.

(Hope this helps you in your interview. Please up vote if you find my experience helpful .Peace)
Note: - This is my friends interview experience, I asked him everything and sharing with you guys.

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

2 coding questions of medium level difficulty , you could solve them if you have good coding experience

Round 3 - Technical 

(1 Question)

  • Q1. Insertion in doubly linked list , OOPS , project based questions , NOSQL vs SQL , rdbms vs dbms
Round 4 - Technical 

(1 Question)

  • Q1. Reversal of liked list , again about projects , real world uses of data structures

Interview Preparation Tips

Interview preparation tips for other job seekers - be strong with data structures (with implementations+theory), DBMS and softwarwe engineering and project management concepts
Round 1 - Aptitude Test 

It was easy with basic business related question

Round 2 - Technical 

(2 Questions)

  • Q1. Describe the 4 pillars of oops
  • Ans. 

    The 4 pillars of OOPs are Abstraction, Encapsulation, Inheritance, and Polymorphism.

    • Abstraction: Hiding implementation details and showing only necessary information.

    • Encapsulation: Binding data and functions together to protect data from outside interference.

    • Inheritance: Creating new classes from existing ones, inheriting properties and methods.

    • Polymorphism: Ability of objects to take on multiple forms or behaviors.

  • Answered by AI
  • Q2. Why java doesnt have multiple inheritance

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident while answering and have a good English speaking skill

Skills evaluated in this interview

Jio Interview FAQs

How many rounds are there in Jio Graduate Engineer Trainee (Get) interview?
Jio interview process usually has 2-3 rounds. The most common rounds in the Jio interview process are Technical, Aptitude Test and Resume Shortlist.
How to prepare for Jio Graduate Engineer Trainee (Get) 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 skills, Networking, Deployment, 3G and Accounting.
What are the top questions asked in Jio Graduate Engineer Trainee (Get) interview?

Some of the top questions asked at the Jio Graduate Engineer Trainee (Get) interview -

  1. 1. How many times hours and minutes hand overlap in a 12 hour clock in a durati...read more
  2. How to remove 50% water from a right cylinder. It is fully filled. You don't ha...read more
  3. What is HTML and C...read more
What are the most common questions asked in Jio Graduate Engineer Trainee (Get) HR round?

The most common HR questions asked in Jio Graduate Engineer Trainee (Get) interview are -

  1. Where do you see yourself in 5 yea...read more
  2. Why are you looking for a chan...read more
  3. What are your strengths and weakness...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 7 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 80%
2-4 weeks 20%
View more

Interview Questions from Similar Companies

Bharti Airtel Interview Questions
3.9
 • 960 Interviews
Vodafone Idea Interview Questions
4.0
 • 594 Interviews
HFCL Limited Interview Questions
3.9
 • 73 Interviews
BT E Serv Interview Questions
4.1
 • 44 Interviews
Dish Network Interview Questions
3.5
 • 32 Interviews
Tcil Interview Questions
3.9
 • 18 Interviews
Etisalat Interview Questions
3.3
 • 15 Interviews
View all
Jio Graduate Engineer Trainee (Get) Salary
based on 215 salaries
₹3.5 L/yr - ₹7 L/yr
39% more than the average Graduate Engineer Trainee (Get) Salary in India
View more details

Jio Graduate Engineer Trainee (Get) Reviews and Ratings

based on 20 reviews

4.0/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.1

Salary

4.1

Job security

3.2

Company culture

3.0

Promotions

2.9

Work satisfaction

Explore 20 Reviews and Ratings
Assistant Manager
5.3k salaries
unlock blur

₹4 L/yr - ₹8.5 L/yr

Deputy Manager
3.4k salaries
unlock blur

₹5.8 L/yr - ₹12.4 L/yr

Manager
1.8k salaries
unlock blur

₹10.7 L/yr - ₹18.4 L/yr

Senior Manager
1.5k salaries
unlock blur

₹16 L/yr - ₹29.5 L/yr

Senior Executive
1k salaries
unlock blur

₹2.4 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Jio with

Jio Platforms

3.4
Compare

Bharti Airtel

3.9
Compare

Vodafone Idea

4.0
Compare

Reliance Communications

4.0
Compare
write
Share an Interview