Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by MathCo Team. If you also belong to the team, you can get access from here

MathCo Verified Tick

Compare button icon Compare button icon Compare
3.0

based on 347 Reviews

Filter interviews by

MathCo Data Scientist Interview Questions and Answers

Updated 10 Oct 2024

MathCo Data Scientist Interview Experiences

2 interviews found

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

I applied via Hirect and was interviewed in May 2022. There were 5 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 

Basic python sql questions, mcq based and coding questions.

Round 3 - Technical 

(1 Question)

  • Q1. They asked the projects which I am working on and had discussion on the same. Asked few statistical questions like boxplots and normal distribution. Also asked basic questions on advance SQL
Round 4 - Behavioral 

(1 Question)

  • Q1. Problem solving questions. Gave a case study to check presence of mind
Round 5 - HR 

(1 Question)

  • Q1. Basic salary discussion

Interview Preparation Tips

Topics to prepare for MathCo Data Scientist interview:
  • SQL
  • python
Interview preparation tips for other job seekers - Just be appropriate in tech round and managerial round
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Coding Test 

Python sql basic questions

Data Scientist Interview Questions Asked at Other Companies

Q1. Special Sum of Array Problem Statement Given an array 'arr' conta ... read more
Q2. for a data with 1000 samples and 700 dimensions, how would you fi ... read more
asked in Affine
Q3. you have a pandas dataframe with three columns, filled with state ... read more
Q4. Clone a Linked List with Random Pointers Given a linked list wher ... read more
asked in Coforge
Q5. coding question of finding index of 2 nos. having total equal to ... read more

Interview questions from similar companies

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

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

Round 1 - Coding Test 

There are 10 multiple-choice questions (MCQs) on Python, 20 MCQs on machine learning (ML), and 10 questions on deep learning (DL).

Round 2 - Technical 

(1 Question)

  • Q1. The technical round was divided in three phases - phase -1 : intro and professional projects They asked about the projects I have contributed in my full-time tenure. Then, asked me to pick any one of them...
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(3 Questions)

  • Q1. What is Overfitting in decision tree
  • Ans. 

    Overfitting in decision trees occurs when the model learns noise in the training data rather than the underlying pattern.

    • Overfitting happens when the decision tree is too complex and captures noise in the training data.

    • It leads to poor generalization on unseen data, as the model is too specific to the training set.

    • To prevent overfitting, techniques like pruning, setting a minimum number of samples per leaf, or using en

  • Answered by AI
  • Q2. What is bagging
  • Ans. 

    Bagging is a machine learning ensemble technique where multiple models are trained on different subsets of the training data and their predictions are combined.

    • Bagging stands for Bootstrap Aggregating.

    • It helps reduce overfitting by combining the predictions of multiple models.

    • Random Forest is a popular algorithm that uses bagging by training multiple decision trees on random subsets of the data.

  • Answered by AI
  • Q3. What is neuron How its used in DL
  • Ans. 

    A neuron is a basic unit of a neural network that receives input, processes it, and produces an output.

    • Neurons are inspired by biological neurons in the human brain.

    • They receive input signals, apply weights to them, sum them up, and pass the result through an activation function.

    • Neurons are organized in layers in a neural network, with each layer performing specific tasks.

    • In deep learning, multiple layers of neurons ar...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Python coding and sql coding

Round 2 - Technical 

(2 Questions)

  • Q1. List all the string which start with 'a'
  • Ans. 

    List of strings starting with 'a'

    • Use a loop to iterate through each string

    • Check if each string starts with 'a'

    • Add the string to the list if it starts with 'a'

  • Answered by AI
  • Q2. Find out max value from the given table
  • Ans. 

    Use SQL query to find max value from a table

    • Use SQL query SELECT MAX(column_name) FROM table_name;

    • For example, SELECT MAX(salary) FROM employees;

    • Ensure proper column name and table name are used in the query

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - great experience

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

15 MCQ, 2 coding round

Round 2 - Technical 

(2 Questions)

  • Q1. What is PCA explain eigen values
  • Q2. How chatbot works really
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company

Round 1 - Technical 

