Upload Button Icon Add office photos

Tredence

Compare button icon Compare button icon Compare

Filter interviews by

Tredence Data Scientist Interview Questions and Answers

Updated 14 Feb 2025

6 Interview questions

A Data Scientist was asked 9mo ago
Q. What is the difference between precision and recall?
Ans. 

Precision measures the accuracy of positive predictions, while recall measures the ability to find all positive instances.

  • Precision is the ratio of correctly predicted positive observations to the total predicted positives.

  • Recall is the ratio of correctly predicted positive observations to all actual positives.

  • Precision is important when the cost of false positives is high, while recall is important when the cost ...

A Data Scientist was asked 9mo ago
Q. How do you handle missing values?
Ans. 

Handle missing values by imputation, deletion, or using algorithms that can handle missing data.

  • Impute missing values using mean, median, mode, or predictive modeling

  • Delete rows or columns with missing values if they are insignificant

  • Use algorithms like XGBoost, Random Forest, or LightGBM that can handle missing data

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
A Data Scientist was asked
Q. Transpose a matrix in python and machine learning questions
Ans. 

To transpose a matrix in Python, use numpy.transpose() or the T attribute.

  • Use numpy.transpose() function to transpose a matrix.

  • Alternatively, use the T attribute of a numpy array.

  • Example: np.transpose(matrix) or matrix.T

A Data Scientist was asked
Q. Evaluation metrics, AU ROC Curve, explain one use case
Ans. 

AU ROC Curve is used to evaluate the performance of classification models by measuring the trade-off between true positive rate and false positive rate.

  • AU ROC Curve is commonly used in binary classification problems.

  • It helps in comparing different models based on their ability to distinguish between classes.

  • The area under the ROC curve (AUROC) value closer to 1 indicates a better model performance.

  • For example, in ...

What people are saying about Tredence

View All
a data scientist
1w (edited)
How Is 26 LPA for 7 yoe in Data Science?
Responsibilities include - Core DS (ML, DL, Gen AI) and basic level deployment too (MLOPs)
Got a question about Tredence?
Ask anonymously on communities.
A Data Scientist was asked
Q. What are numpy and pandas
Ans. 

NumPy is a library for numerical computing in Python, while Pandas is a data manipulation and analysis tool.

  • NumPy provides support for large, multi-dimensional arrays and matrices, along with a collection of mathematical functions to operate on these arrays.

  • Pandas offers data structures like DataFrame for easy data manipulation and analysis, with tools for reading and writing data from various file formats.

  • Both li...

A Data Scientist was asked
Q. Visualization libraries in python
Ans. 

Python has various visualization libraries like Matplotlib, Seaborn, Plotly, and Bokeh.

  • Matplotlib is a widely used library for creating static, interactive, and animated plots.

  • Seaborn is built on top of Matplotlib and provides a high-level interface for creating attractive and informative statistical graphics.

  • Plotly is great for creating interactive plots and dashboards.

  • Bokeh is another interactive visualization l...

Tredence Data Scientist Interview Experiences

10 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. How to handle missing values
  • Ans. 

    Handle missing values by imputation, deletion, or using algorithms that can handle missing data.

    • Impute missing values using mean, median, mode, or predictive modeling

    • Delete rows or columns with missing values if they are insignificant

    • Use algorithms like XGBoost, Random Forest, or LightGBM that can handle missing data

  • Answered by AI
  • Q2. Linear equations model metrics
Round 2 - One-on-one 

(2 Questions)

  • Q1. Precession vs recall?
  • Ans. 

    Precision measures the accuracy of positive predictions, while recall measures the ability to find all positive instances.

    • Precision is the ratio of correctly predicted positive observations to the total predicted positives.

    • Recall is the ratio of correctly predicted positive observations to all actual positives.

    • Precision is important when the cost of false positives is high, while recall is important when the cost of fa...

  • Answered by AI
  • Q2. Clustering evaluation metrics

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
-
Result
Not Selected

I applied via Referral

Round 1 - Coding Test 

1 hour - SQL, Python, ML, Deep Learning

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Interpretation of logistic regression
  • Ans. 

    Logistic regression is a statistical model used to predict the probability of a binary outcome based on one or more predictor variables.

    • Logistic regression is used when the dependent variable is binary (0/1, yes/no, true/false, etc.)

    • It estimates the probability that a given observation belongs to a particular category.

    • The output of logistic regression is a probability score between 0 and 1.

    • It uses the logistic function...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Evaluation metrics, AU ROC Curve, explain one use case
  • Ans. 

    AU ROC Curve is used to evaluate the performance of classification models by measuring the trade-off between true positive rate and false positive rate.

    • AU ROC Curve is commonly used in binary classification problems.

    • It helps in comparing different models based on their ability to distinguish between classes.

    • The area under the ROC curve (AUROC) value closer to 1 indicates a better model performance.

    • For example, in healt...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. General managerial questions

Skills evaluated in this interview

Data Scientist Interview Questions & Answers

user image Krishna Anand

