Upload Button Icon Add office photos

Times Internet

Compare button icon Compare button icon Compare

Filter interviews by

Times Internet Data Scientist Interview Questions and Answers

Updated 17 Mar 2025

Times Internet Data Scientist Interview Experiences

2 interviews found

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

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. What is the process for creating a data pipeline in Spark to continuously monitor the number of devices that are online?
  • Ans. 

    Creating a Spark data pipeline to monitor online devices involves data ingestion, processing, and real-time analytics.

    • 1. Data Ingestion: Use Spark Streaming to ingest data from sources like Kafka or MQTT where device status updates are published.

    • 2. Data Processing: Transform the incoming data using Spark's DataFrame API to filter and aggregate the number of online devices.

    • 3. Real-time Analytics: Utilize Spark Structure...

  • Answered by AI
  • Q2. How can a large language model (LLM) be used to create YouTube Shorts?
  • Ans. 

    LLMs can generate scripts, ideas, and captions for engaging YouTube Shorts content.

    • Script Generation: LLMs can create concise scripts based on trending topics, e.g., a 60-second summary of a popular movie.

    • Content Ideas: They can suggest creative concepts for Shorts, like '5 Quick Tips for Healthy Eating' or 'Top 3 Travel Destinations'.

    • Caption and Hashtag Suggestions: LLMs can generate catchy captions and relevant hasht...

  • Answered by AI

Data Scientist Interview Questions & Answers

user image Atmuri Ganesh

posted on 1 Dec 2022

I applied via Recruitment Consulltant and was interviewed in Jun 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. Write a SQL query to find all duplicate emails in a table named person
  • Ans. 

    SQL query to find duplicate emails in a table named person

    • Use GROUP BY and HAVING clause to group emails and count their occurrences

    • Select only those emails which have count greater than 1

    • Example: SELECT email, COUNT(*) FROM person GROUP BY email HAVING COUNT(*) > 1;

  • Answered by AI
  • Q2. Given a weather table, write a sql query to find all date's ids with higher temperature compared to it's previous dates
  • Ans. 

    SQL query to find date ids with higher temperature compared to previous dates in weather table

    • Use self join to compare temperature of current date with previous dates

    • Order the table by date to ensure correct comparison

    • Select date ids where temperature is higher than previous dates

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions will be asked about machine learning models and SQL query.

Skills evaluated in this interview

Data Scientist Interview Questions Asked at Other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you fi ... read more
Q2. Special Sum of Array Problem Statement Given an array 'arr' conta ... read more
asked in Affine
Q3. You have a pandas dataframe with three columns filled with state ... read more
asked in Walmart
Q4. Describe the data you would analyze to solve cost and revenue opt ... read more
Q5. Clone a Linked List with Random Pointers Given a linked list wher ... read more

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Times Internet?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Approached by Company and was interviewed before Sep 2021. There were 3 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 

Explain dynamic programming with memoization

Round 3 - HR 

(2 Questions)

  • Q1. Where are you from, and why are you joining the company
  • Q2. Why are you joining the company

Interview Preparation Tips

Interview preparation tips for other job seekers - First, they will ask about the breadth of your ML skills and the depth going forward
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Asked firstly some question over my resume then 2 case study type problems where i have to improve the recommdation system for zomato, and finally one coding question based on two pointer
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain all of decision tree and random forest?
  • Ans. 

    Decision tree is a tree-like model of decisions and their possible consequences, while random forest is an ensemble learning method that builds multiple decision trees and merges them together.

    • Decision tree is a flowchart-like structure where each internal node represents a decision based on an attribute, each branch represents the outcome of the decision, and each leaf node represents a class label.

    • Random forest is a ...

  • Answered by AI
  • Q2. Some basic probability questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep statistics strong

Skills evaluated in this interview

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Concepts of Dropout during Test Time?
  • Ans. 

    Dropout is a regularization technique used during training, but typically not applied during test time to ensure full model performance.

    • Dropout randomly sets a fraction of input units to zero during training to prevent overfitting.

    • During test time, dropout is usually turned off, allowing the full network to make predictions.

    • This ensures that all neurons contribute to the output, providing a more accurate representation...

  • Answered by AI
  • Q2. How Random Forest Solves the Problem of Overfitting?
  • Ans. 

    Random Forest mitigates overfitting by averaging multiple decision trees, enhancing generalization and robustness.

    • Ensemble Learning: Combines predictions from multiple trees to reduce variance.

    • Bootstrap Aggregating: Each tree is trained on a random subset of data, promoting diversity.

    • Feature Randomness: Randomly selects features for splitting, preventing dominance of any single feature.

    • Example: In a dataset with noise,...

  • Answered by AI
  • Q3. Suppose you have very high imbalance problem, how and which Model will you choose to report?
  • Ans. 

    For high imbalance problems, choose models like Random Forest or XGBoost, and use techniques like SMOTE for better performance.

    • Use ensemble methods like Random Forest or Gradient Boosting (e.g., XGBoost) for better handling of imbalanced data.

    • Consider using resampling techniques such as SMOTE (Synthetic Minority Over-sampling Technique) to balance the dataset.

    • Evaluate models using metrics like F1-score, precision, reca...

  • Answered by AI
  • Q4. Deep Concepts of Transformers?
  • Ans. 

    Transformers are advanced neural network architectures that excel in processing sequential data, particularly in NLP tasks.

    • Self-Attention Mechanism: Allows the model to weigh the importance of different words in a sentence, e.g., in 'The cat sat on the mat', 'cat' and 'sat' are closely related.

    • Positional Encoding: Since transformers don't have a built-in sense of order, positional encodings are added to input embedding...

  • Answered by AI
  • Q5. What is query, Key and Value pairs in self attention?
  • Ans. 

    Query, Key, and Value are components of self-attention mechanisms in neural networks, enabling context-aware representations.

    • In self-attention, each input element is transformed into three vectors: Query, Key, and Value.

    • The Query vector represents the current element's focus, while the Key vector represents the context of other elements.

    • The attention score is computed by taking the dot product of the Query and Key vect...

  • Answered by AI
  • Q6. How does Self Attention Works?
  • Ans. 

    Self-attention allows models to weigh the importance of different words in a sequence when processing them, enhancing context understanding.

    • Self-attention computes a weighted representation of input sequences, focusing on relevant parts.

    • It uses three vectors: Query (Q), Key (K), and Value (V) to determine attention scores.

    • For each word, the model calculates how much attention to pay to every other word in the sequence.

    • ...

  • Answered by AI
  • Q7. Real Time Problems based on Multi Head Attention and it's use cases?
  • Ans. 

    Multi-head attention enhances model performance by focusing on different parts of input data simultaneously.

    • Improves natural language processing tasks like translation and summarization.

    • Used in image processing for tasks like object detection and segmentation.

    • Facilitates recommendation systems by analyzing user preferences from multiple perspectives.

    • Enhances speech recognition by focusing on different phonetic features...

  • Answered by AI
  • Q8. Degree of Freedom, Chi Square Distribution?
  • Ans. 

    Degrees of freedom in Chi-Square distribution indicate the number of independent values in a statistical calculation.

    • Degrees of freedom (df) = number of categories - 1 in Chi-Square tests.

    • Example: For a test with 5 categories, df = 5 - 1 = 4.

    • In goodness-of-fit tests, df helps determine the critical value for hypothesis testing.

    • Higher degrees of freedom lead to a more accurate approximation of the Chi-Square distributio...

  • Answered by AI
  • Q9. What is the mathematical framework behind Linear Regression? Real Time problem case.
  • Ans. 

    Linear Regression uses statistical methods to model the relationship between variables, predicting outcomes based on input features.

    • Linear regression assumes a linear relationship between the dependent and independent variables.

    • The model can be represented as: Y = β0 + β1X1 + β2X2 + ... + βnXn + ε, where Y is the dependent variable.

    • The coefficients (β) are estimated using the least squares method, minimizing the sum of...

  • Answered by AI
  • Q10. How are LLN and CLT are related?
  • Ans. 

    LLN and CLT are statistical theorems that describe the behavior of sample averages as sample size increases.

    • LLN (Law of Large Numbers) states that as the sample size increases, the sample mean converges to the population mean.

    • CLT (Central Limit Theorem) states that the distribution of the sample mean approaches a normal distribution as sample size increases, regardless of the population's distribution.

    • Both theorems are...

  • Answered by AI
  • Q11. Difference between Covariance and correlation?
  • Ans. 

    Covariance measures the directional relationship between two variables, while correlation quantifies the strength and direction of that relationship.

    • Covariance can take any value between -∞ and +∞, while correlation ranges from -1 to +1.

    • Positive covariance indicates that two variables move in the same direction, while negative covariance indicates they move in opposite directions.

    • Correlation standardizes covariance, ma...

  • Answered by AI
  • Q12. What are the assumptions underlying Linear Regression?
  • Ans. 

    Linear regression relies on several key assumptions for valid results, including linearity, independence, and homoscedasticity.

    • Linearity: The relationship between the independent and dependent variables should be linear. For example, predicting weight based on height.

    • Independence: Observations should be independent of each other. For instance, data collected from different individuals should not influence each other.

    • Ho...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hard interview - Straight Forward Answers only (No drama)

Times Internet HR Interview Questions

15 questions and answers

Q. Why do you want to join?
Q. What projects did you work on in your previous organization?
Q. How will you react in a situation where you have to make a quick decision t ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Coding and data structure
Round 2 - Technical 

(1 Question)

  • Q1. ML Breadth and depth
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. What do you know about Uber?
  • Q2. Went over my current role
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. What was the most interesting project you worked on
  • Q2. Design and experiment to validate the new recommendation engine
  • Ans. 

    Designing an experiment to validate a recommendation engine involves A/B testing, metrics, and user feedback for effectiveness.

    • A/B Testing: Split users into two groups, one using the new engine and the other using the old one, to compare performance metrics.

    • Key Metrics: Measure click-through rates, conversion rates, and user engagement to assess the effectiveness of the new engine.

    • User Feedback: Collect qualitative fee...

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

(1 Question)

  • Q1. Probability ,deep learning basics ,machine learning ,simple python programming questions.
  • Ans. It will be multilpe choice questions .Duration - 40 minutes.
  • Answered Anonymously
Round 2 - interview 

(1 Question)

  • Q1. Why this company ,work related to your project,some technical questions on deep learning.

Times Internet Interview FAQs

How many rounds are there in Times Internet Data Scientist interview?
Times Internet interview process usually has 2 rounds. The most common rounds in the Times Internet interview process are Resume Shortlist and Technical.
How to prepare for Times Internet Data Scientist 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 Times Internet. The most common topics and skills that interviewers at Times Internet expect are Advertising, Big Data, Clinical SAS Programming, Computer Science and Deep Learning.
What are the top questions asked in Times Internet Data Scientist interview?

Some of the top questions asked at the Times Internet Data Scientist interview -

  1. given a weather table, write a sql query to find all date's ids with higher tem...read more
  2. What is the process for creating a data pipeline in Spark to continuously monit...read more
  3. How can a large language model (LLM) be used to create YouTube Shor...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%
View more

Interview Questions from Similar Companies

Amazon Data Scientist Interview Questions
4.0
 • 5.5k Interviews
Uber Data Scientist Interview Questions
4.2
 • 157 Interviews
View all
Times Internet Data Scientist Salary
based on 17 salaries
₹20.4 L/yr - ₹38 L/yr
77% more than the average Data Scientist Salary in India
View more details

Times Internet Data Scientist Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.3

Salary

5.0

Job security

5.0

Company culture

4.3

Promotions

5.0

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
149 salaries
unlock blur

₹20.8 L/yr - ₹37 L/yr

Product Manager
105 salaries
unlock blur

₹20 L/yr - ₹32.7 L/yr

Software Developer
94 salaries
unlock blur

₹11.3 L/yr - ₹20 L/yr

Manager
69 salaries
unlock blur

₹13.3 L/yr - ₹23.8 L/yr

Accounts Manager
63 salaries
unlock blur

₹5.2 L/yr - ₹10.4 L/yr

Explore more salaries
Compare Times Internet with

Amazon

4.0
Compare

Flipkart

3.9
Compare

Indiamart Intermesh

3.6
Compare

BigBasket

3.9
Compare
write
Share an Interview