Upload Button Icon Add office photos

Filter interviews by

Jio Platforms Engineer Trainee Interview Questions, Process, and Tips

Updated 19 Mar 2024

Top Jio Platforms Engineer Trainee Interview Questions and Answers

Jio Platforms Engineer Trainee Interview Experiences

5 interviews found

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

I applied via campus placement at Sant Longowal Institute of Engineering and Technology, Sangrur 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 - Group Discussion 

They give a topic to discuss

Round 3 - Technical 

(3 Questions)

  • Q1. Basic oops and dsa
  • Q2. Pillars of oops, stack , queue and some algorithms
  • Ans. 

    Pillars of OOPs are Abstraction, Encapsulation, Inheritance, and Polymorphism. Stack and Queue are data structures. Algorithms include sorting, searching, and graph traversal.

    • Abstraction: Hiding implementation details

    • Encapsulation: Binding data and functions together

    • Inheritance: Reusing code from parent classes

    • Polymorphism: Multiple forms of a function or object

    • Stack: Last In First Out (LIFO) data structure

    • Queue: First...

  • Answered by AI
  • Q3. How stack work difference between stack and queues
  • Ans. 

    Stack and queue are data structures used to store and retrieve data. The main difference is in the order of retrieval.

    • Stack follows Last In First Out (LIFO) order, while Queue follows First In First Out (FIFO) order.

    • In a stack, the element added last is the first one to be removed, while in a queue, the element added first is the first one to be removed.

    • Stacks are used in undo-redo functionality, while queues are used

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Personal information family background, studies etc
  • Q2. About family, can you relocate to Navi Mumbai

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Vidyalankar Institute of Technology, Mumbai and was interviewed in Mar 2023. 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 - Group Discussion 

5-10 mins
Topic - Ecommerce vs Brick n Mortar Shops

Round 3 - One-on-one 

(2 Questions)

  • Q1. Questions on python in detail
  • Q2. Software Development Lifecycle
  • Ans. 

    Software Development Lifecycle is a process used by software development teams to design, develop, test, and deploy software.

    • SDLC consists of several phases including planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables to ensure the software meets requirements and quality standards.

    • Examples of SDLC models include Waterfall, Agile, and DevOps.

    • SDL...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. This was HR + Tech Round I was asked questions about my resume, my future interests, my field of choice

Skills evaluated in this interview

Engineer Trainee Interview Questions Asked at Other Companies

Q1. If 10 people had a meeting and they shake hands only once with ea ... read more
asked in Siemens
Q2. Puzzle - A drawer contains 10 pairs each of red and blue socks. W ... read more
asked in Sobha
Q3. Shear force diagram and bending moment diagram for combination of ... read more
Q4. Explain stress and strain curve; Different Modulus eg young,bulk ... read more
asked in AVASOFT
Q5. What is logic of amstrong number say its coding logic

Engineer Trainee Interview Questions & Answers

user image Utsav Kumar

posted on 21 Jul 2023

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

I applied via campus placement at National Institute of Technology (NIT), Hamirpur and was interviewed in Jan 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 DSA questions were asked of easy level

Round 2 - Technical 

(2 Questions)

  • Q1. I was asked to find the second largest number in an array in O(n) time complexity.
  • Ans. 

    Use a single pass algorithm to find the second largest number in an array of strings in O(n) time complexity.

    • Iterate through the array and keep track of the largest and second largest numbers encountered so far.

    • Update the second largest number whenever a new number greater than the current second largest is found.

    • Return the second largest number at the end of the iteration.

  • Answered by AI
  • Q2. It was a leetcode question to find the target sum.
Round 3 - HR 

(1 Question)

  • Q1. Basic discussion about family and experiences in college and all

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Basic java coding questions

Round 2 - Technical 

(3 Questions)

  • Q1. Basic DSA questions
  • Q2. Linked list sorting by two pointer
  • Ans. 

    Sorting a linked list using two pointers

    • Use two pointers to traverse the linked list and compare values

    • Implement sorting algorithm like bubble sort or merge sort

    • Update the links between nodes to rearrange them in sorted order

  • Answered by AI
  • Q3. Question on Binary search