(3 Questions)

  • Q1. Explain Transformers how different from previous RNN, LSTM etc.
  • Ans. 

    Transformers are a type of neural network architecture that utilizes self-attention mechanisms to process sequential data.

    • Transformers use self-attention mechanisms to weigh the importance of different input elements, allowing for parallel processing of sequences.

    • Unlike RNNs and LSTMs, Transformers do not rely on sequential processing, making them more efficient for long-range dependencies.

    • Transformers have been shown ...

  • Answered by AI
  • Q2. What are different types of Attention?
  • Ans. 

    Different types of Attention include self-attention, global attention, and local attention.

    • Self-attention focuses on relationships within the input sequence itself.

    • Global attention considers the entire input sequence when making predictions.

    • Local attention only attends to a subset of the input sequence at a time.

    • Examples include Transformer's self-attention mechanism, Bahdanau attention, and Luong attention.

  • Answered by AI
  • Q3. Difference between GPT and BERT model
  • Ans. 

    GPT is a generative model while BERT is a transformer model for natural language processing.

    • GPT is a generative model that predicts the next word in a sentence based on previous words.

    • BERT is a transformer model that considers the context of a word by looking at the entire sentence.

    • GPT is unidirectional, while BERT is bidirectional.

    • GPT is better for text generation tasks, while BERT is better for understanding the cont

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Difference between Data scientist, ML and AI
  • Ans. 

    Data scientists analyze data to gain insights, machine learning (ML) involves algorithms that improve automatically through experience, and artificial intelligence (AI) refers to machines mimicking human cognitive functions.

    • Data scientists analyze large amounts of data to uncover patterns and insights.

    • Machine learning involves developing algorithms that improve automatically through experience.

    • Artificial intelligence r...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Python coding and ML resume based questions

Round 2 - HR 

(2 Questions)

  • Q1. Past Projects with the Director
  • Q2. Behavioral Round questions Mostly
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Coding Test 

First round is coding round where two use cases are there. Need to solve them

Round 2 - Technical 

(1 Question)

  • Q1. They will all topics Statistics, SQL, Python, Machine Learning, Data Science
Round 3 - Technical 

(1 Question)

  • Q1. They will discuss more on the projects what we worked on
Round 4 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on Transformer Architecture and
  • Q2. System design tradeoffs and basic principles
  • Ans. 

    System design tradeoffs involve balancing various factors to optimize performance and efficiency.

    • Consider scalability, reliability, latency, and cost when designing systems

    • Tradeoffs may involve sacrificing one aspect for the benefit of another

    • Examples include choosing between consistency and availability in distributed systems

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Various questions on my projects
  • Q2. NLP based questions and metrics calculation and case study
Round 3 - HR 

(2 Questions)

  • Q1. Basic HR questions
  • Q2. Why Fractal, etc
  • Ans. 

    Fractals are used in data science for analyzing complex and self-similar patterns.

    • Fractals are useful for analyzing data with repeating patterns at different scales.

    • They are used in image compression, signal processing, and financial market analysis.

    • Fractal analysis can help in understanding the underlying structure of data and making predictions.

  • Answered by AI

Skills evaluated in this interview

MathCo Interview FAQs

How many rounds are there in MathCo Data Scientist interview?
MathCo interview process usually has 3 rounds. The most common rounds in the MathCo interview process are Resume Shortlist, Aptitude Test and Technical.
How to prepare for MathCo 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 MathCo. The most common topics and skills that interviewers at MathCo expect are Analytical Chemistry, Data Analysis, Data Visualization, MS Office and Machine Learning.

Tell us how to improve this page.

MathCo Data Scientist Interview Process

based on 5 interviews

Interview experience

4.2
  
Good
View more
MathCo Data Scientist Salary
based on 126 salaries
₹6 L/yr - ₹20 L/yr
10% less than the average Data Scientist Salary in India
View more details

MathCo Data Scientist Reviews and Ratings

based on 20 reviews

3.1/5

Rating in categories

3.5

Skill development

2.5

Work-life balance

3.0

Salary

3.0

Job security

3.4

Company culture

3.5

Promotions

2.9

Work satisfaction

Explore 20 Reviews and Ratings
Analyst
230 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Senior Associate
227 salaries
unlock blur

₹10 L/yr - ₹28 L/yr

Data Analyst
186 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Associate
133 salaries
unlock blur

₹7 L/yr - ₹17 L/yr

Data Scientist
126 salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Explore more salaries
Compare MathCo with

Fractal Analytics

4.0
Compare

Mu Sigma

2.6
Compare

LatentView Analytics

3.7
Compare

Tiger Analytics

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview