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.8k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Jio O&M Engineer Interview Questions and Answers

Updated 5 Apr 2024

Jio O&M Engineer Interview Experiences

1 interview found

O&M Engineer Interview Questions & Answers

user image Anonymous

posted on 5 Apr 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. About self ,fiber

Interview questions from similar companies

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

I applied via Job Portal and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Coding Test 

Basic code to be written

I applied via Naukri.com and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. What are indexes in the database? what is the difference between clustered and non-clustered indexes?
  • Ans. 

    Indexes are used to improve database performance. Clustered indexes determine the physical order of data, while non-clustered indexes do not.

    • Indexes are used to speed up data retrieval operations in a database.

    • Clustered indexes determine the physical order of data in a table, while non-clustered indexes do not.

    • A table can have only one clustered index, but multiple non-clustered indexes.

    • Clustered indexes are generally ...

  • Answered by AI
  • Q2. Write a query to delete duplicate rows from a table.
  • Ans. 

    Query to delete duplicate rows from a table

    • Use GROUP BY clause to group the rows by their unique values

    • Use HAVING clause to filter out the groups with count greater than 1

    • Use DELETE statement to delete the duplicate rows

  • Answered by AI
  • Q3. Class A { public string A() { return "hello"; } } what is wrong with above code?
  • Q4. What is a singleton pattern and how to implement it?
  • Ans. 

    Singleton pattern restricts the instantiation of a class to a single instance and provides a global point of access to it.

    • Create a private constructor to restrict instantiation of the class

    • Create a private static instance of the class

    • Create a public static method to access the instance

    • Ensure thread safety if necessary

    • Examples: Database connection, Logger, Configuration settings

  • Answered by AI
  • Q5. How do you handle exceptions in stored procedures?
  • Ans. 

    Handle exceptions in stored procedures by using TRY-CATCH blocks.

    • Use TRY-CATCH blocks to catch and handle exceptions

    • Log the error message and severity level

    • Rollback the transaction if necessary

    • Rethrow the error if it cannot be handled

    • Use RAISERROR to raise custom error messages

  • Answered by AI
  • Q6. Explain SOLID principles.
  • Ans. 

    SOLID principles are a set of five design principles that help in creating maintainable and scalable software.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open-Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Subtypes should be substitutable for their base types.

    • I - Interface Segregation Principle: C...

  • Answered by AI
  • Q7. Difference between throw and throw exception?
  • Ans. 

    throw is used to throw an exception while throw exception is used to throw a specific exception.

    • throw is used to throw any type of exception while throw exception is used to throw a specific type of exception.

    • throw exception is followed by the type of exception that needs to be thrown.

    • throw can be used to throw any object while throw exception can only be used to throw an exception object.

    • Example: throw new Exception("

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to give quite a few interviews to be prepared.

Skills evaluated in this interview

I was interviewed in Jun 2022.

Round 1 - Technical 

(1 Question)

  • Q1. Accumulators in spark python sum of odd places in list Partition and bucketing
  • Ans. 

    Spark accumulators are used to accumulate values across multiple tasks in a distributed manner.

    • Accumulators are used to accumulate values across multiple tasks in a distributed manner

    • They are used to implement counters and sums in Spark

    • Accumulators are read-only variables that can only be updated by an associative and commutative operation

    • Partitioning is the process of dividing a large dataset into smaller, more manage...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. SQL median query in spark Python user defined exceptions Dataframe - RDD & RDD - Dataframe conversion
Round 3 - HR 

(1 Question)

  • Q1. Reason for change Things to look forward in your next company

Interview Preparation Tips

Topics to prepare for JPMorgan Chase & Co. Senior Software Engineer interview:
  • Spark
  • Python
  • SQL
  • Hive
Interview preparation tips for other job seekers - Be good with basics and theory of all the concepts

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. In Hand Salary, Expected Salary, Job type, living location, Previous Company Release Letter, Previous Company Pay Slip, Notice Period, Joining Date
  • Q2. Job Experience, Job Role, Job Place
  • Q3. Previous CompaniesName
  • Q4. Work Experience
  • Q5. Technical Knowledge
  • Q6. Hard work , Targets, Awards, Behaviour

Interview Questionnaire 

6 Questions

  • Q1. Introduce your self
  • Q2. What is prime number
  • Ans. 

    A prime number is a positive integer greater than 1 that has no positive integer divisors other than 1 and itself.

    • Prime numbers are only divisible by 1 and themselves

    • Examples of prime numbers include 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, and 97

    • Prime numbers are important in cryptography and number theory

  • Answered by AI
  • Q3. Write a code on prime number
  • Ans. 

    Code to check if a number is prime or not.

    • A prime number is only divisible by 1 and itself.

    • Start checking from 2 up to the square root of the number.

    • If the number is divisible by any number in the range, it's not prime.

    • Otherwise, it's prime.

  • Answered by AI
  • Q4. Write a question on ages problem
  • Ans. 

    What is the average age of a group of people with ages ranging from 20 to 60?

    • Add up all the ages and divide by the number of people in the group

    • The age range is 40 years

    • Assuming an equal distribution of ages, the average age would be 40

  • Answered by AI
  • Q5. Are you relocate
  • Q6. What is your strengths and weaknesses

Skills evaluated in this interview

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. Sum Between Zeroes

    You are given a Singly Linked List which contains a series of integers separated by ‘0’.

    Between two zeroes, you have to merge all the nodes lying between them into a single node which...

  • Ans. Two Pointer Approach

    Let us initialize two pointers, newHead and newTail, with NULL (These will be the head and tail of the final list). Now traverse the given list. Ignore the first zero. Now, as you encounter non-zero nodes, add their values in a variable called ‘sum’. As soon as you encounter a node with data 0, change that node's value to ‘sum’, and

    1. If newHead is NULL, this node becomes the new head and tail of the l...
  • Answered by CodingNinjas
  • Q2. Minimum Cost to Buy Oranges

    You are given a bag of size 'W' kg and provided with the costs of packets with different weights of oranges as a list/array with the name 'cost'. Every i-th posi...

  • Ans. Recursive Approach

    Write a recursive function minCostToBuyOrangesHelper(idx, requiredWeight, n) to return the Minimum cost to buy exactly requiredWeight Kg oranges with (idx+1) Kg to N kg packets.

    1. Our minimum cost for weight W will be : minCostToBuyOrangesHelper(idx, W, n)
    2. Now at any instant (idx, requiredWeight, n), we have two options:
      1. The option of taking this packet:
    cost[idx] + minCostToBuyOrangesHelper(idx, requiredWe...
  • Answered by CodingNinjas
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. Connect N Ropes With Minimum Cost

    You have been given 'N' ropes of different lengths, we need to connect these ropes into one rope. The cost to connect two ropes is equal to sum of their lengths. W...

  • Ans. Brute Force Approach

    Clearly, the rope which is picked up first will be having its length included more than once in the final cost. If we pick a rope of larger length earlier, then we will be adding some extra cost to our final result.
    So, the idea is to pick ropes of smaller lengths initially to minimize the impact on our final cost.

    So, each time we will be finding two smallest ropes, connecting them and

    adding the resu...

  • Answered by CodingNinjas
  • Q2. DBMS Question

    Tell the ACID properties in DBMS.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vaish Technical Institute. Eligibility criteriaNo Backlog and above 6 CGPAAmazon interview preparation:Topics to prepare for the interview - Algorithms, C++, aptitude and reasoning, projects details, operating system, Java, DBMS, Object Oriented Programming language, Data Structure and computer networksTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : The most important thing is to prepare Data Structures and Algorithms. Ensure to be very much clear on your basics and skills.
Tip 2 : Revise the OOPS concepts thoroughly.
Tip 3 : Practice minimum 200 DSA questions. Practice aptitude and reasoning questions regularly.

Application resume tips for other job seekers

Tip 1 : Mention only those skills, projects and achievements in which you have complete and thorough knowledge. 
Tip 2 : Do not add more than 2 - 3 projects and that too in which you have proper knowledge and understanding.
Tip 3 : Resume should be of 1 page only. Keep your resume very crisp and brief.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Related products which I did and technology which I worked
  • Ans. I was explain about my work ,project and technology
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep believing your self ,so just believe and don't try to explain multiple technology knowledge you have only try for one technology which you have strong point of view

I applied via Naukri.com and was interviewed in Aug 2020. There was 1 interview round.

Interview Questionnaire 

11 Questions

  • Q1. 1. Construction of Lance.
  • Ans. 

    A lance is a long, pointed weapon used in medieval warfare.

    • Lances were typically made of wood or metal.

    • They were used by knights on horseback to charge at their enemies.

    • The length of a lance varied, but it was usually between 9 and 14 feet long.

    • Lances were often decorated with banners or flags to identify the knight carrying it.

    • The use of lances declined with the advent of firearms in warfare.

  • Answered by AI
  • Q2. 2. Construction of Tilt drive.
  • Ans. 

    Tilt drive is a mechanism used in construction to tilt heavy objects or structures.

    • Tilt drive is commonly used in the construction of bridges, buildings, and large machinery.

    • It involves the use of hydraulic cylinders or motors to tilt the object or structure.

    • The tilt drive system must be carefully designed and engineered to ensure safety and stability.

    • Proper maintenance and inspection of the tilt drive system is crucia...

  • Answered by AI
  • Q3. 3. Lance emergency.
  • Q4. 4. ID fan description.
  • Ans. 

    ID fan stands for Induced Draft fan which is used to create negative pressure in a boiler.

    • ID fan is used to draw flue gases from the furnace and exhaust them to the atmosphere.

    • It helps in maintaining the proper flow of air and gases in the boiler.

    • ID fan is typically installed at the outlet of the boiler.

    • It is driven by an electric motor or steam turbine.

    • The size and capacity of ID fan depend on the size of the boiler a...

  • Answered by AI
  • Q5. 5. Switch over station related questions.
  • Q6. 6.Boundary layer theory.
  • Q7. 7. Bernoulli theorem.
  • Ans. 

    Bernoulli theorem is a principle that describes the relationship between fluid speed and pressure.

    • States that as the speed of a fluid increases, the pressure within the fluid decreases

    • Used to explain the lift force generated by an airplane wing

    • Applicable to both incompressible and compressible fluids

  • Answered by AI
  • Q8. 8.Types of bearings and their maintenance.
  • Ans. 

    Bearings are used to reduce friction between two moving parts. There are different types of bearings and each requires specific maintenance.

    • Types of bearings include ball bearings, roller bearings, plain bearings, and fluid bearings.

    • Ball bearings are the most common type and require regular lubrication.

    • Roller bearings are used for heavy loads and require periodic cleaning and lubrication.

    • Plain bearings are simple and r...

  • Answered by AI
  • Q9. 9. Design of Gears.
  • Ans. 

    Design of gears involves selecting appropriate gear type, size, material, and tooth profile for efficient power transmission.

    • Gears are used to transmit power and motion between two rotating shafts.

    • The gear type and size are selected based on the required speed ratio and torque.

    • The material selection depends on the application and operating conditions.

    • The tooth profile is designed to ensure smooth and efficient power tr...

  • Answered by AI
  • Q10. 10. Limit, fit and Tolerance.
  • Q11. 11. Principles of working of Bearings.
  • Ans. 

    Bearings are mechanical components that reduce friction between moving parts and support axial and radial loads.

    • Bearings work by allowing two surfaces to roll or slide over each other with minimal friction.

    • They are designed to support loads in a specific direction, such as radial or axial.

    • There are several types of bearings, including ball bearings, roller bearings, and plain bearings.

    • Ball bearings use balls to reduce ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical one. It lasted for about 50 minutes. The interviewer wanted to test both my knowledge and communication skills. Most of the questions asked to me were related to my work and technical knowledge.Luckily I was able to answer most of the questions correctly. I tried to answer each question.It was my first interview, and I think I did pretty well. You need to stay calm and should apply presence of mind. Never lie in the interview and never think interviewer don't know about my equipment. Please go through your resume thoroughly word-by-word and prepare about the whole thing.

Interview Questionnaire 

9 Questions

  • Q1. System design of traffic signal
  • Ans. 

    Design a traffic signal system

    • Identify the number of lanes and intersections

    • Determine the traffic flow and peak hours

    • Choose appropriate sensors and controllers

    • Implement a synchronization algorithm

    • Consider emergency vehicle prioritization

    • Include pedestrian crossing signals

    • Ensure compliance with local regulations

  • Answered by AI
  • Q2. Data structures
  • Q3. Oops spring jdbc
  • Q4. Hashmap implementation
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and provides constant time complexity for insertion, deletion, and retrieval.

    • Hashmap uses hashing function to map keys to indices in an array

    • Collisions can occur when multiple keys map to the same index, which can be resolved using separate chaining or open addressing

    • Java implementation: HashMap map = new HashMap<>();

  • Answered by AI
  • Q5. Pattern printing code
  • Ans. 

    Printing patterns using code

    • Identify the pattern to be printed

    • Use loops to print the pattern

    • Adjust the loop variables to control the pattern

    • Use conditional statements to modify the pattern

    • Examples: printing stars, triangles, squares, etc.

  • Answered by AI
  • Q6. Common point in linked list
  • Ans. 

    Common point in linked list refers to the node where two or more linked lists intersect.

    • The common point can be found by traversing both linked lists and comparing the nodes.

    • The common point can also be found by using two pointers, one for each linked list, and moving them until they meet at the common point.

    • Examples include finding the intersection point of two linked lists or finding the loop in a linked list.

  • Answered by AI
  • Q7. Optimization
  • Q8. Synchronisation
  • Q9. Threads

Skills evaluated in this interview

Jio Interview FAQs

How many rounds are there in Jio O&M Engineer interview?
Jio interview process usually has 1 rounds. The most common rounds in the Jio interview process are One-on-one Round.
How to prepare for Jio O&M Engineer 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 Automation, Fiber Optics, IP Networking, OTDR and Preventive Maintenance.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
View all
Jio O&M Engineer Salary
based on 7 salaries
₹3.8 L/yr - ₹5.5 L/yr
16% more than the average O&M Engineer Salary in India
View more details

Jio O&M Engineer Reviews and Ratings

based on 4 reviews

4.4/5

Rating in categories

3.7

Skill development

4.4

Work-Life balance

3.4

Salary & Benefits

3.7

Job Security

4.4

Company culture

2.8

Promotions/Appraisal

4.4

Work Satisfaction

Explore 4 Reviews and Ratings
Assistant Manager
5.5k salaries
unlock blur

₹1.9 L/yr - ₹10.8 L/yr

Deputy Manager
3.5k salaries
unlock blur

₹4.2 L/yr - ₹13.7 L/yr

Manager
1.8k salaries
unlock blur

₹6 L/yr - ₹22.1 L/yr

Senior Manager
1.7k salaries
unlock blur

₹10.3 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

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview