Upload Button Icon Add office photos

Filter interviews by

Jio Platforms Graduate Engineer Trainee (Get) Interview Questions, Process, and Tips

Updated 31 Aug 2024

Top Jio Platforms Graduate Engineer Trainee (Get) Interview Questions and Answers

  • Q1. Distinct Subarrays with At Most K Odd Elements Given an array A of N integers, determine the total number of distinct subarrays that contain at most K odd elements. Exam ...read more
  • Q2. Is is possible to implement stack using queues ?
  • Q3. Tell me something about recursion also do you have idea about time and space complexity.
View all 19 questions

Jio Platforms Graduate Engineer Trainee (Get) Interview Experiences

18 interviews found

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
  • 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

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via campus placement at Indian Institute of Information Technology (IIIT), Kota

Round 1 - Coding Test 

Delete n node from last of linked list. and some OS Basic Question.

Round 2 - Technical 

(2 Questions)

  • Q1. OS Basic Question
  • Q2. Trie Data Structure QUESTION

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 to check for continuity for a wire inside a wall if the start ... read more
Q3. What will be the cost of painting the wall behind me?
Q4. What happen when there is large air void in concrete?
Q5. What are the different types of concrete?

I applied via campus placement at Pune Vidyarthi Griha's College of Engineering and Technology, Pune and was interviewed in Nov 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 - One-on-one 

(4 Questions)

  • Q1. This was L0 round it started from , Tell me something about yourself.
  • Ans. Just be calm , confident and honest and give a glimpse of your beautiful life to the interviewer.
  • Answered Anonymously
  • Q2. Then started Rapid Coding Questions
  • Q3. What is Java ? Oops concepts ? DBMS concept ( primary key , 2 vs 3 tier architecture, ACID properties ) Logic for basic loops Is there any way to print 1 to 100 without using any loops Also the interviewe...
  • Q4. Eventually i cleared the L0 round
Round 3 - One-on-one 

(8 Questions)

  • Q1. Then came time for L1 round
  • Q2. In this the interviewer was an employee of Jio platforms working as Software Engineer. They first made me comfortable by asking about my day and then started to question me over my resume. I am very devel...
  • Q3. What is Frontend, Do you know Node js ?
  • Ans. 

    Frontend is the part of a website or application that users interact with. Node.js is a JavaScript runtime environment.

    • Frontend refers to the user interface and user experience of a website or application.

    • It includes the design, layout, and functionality of the website or application.

    • Node.js is a JavaScript runtime environment that allows developers to run JavaScript on the server-side.

    • It is commonly used for building ...

  • Answered by AI
  • Q4. Is is possible to implement stack using queues ?
  • Ans. 

    Yes, it is possible to implement stack using queues.

    • Implement push operation by enqueueing elements to the queue.

    • Implement pop operation by dequeuing all elements except the last one and enqueueing them again.

    • The last element in the queue will be the top element of the stack.

    • Example: Queue: 1 2 3 4 5, Stack: 5 4 3 2 1

  • Answered by AI
  • Q5. Tell me something about recursion also do you have idea about time and space complexity.
  • Ans. 

    Recursion is a process in which a function calls itself. Time and space complexity are important factors to consider while using recursion.

    • Recursion is used to solve problems that can be broken down into smaller sub-problems.

    • It involves a base case and a recursive case.

    • Time complexity refers to the amount of time taken by an algorithm to run, while space complexity refers to the amount of memory used by an algorithm.

    • Re...

  • Answered by AI
  • Q6. Explain your projects to me . After my answer pointed out some loop holes and then tried to brainstorm with me over the same .
  • Q7. Also some more questions regarding to SQL etc
  • Q8. Eventually i also cleared round L1
Round 4 - Technical 

(5 Questions)

  • Q1. In this round there were two members, one technical interviewer and one HR.
  • Q2. Questions were good like sorting , searching etc
  • Q3. I was able to do good but eventually i was caught off-guard when suddenly they asked which phone i used and why i preferred it.
  • Ans. But i replied with a smile that my dad had put budget constraints on me , this made the entire mood of the interview light.
  • Answered Anonymously
  • Q4. Then they asked whether i was okay to relocate and also what were my extra curricular activities
  • Q5. Eventually i got selected and got Jio Spark - 5 Lpa

Interview Preparation Tips

Topics to prepare for Jio Platforms Graduate Engineer Trainee (Get) interview:
  • Java
  • DSA
  • Problem Solving
  • Development
  • SQL
  • DBMS
