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

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Jio ml engineer Interview Questions and Answers

Updated 10 Nov 2021

Jio ml engineer Interview Experiences

1 interview found

ml engineer Interview Questions & Answers

user image Anonymous

posted on 10 Nov 2021

I was interviewed in May 2021.

Interview Questionnaire 

3 Questions

  • Q1. Questions on Recommendation algorithms. Like explain ALS, matrix factorization
  • Q2. Maths questions based on probability. Red, blue marbles inside bags was the situation, basic questions on the situation and follow up question.
  • Q3. Evaluation metrics based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It was comparatively medium difficulty. The recruiter was looking for good Engineering Foundation. Experience with big data tools was preferred.

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic python coding questions
  • Q2. Nlp, ml related questions
Round 2 - Technical 

(2 Questions)

  • Q1. Coding in python
  • Q2. Questions on the project
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Project discussion
  • Q2. Bigdata project questions
Round 2 - Technical 

(2 Questions)

  • Q1. Ml model discussion
  • Q2. Have you implemented llama models
  • Ans. 

    LLAMA models are used for large language model adaptation.

    • LLAMA models are used for adapting large language models to specific tasks or domains.

    • They are commonly used in natural language processing tasks such as text generation, translation, and sentiment analysis.

    • Examples of LLAMA models include GPT-3, BERT, and RoBERTa.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between Precision and Recall?
  • Ans. 

    Precision is the ratio of correctly predicted positive observations to the total predicted positive observations, while Recall is the ratio of correctly predicted positive observations to the all observations in actual class.

    • Precision focuses on the accuracy of positive predictions, while Recall focuses on the proportion of actual positives that were correctly identified.

    • Precision = TP / (TP + FP)

    • Recall = TP / (TP + FN...

  • Answered by AI
  • Q2. What are the hyperparameters of Random forest?
  • Ans. 

    Hyperparameters of Random Forest include number of trees, max depth of trees, minimum samples per leaf, and maximum features.

    • Number of trees: Determines the number of decision trees in the forest.

    • Max depth of trees: Controls the maximum depth of each decision tree.

    • Minimum samples per leaf: Specifies the minimum number of samples required to be at a leaf node.

    • Maximum features: Determines the maximum number of features t

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About yourself and projects
  • Q2. Mostly questions related to project, technology involve etc.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Case Study 

One case study, had to build a system design around it

Round 2 - Coding Test 

Live coding pandas, codesignal

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell about sql joins
  • Ans. 

    SQL joins are used to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left table.

    • F...

  • Answered by AI
  • Q2. What ks difference between delete and update
  • Ans. 

    Delete removes a record entirely, while update modifies an existing record.

    • Delete removes the entire record from the database

    • Update modifies specific fields of an existing record

    • Delete is irreversible, while update can be undone by another update

    • Example: Deleting a user account vs updating the user's email address

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at International Institute of Information Technology (IIIT), Allahabad and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Aptitude Test 

Two questions asked which have difficulty level is high

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on DSA leetcode medium to hard question
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain ur projects
  • Ans. 

    I have worked on projects involving natural language processing, computer vision, and recommendation systems.

    • Developed a sentiment analysis model using NLP techniques like TF-IDF and LSTM

    • Implemented a facial recognition system using OpenCV and deep learning algorithms

    • Built a movie recommendation system based on collaborative filtering

  • Answered by AI
  • Q2. Introduce urself
  • Ans. 

    I am a machine learning engineer with a background in computer science and a passion for developing innovative AI solutions.

    • Completed a Master's degree in Computer Science with a focus on machine learning

    • Worked on projects involving natural language processing, computer vision, and predictive modeling

    • Proficient in programming languages such as Python, Java, and R

    • Experience with popular machine learning frameworks like ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice do it
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write a code to sort a list without using inbuild function
  • Ans. 

    Implement a sorting algorithm to sort a list without using built-in functions.

    • Use a common sorting algorithm like bubble sort, selection sort, or insertion sort.

    • Iterate through the list and compare adjacent elements to swap them if necessary.

    • Repeat the process until the list is sorted in ascending order.

  • Answered by AI
  • Q2. Explain web scraping using code
  • Ans. 

    Web scraping is the process of extracting data from websites using code.

    • Identify the website and the specific data to be extracted

    • Use libraries like BeautifulSoup or Scrapy in Python to parse HTML

    • Inspect the website's HTML structure to locate the data

    • Write code to extract the data and store it in a desired format

  • Answered by AI

Skills evaluated in this interview

Jio Interview FAQs

How to prepare for Jio ml 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 Analytical, Data Science, Management, Monitoring and Programming.
What are the top questions asked in Jio ml engineer interview?

Some of the top questions asked at the Jio ml engineer interview -

  1. Maths questions based on probability. Red, blue marbles inside bags was the sit...read more
  2. Questions on Recommendation algorithms. Like explain ALS, matrix factorizati...read more
  3. Evaluation metrics based questi...read more

Tell us how to improve this page.

Jio ml engineer Salary
based on 4 salaries
₹10 L/yr - ₹52 L/yr
199% more than the average ml engineer Salary in India
View more details
Assistant Manager
5.5k salaries
unlock blur

₹1 L/yr - ₹10.5 L/yr

Deputy Manager
3.5k salaries
unlock blur

₹4.2 L/yr - ₹13.6 L/yr

Manager
1.8k salaries
unlock blur

₹6 L/yr - ₹22.3 L/yr

Senior Manager
1.4k salaries
unlock blur

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