Upload Button Icon Add office photos

Filter interviews by

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

Updated 31 Aug 2024

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

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

Jio Platforms Graduate Engineer Trainee (Get) Interview Experiences for Freshers

6 interviews found

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

I applied via Campus Placement

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

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

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

asked in JBM Group
Q1. Q: 1 What is IC engine? What is the types of IC engine? Q:2 Diffe ... read more
Q2. What will be the cost of painting the wall behind me?
Q3. What happen when there is large air void in concrete?
Q4. What are the different types of concrete?
Q5. Puzzle 2 - 10 bags each have 10 coins each coin weighs 1 gm but i ... read more

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

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.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Logical, programming, oops, DSA

Round 3 - Technical 

(2 Questions)

  • Q1. My sql,oops,Coding questions
  • Q2. Find nth smallest and largest element (optimal solution)
  • Ans. 

    Finding nth smallest and largest element in an array

    • Sort the array and return the nth smallest/largest element

    • Use quickselect algorithm for optimal solution

    • For nth smallest element, partition the array around pivot until pivot index is n-1

    • For nth largest element, partition the array around pivot until pivot index is len(array)-n

    • Handle edge cases like n being greater than array length

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Personal interview about your family background and relocation

Interview Preparation Tips

Topics to prepare for Jio Platforms Graduate Engineer Trainee (Get) interview:
  • C++
  • DSA
  • MySQL
Interview preparation tips for other job seekers - Just tell what you know don't try to tell something like unrelated.

Skills evaluated in this interview

Jio Platforms interview questions for designations

 Graduate Trainee

 (1)

 Engineer Trainee

 (5)

 Management Trainee

 (1)

 SMT Engineer

 (1)

 Service Engineer

 (1)

 Software Engineer

 (7)

 Data Engineer

 (5)

 Devops Engineer

 (2)

I was interviewed in Oct 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Medium

This round consisted of 26 questions out of which 24 were questions on general aptitude and only 2 were on programming.
General aptitude was very easy I was able to solve each and every question.
The first programming question was easy as I knew that it was based on Kadane's Algorithm and second question was hard but after some time I was able to do that also

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

    Example:

    Input:
    A = [3, 2, 3], K = 1
    ...
  • Ans. 

    Count the total number of distinct subarrays with at most K odd elements in an array.

    • Iterate through all subarrays and count the number of odd elements in each subarray.

    • Use a hashmap to keep track of the count of distinct subarrays with at most K odd elements.

    • Return the total count of distinct subarrays for each test case.

  • Answered by AI
Round 2 - Face to Face 

Round duration - 20 Minutes
Round difficulty - Easy

It was an easy round,
 

Round 3 - Face to Face 

Round duration - 15 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Xavier Institute of Engineering. I applied for the job as Graduate Engineer Trainee in MumbaiEligibility criteriaAbove 7 CGPAJio Platforms Limited interview preparation:Topics to prepare for the interview - quant, verbal, numerical and programmingTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Resume of one page
Tip 2 : Have at least one project for discussion
Tip 3 : Try to answer as fast as possible with correct answers

Application resume tips for other job seekers

Tip 1 : One-page Resume is good
Tip 2 : good projects on resume for discussion

Final outcome of the interviewSelected

Skills evaluated in this interview

Get interview-ready with Top Jio Platforms Interview Questions

I applied via Campus Placement and was interviewed in Sep 2021. There were 2 interview rounds.

Round 1 - L0 Interview Round 

(7 Questions)

Round duration - 15 minutes
Round difficulty - null
Platform- Jio meet Time Duration- 15 mins

  • Q1. Tell me about yourself
  • Q2. Project
  • Ans. 

    A question about projects

    • Discuss a project you have worked on

    • Explain the project's goals and objectives

    • Describe your role in the project

    • Highlight any challenges faced and how they were overcome

    • Share the project's outcome and impact

  • Answered by AI
  • Q3. Which language are you proficient in?
  • Ans. 

    I am proficient in multiple programming languages including Java, Python, and C++.

    • Proficient in Java, Python, and C++

    • Experience with web development languages such as HTML, CSS, and JavaScript

    • Familiarity with scripting languages like Bash and PowerShell

  • Answered by AI
  • Q4. Difference between python and java.
  • Ans. 

    Python is a dynamically typed, interpreted language while Java is a statically typed, compiled language.

    • Python is easier to learn and write code quickly.

    • Java is more efficient and faster due to its compilation process.

    • Python is better for data analysis and machine learning while Java is better for enterprise applications.

    • Python has a simpler syntax and is more readable while Java has a more complex syntax.

    • Python has a ...

  • Answered by AI
  • Q5. What are data types in python?
  • Ans. 

    Data types in Python are the classification of data items that determine the operations that can be performed on them.

    • Python has several built-in data types such as integers, floats, strings, booleans, and complex numbers.

    • Lists, tuples, and dictionaries are also data types in Python.

    • Each data type has its own set of operations that can be performed on it.

    • For example, arithmetic operations can be performed on integers a...

  • Answered by AI
  • Q6. Why is dbms used?
  • Ans. 

    DBMS is used to manage and organize large amounts of data efficiently.

    • DBMS provides a centralized and secure way to store and retrieve data.

    • It allows multiple users to access and modify data simultaneously.

    • It ensures data integrity and consistency through various constraints and rules.

    • It provides backup and recovery mechanisms to prevent data loss.

    • Examples of DBMS include Oracle, MySQL, SQL Server, and PostgreSQL.

  • Answered by AI
  • Q7. What is the difference between list and tuple?
  • Ans. 

    List and tuple are both data structures in Python, but list is mutable while tuple is immutable.

    • List is defined using square brackets [], while tuple is defined using parentheses ().

    • Elements in a list can be added, removed, or modified, while elements in a tuple cannot be modified.

    • Lists are used for collections of data that may change over time, while tuples are used for fixed collections of data.

    • Lists are generally fa...

  • Answered by AI