Interview preparation tips for other job seekers - Ahead more two round are there Jio Ignite - 6 Lpa and Jio Illuminate - 7 Lpa , hope so i crack it and would definitely share that as well.
Tip :- Just be natural and honest don't lie the person in front of you has much more credibility than you on this so please keep that in mind .
Hope so i provided some good guidance, All the Best :)

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Interview L1 

(3 Questions)

  • Q1. Write a query to print the no of employees having salary more than 5000/-
  • Ans. 

    Query to print the number of employees with salary > 5000/-

    • Use SELECT COUNT(*) to count the number of employees

    • Add WHERE clause to filter employees with salary > 5000/-

  • Answered by AI
  • Q2. Is there difference between SQL and MySQL
  • Ans. 

    Yes, there is a difference between SQL and MySQL.

    • SQL is a standardized language for managing relational databases, while MySQL is a specific relational database management system (RDBMS) that uses SQL as its language.

    • SQL is a language used to communicate with databases, while MySQL is a software that implements and manages databases.

    • MySQL is one of the many RDBMS options available, while SQL is a language used across d...

  • Answered by AI
  • Q3. What is SDLC ? DDL and DML commands? What is right join explain it with an example? What is LIFO and LILO ? Real time application of python? What is linked list?
  • Ans. 

    A set of questions related to software development, database management, and data structures.

    • SDLC stands for Software Development Life Cycle and is a process used to design, develop, and test software.

    • DDL (Data Definition Language) commands are used to create, modify, and delete database objects like tables, indexes, etc.

    • DML (Data Manipulation Language) commands are used to insert, update, and delete data in a database...

  • Answered by AI
Round 2 - Interview L2 

(2 Questions)

  • Q1. What are your IT skills?
  • Q2. Which is fast c or python during execution? Difference between malloc and calloc ? What is memory allocation? What is method overriding? Why Jio?
  • Ans. 

    Questions related to programming and Jio

    • Python is slower than C during execution

    • malloc allocates memory without initializing it, while calloc allocates and initializes memory to zero

    • Memory allocation is the process of reserving a portion of the computer's memory for a program to use

    • Method overriding is when a subclass provides a different implementation of a method that is already defined in its superclass

    • Jio is a popu...

  • Answered by AI
Round 3 - Interview L3 

(3 Questions)

  • Q1. Linked list related problems
  • Q2. Project related questions
  • Q3. Are you a leader? What you expect from Jio

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer in 2nd round was quite rude. He didn't give any greetings, infact I am the one who was having a smile and treating him nicely. But in a couple of seconds I discovered that he was very impudent and not friendly. So, I felt nervous for while but, didn't let my confidence down and try to be more hard to answer him back.
So, the tip is that don't lose the confidence because of some interviewer.

Skills evaluated in this interview

Jio Platforms interview questions for designations

 Graduate Trainee

 (1)

 Engineer Trainee

 (5)

 Management Trainee

 (1)

 Service Engineer

 (1)

 SMT Engineer

 (1)

 Software Engineer

 (7)

 Data Engineer

 (5)

 Devops Engineer

 (2)

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

I applied via campus placement at Delhi College of Engineering (DCE), Delhi and was interviewed in Dec 2022. There were 3 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 

Test are some from english
puzzle and
some technical questions

Round 3 - Technical 

(2 Questions)

  • Q1. Two coding. some questions asked from oops. and some questions are from DS two coding some questions asked from oops and some questions are from ds
  • Q2. Two coding questions some questions asked from oops and some questions asked from ds

Interview Preparation Tips

Interview preparation tips for other job seekers - firstly he ask what you know about reliance jio.
and give me your introduction and

Get interview-ready with Top Jio Platforms Interview Questions

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Aug 2022. There were 5 interview rounds.

Round 1 - Coding Test 

The test was about 90 minutes with 20 questions in total. Out off 20 questions 18 are of aptitude, reasoning and verbal. The last 2 questions are of coding.

Round 2 - Group Discussion 

The second round was optional. Candidates who are unable to clear the first round were given a second chance through Group Discussion.

Round 3 - Technical 

(1 Question)

  • Q1. Question related to Oops, Data Structure, Project and Linux
Round 4 - HR 

(1 Question)

  • Q1. Basic question about myself, family, project and previous drives.
Round 5 - Technical 

(1 Question)

  • Q1. This was my last round for package upgradation. This was technical round. Question were related to flutter, oops, C++, Data Structure and project.