posted on 11 Oct 2023

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

I applied via Campus Placement

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 

Aptitude + Technical Questions

Round 3 - Coding Test 

Coding Questions of SQL and DSA

Round 4 - Technical 

(4 Questions)

  • Q1. Transpose a matrix in python and machine learning questions
  • Ans. 

    To transpose a matrix in Python, use numpy.transpose() or the T attribute.

    • Use numpy.transpose() function to transpose a matrix.

    • Alternatively, use the T attribute of a numpy array.

    • Example: np.transpose(matrix) or matrix.T

  • Answered by AI
  • Q2. What are numpy and pandas
  • Ans. 

    NumPy is a library for numerical computing in Python, while Pandas is a data manipulation and analysis tool.

    • NumPy provides support for large, multi-dimensional arrays and matrices, along with a collection of mathematical functions to operate on these arrays.

    • Pandas offers data structures like DataFrame for easy data manipulation and analysis, with tools for reading and writing data from various file formats.

    • Both librari...

  • Answered by AI
  • Q3. Visualization libraries in python
  • Ans. 

    Python has various visualization libraries like Matplotlib, Seaborn, Plotly, and Bokeh.

    • Matplotlib is a widely used library for creating static, interactive, and animated plots.

    • Seaborn is built on top of Matplotlib and provides a high-level interface for creating attractive and informative statistical graphics.

    • Plotly is great for creating interactive plots and dashboards.

    • Bokeh is another interactive visualization librar...

  • Answered by AI
  • Q4. Object Oriented Programing

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through your resume completely and have a good command on python

Skills evaluated in this interview

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

(2 Questions)

  • Q1. It was about machine learning
  • Q2. It was about Genai RAG
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test which requires python and few aptitude and technical questions

Round 2 - Technical 

(1 Question)

  • Q1. Python questions and questions based on resume
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Data Science related

Round 2 - Technical 

(2 Questions)

  • Q1. Asked about the projects
  • Q2. Interview revolved around M.L based questions
Round 3 - Technical 

(2 Questions)

  • Q1. Asked to execute SQL questions
  • Q2. Technical interview related to Data Science

Interview Preparation Tips

Interview preparation tips for other job seekers - Good place to learn
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview before Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Project related questions, from CV
Round 2 - Technical 

(1 Question)

  • Q1. On deep learning, from cv
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions like why you want to change, etc
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Aptitude Test 

ML questions alogorithims

Interview Preparation Tips

Interview preparation tips for other job seekers - ML questions

I applied via Job Fair and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - Case Study 

It was 1 ML assignment

Round 2 - Technical 

(1 Question)

  • Q1. P value, random forest, matrix used, ROC/Auv curve, linear regression assumption

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go for the basics of ML, especially if you have worked in any models than how you did that from scratch, why u selected that model , some more questions on the same, basics of stats, basics of python and sql

Tredence Interview FAQs

How many rounds are there in Tredence Data Scientist interview?
Tredence interview process usually has 2-3 rounds. The most common rounds in the Tredence interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Tredence 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 Tredence. The most common topics and skills that interviewers at Tredence expect are Python, Machine Learning, SQL, Predictive Modeling and Data Analysis.
What are the top questions asked in Tredence Data Scientist interview?

Some of the top questions asked at the Tredence Data Scientist interview -

  1. Transpose a matrix in python and machine learning questi...read more
  2. Evaluation metrics, AU ROC Curve, explain one use c...read more
  3. How to handle missing val...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 10 interview experiences

Difficulty level

Easy 43%
Moderate 57%

Duration

Less than 2 weeks 50%
2-4 weeks 33%
6-8 weeks 17%
View more
Tredence Data Scientist Salary
based on 165 salaries
₹9.8 L/yr - ₹19 L/yr
11% less than the average Data Scientist Salary in India
View more details

Tredence Data Scientist Reviews and Ratings

based on 23 reviews

3.9/5

Rating in categories

4.3

Skill development

4.0

Work-life balance

3.2

Salary

4.3

Job security

3.8

Company culture

2.9

Promotions

3.7

Work satisfaction

Explore 23 Reviews and Ratings
Hiring Data Scientists

Pune,

Gurgaon / Gurugram

+1

5-10 Yrs

Not Disclosed

Explore more jobs
Consultant
455 salaries
unlock blur

₹11.5 L/yr - ₹20 L/yr

Associate Manager
444 salaries
unlock blur

₹19.2 L/yr - ₹33 L/yr

Data Engineer
324 salaries
unlock blur

₹7.1 L/yr - ₹18.2 L/yr

Analyst
280 salaries
unlock blur

₹6 L/yr - ₹10.8 L/yr

Senior Business Analyst
247 salaries
unlock blur

₹10.2 L/yr - ₹17 L/yr

Explore more salaries
Compare Tredence with

ITC Infotech

3.7
Compare

CitiusTech

3.3
Compare

HTC Global Services

3.5
Compare

Xoriant

4.1
Compare
write
Share an Interview