Round 2 - L1 Interview Round 

(9 Questions)

Round duration - 15 minutes
Round difficulty - null
Platform- Jio meet Time Duration- 15mins

  • Q1. Tell me about yourself
  • Q2. Oops concept
  • Ans. 

    Oops concept refers to Object-Oriented Programming concepts such as inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance allows a class to inherit properties and methods from another class.

    • Encapsulation is the practice of hiding data and methods within a class, making them inaccessible to outside code.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • Abstra...

  • Answered by AI
  • Q3. What is a foreign key?
  • Ans. 

    A foreign key is a column or set of columns in a database table that refers to the primary key of another table.

    • It establishes a link between two tables

    • It ensures referential integrity

    • It helps in maintaining data consistency

    • Example: CustomerID in Orders table refers to Customer table's primary key

  • Answered by AI
  • Q4. Why should we hire you?
  • Ans. I am a self-motivated and very open-minded person who can learn very fast. Looking at the job description and my experience in the field of web development, I am confident that I am very much suitable for this role. I enjoy solving problems and I am a great team player. I also believe that my values are aligned with this company’s values. I think this position will support my interest and also give me interesting ...
  • Answered by PrepInsta
  • Q5. What are your strengths and weakness?
  • Q6. Why do you want to work for our company?
  • Ans. 

    I am excited to work for your company because of its reputation for innovation and commitment to employee development.

    • Your company has a strong track record of developing cutting-edge technology, which aligns with my passion for innovation.

    • I am impressed by the emphasis your company places on employee development and growth opportunities.

    • Your company's commitment to sustainability and social responsibility is important...

  • Answered by AI
  • Q7. What are constructors and destructors?
  • Ans. 

    Constructors and destructors are special member functions in object-oriented programming languages.

    • Constructors are used to initialize the object's data members when an object is created.

    • Destructors are used to free up the memory allocated to the object when it is destroyed.

    • Constructors have the same name as the class and no return type.

    • Destructors have the same name as the class preceded by a tilde (~) and no return t...

  • Answered by AI
  • Q8. SDLC
  • Ans. 

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

    • SDLC is a structured approach to software development that involves several stages, including planning, analysis, design, implementation, testing, and maintenance.

    • Each stage of the SDLC has its own set of deliverables, which are reviewed and approved before moving on to the next stage.

    • SDLC models include W...

  • Answered by AI
  • Q9. What is the use of marquee tag?
  • Ans. 

    The marquee tag is used in HTML to create a scrolling text or image effect on a webpage.

    • Used to create a scrolling effect for text or images on a webpage

    • Can specify direction, speed, and behavior of the scrolling

    • Example: <marquee behavior='scroll' direction='left'>Scrolling text</marquee>

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundAt the time of the interview, I had 0 Years (fresher) of experience.Jio Platforms Limited interview preparation:Tips for other job seekers - Focus on OOPS, DBMS, At least one programming language and basic concepts of OS and SDLC.Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

I was interviewed before Aug 2021.

Round 1 - Coding Test 

2 easy codes and 1 medium level code challenge

Round 2 - Technical 

(1 Question)

  • Q1. What are languages you know
  • Ans. 

    I know multiple programming languages including Java, Python, and C++.

    • Proficient in Java, Python, and C++

    • Familiar with HTML, CSS, and JavaScript

    • Experience with SQL and NoSQL databases

    • Comfortable with Bash scripting and Linux command line

    • Knowledge of MATLAB and R for data analysis

    • Understanding of Swift for iOS development

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary expectation and certificate check

Interview Preparation Tips

Interview preparation tips for other job seekers - If you ever want to get into IT. TCS is the right choice.

I applied via LinkedIn and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Paper divided in two sections. First section has four parts and second section is of coding questions.

Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep trying until you get placed.
Do not loose hope and focus on your aim

Interview Questionnaire 

2 Questions

  • Q1. Networking Questions
  • Q2. General questions about yourself or family

Interview Preparation Tips

Round: Test
Experience: English Grammar
Duration: 30 minutes
Total Questions: 20

Round: Group Discussion
Experience: Can be a GD or ask each person to speak on different topics
Duration: 30 minutes

Round: Technical Interview
Experience: TCP/IP model ; OSI model ; Private and Public IP ; Any specific subject that you've mentioned

College Name: GTBIT

I was interviewed in Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. OSI MODEL, TCP/IP , Difference between Public and private address, MD5 hashstring, Octal to Binary conversion
  • Ans. 

    Technical questions related to networking and cryptography.

    • OSI model has 7 layers, TCP/IP has 4 layers

    • Public addresses are routable on the internet, private addresses are used within a private network

    • MD5 hashstring is a cryptographic hash function used for data integrity and security

    • Octal to binary conversion involves converting each octal digit to a 3-bit binary number

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Grammar questions were there in it.
Duration: 30 minutes
Total Questions: 20

Round: Group Discussion
Duration: 30 minutes

College Name: Ajay Kumar Garg Engineering College, Ghaziabad

Jio Platforms Interview FAQs

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

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

  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 for Freshers

based on 2 interviews

1 Interview rounds

  • Resume Shortlist Round
View more
Jio Platforms Graduate Engineer Trainee (Get) Salary
based on 186 salaries
₹3.5 L/yr - ₹8.5 L/yr
49% 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
582 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
551 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
472 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
432 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy Manager
366 salaries
unlock blur

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