Interview Preparation Tips

Topics to prepare for Jio Platforms Graduate Engineer Trainee (Get) interview:
  • OOPS
  • Data Structures
Interview preparation tips for other job seekers - My advice to the job seekers is to keep faith in themself and god and keep polishing there technical and soft skills.

I applied via Company Website and was interviewed in Sep 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

1 medium and 1 hard question of DSA

Round 3 - Technical 

(1 Question)

  • Q1. Asked multiple coding questions create a linked list data structure then reverse it, find duplicates in array etc and technical questions of sorting algorithms, stack, queue, some graph questions and final...
Round 4 - HR 

(1 Question)

  • Q1. Normal HR questions very easy.

Interview Preparation Tips

Topics to prepare for Jio Platforms Graduate Engineer Trainee (Get) interview:
  • DSA
  • OOPS
Interview preparation tips for other job seekers - Practice basic famous algorithms and data structures.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. They will ask about yourself , about relocation if it is mentioned in job description etc.
  • Ans. 

    In this , you have to give introduction about yourself. And will also ask if you have any offers in hand. And you have to answer in yes or no about relocation if it is mentioned in your Job description.

  • Answered Anonymously
Round 3 - Technical 

(1 Question)

  • Q1. It will be based on your resume ,so better be prepared.

Interview Preparation Tips

Interview preparation tips for other job seekers - Whatever you have mentioned in the resume , have those skills in practice, you will definitely get a good job
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jul 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Aptitude Test 

Easy to average questions only

Round 3 - Coding Test 

Easy to average questions only

Round 4 - Technical 

(1 Question)

  • Q1. Like core concepts of oops, dbms, sql and project, rare chance of dsa
Round 5 - HR 

(1 Question)

  • Q1. Why you want to join this company, what jio basically develop, where u see yourself in jio after some years

Interview Preparation Tips

Interview preparation tips for other job seekers - At the time of interview just calm yourself to give the best answer you know for that question

I applied via Fresher's.com and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 2 - Aptitude Test 

There is aptitude reasoning and coding MCP each section have 2 subsection advance and genral.

Round 3 - Technical 

(2 Questions)

  • Q1. Detailed project discussion.
  • Q2. Basics of Java and SQL.

Interview Preparation Tips

Topics to prepare for Jio Platforms Graduate Engineer Trainee (Get) interview:
  • SQL
  • Any language you know
Interview preparation tips for other job seekers - Go thorugh basics only. Whatever you have mentioned in your resume just go thorugh it.

Jio Platforms Interview FAQs

How many rounds are there in Jio Platforms Graduate Engineer Trainee (Get) interview?
Jio Platforms interview process usually has 3-4 rounds. The most common rounds in the Jio Platforms interview process are Technical, Resume Shortlist and Aptitude Test.
What are the top questions asked in Jio Platforms Graduate Engineer Trainee (Get) interview?

Some of the top questions asked at the Jio Platforms Graduate Engineer Trainee (Get) 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

Tell us how to improve this page.

Jio Platforms Graduate Engineer Trainee (Get) Interview Process

based on 9 interviews

4 Interview rounds

  • Resume Shortlist Round
  • Aptitude Test Round
  • Technical Round
  • HR Round
View more
Jio Platforms Graduate Engineer Trainee (Get) Salary
based on 184 salaries
₹3.5 L/yr - ₹8.5 L/yr
45% more than the average Graduate Engineer Trainee (Get) Salary in India
View more details

Jio Platforms Graduate Engineer Trainee (Get) Reviews and Ratings

based on 10 reviews

2.9/5

Rating in categories

2.8

Skill development

2.9

Work-life balance

1.9

Salary

3.0

Job security

2.3

Company culture

2.0

Promotions

2.5

Work satisfaction

Explore 10 Reviews and Ratings
Software Developer
571 salaries
unlock blur

₹4.1 L/yr - ₹15.1 L/yr

Software Development Engineer
547 salaries
unlock blur

₹3 L/yr - ₹13.1 L/yr

Assistant Manager
473 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Product Manager
424 salaries
unlock blur

₹11 L/yr - ₹42 L/yr

Deputy Manager
367 salaries
unlock blur

₹4.9 L/yr - ₹20.4 L/yr

Explore more salaries
Compare Jio Platforms with

Jio

3.9
Compare

Reliance Industries

4.0
Compare

Bharti Airtel

4.0
Compare

Vodafone Idea

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