Interview Preparation Tips

Interview preparation tips for other job seekers - Moderate knowledge on java works

Skills evaluated in this interview

Jio Platforms interview questions for designations

 Graduate Engineer Trainee (Get)

 (18)

 Graduate Trainee

 (1)

 Management Trainee

 (1)

 SMT Engineer

 (1)

 Service Engineer

 (1)

 Software Engineer

 (7)

 Data Engineer

 (5)

 Devops Engineer

 (2)

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Jun 2022.

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 - Aptitude Test 

Medium level tough questions no coding questions just normal reasoning

Round 3 - Technical 

(1 Question)

  • Q1. Medium level leetcode questions and discussion about project.
Round 4 - HR 

(1 Question)

  • Q1. 15 minute normal discussion about hobbies and stuff nothing special

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via campus placement at Anna University and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Some aptitude questions with coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Types of constructors
  • Ans. 

    Types of constructors include default constructor, parameterized constructor, copy constructor, and conversion constructor.

    • Default constructor: Constructor with no parameters.

    • Parameterized constructor: Constructor with parameters to initialize object properties.

    • Copy constructor: Constructor that creates a new object as a copy of an existing object.

    • Conversion constructor: Constructor that converts one data type to anoth

  • Answered by AI
  • Q2. About internet of things

Interview Preparation Tips

Interview preparation tips for other job seekers - perform well in technical one to one round to get selected to hr round
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Not Selected

I applied via campus placement at Aditya College of Engineering, Surampalem and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Medium level coding questions

Round 2 - Group Discussion 

Asked to speak about influence of social media

Round 3 - Technical 

(2 Questions)

  • Q1. Html void elements
  • Q2. Write some Html selectors
  • Ans. 

    HTML selectors are used to target specific elements on a webpage for styling or manipulation.

    • Use element selectors to target specific HTML elements (e.g.

      ,

      ,

      ).

    • Use class selectors to target elements with a specific class (e.g. .classname).

    • Use ID selectors to target elements with a specific ID (e.g. #idname).

    • Use attribute selectors to target elements with specific attributes (e.g. [attribute=value]).

Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Normal aptitude trains speed and distance

Round 2 - Coding Test 

Arrays strings coding programs along with sql queries

Round 3 - One-on-one 

(2 Questions)

  • Q1. What is your favourite subject and why?
  • Q2. Why do you want to join in our company?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Human vs robot technology

Round 2 - HR 

(2 Questions)

  • Q1. Based on resume
  • Q2. Tell me about your skills
  • Ans. 

    I have strong problem-solving skills, excellent technical knowledge, and a passion for learning and improving.

    • Proficient in programming languages such as Java, C++, and Python

    • Experience with CAD software and engineering design principles

    • Strong analytical skills and attention to detail

    • Excellent communication and teamwork abilities

    • Quick learner and adaptable to new technologies and tools

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - a good and easy interview
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Quant, reasoning, coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Oops based questions resume based questions
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself, strengths weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - keep your basics clear

Jio Platforms Interview FAQs

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

Some of the top questions asked at the Jio Platforms Engineer Trainee interview -

  1. I was asked to find the second largest number in an array in O(n) time complexi...read more
  2. How stack work difference between stack and que...read more
  3. Pillars of oops, stack , queue and some algorit...read more

Tell us how to improve this page.

Jio Platforms Engineer Trainee Interview Process

based on 5 interviews

3 Interview rounds

  • Resume Shortlist Round
  • Technical Round
  • HR Round
View more
Jio Platforms Engineer Trainee Salary
based on 8 salaries
₹5 L/yr - ₹8.5 L/yr
100% more than the average Engineer Trainee Salary in India
View more details

Jio Platforms Engineer Trainee Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
557 salaries
unlock blur

₹4.2 L/yr - ₹15.7 L/yr

Software Development Engineer
544 salaries
unlock blur

₹3 L/yr - ₹13.2 L/yr

Assistant Manager
460 salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Product Manager
435 salaries
unlock blur

₹11.1 L/yr - ₹42 L/yr

Deputy Manager
361 salaries
unlock blur

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