Upload Button Icon Add office photos

Filter interviews by

GeakMinds Associate Data Scientist Interview Questions and Answers

Updated 24 Jul 2024

10 Interview questions

An Associate Data Scientist was asked 11mo ago
Q. Explain the Random Forest algorithm.
Ans. 

Random Forest is an ensemble learning algorithm that creates multiple decision trees and combines their predictions.

  • Random Forest is a collection of decision trees that are trained on random subsets of the data.

  • Each tree in the Random Forest independently predicts the outcome, and the final prediction is made by averaging the predictions of all trees.

  • Random Forest is used for classification and regression tasks, a...

An Associate Data Scientist was asked 11mo ago
Q. What is the difference between Series and Dataframe?
Ans. 

Series is a one-dimensional labeled array while Dataframe is a two-dimensional labeled data structure.

  • Series can hold data of any type while Dataframe is a collection of Series.

  • Dataframe is like a table with rows and columns, while Series is like a single column of that table.

  • Dataframe is more versatile and powerful compared to Series.

  • Example: Series - a column of employee names. Dataframe - a table with columns f...

Associate Data Scientist Interview Questions Asked at Other Companies

Q1. Why do you think the objective of predictive modeling is minimizi ... read more
Q2. How can a string be reversed without affecting memory size?
Q3. What Multiple Functions in terms of the Data can be Performed in ... read more
asked in GeakMinds
Q4. What is the difference between Rank and Dense Rank in SQL?
asked in GeakMinds
Q5. What is the difference between Stemming and Lemmatization? Which ... read more
An Associate Data Scientist was asked 11mo ago
Q. Explain the assumptions of linear regression.
Ans. 

Assumptions of linear regression are important for the model to be valid and reliable.

  • Linear relationship between independent and dependent variables

  • Independence of residuals (errors)

  • Homoscedasticity (constant variance of residuals)

  • Normality of residuals

  • No multicollinearity among independent variables

An Associate Data Scientist was asked 11mo ago
Q. What is the difference between Rank and Dense Rank in SQL?
Ans. 

Rank assigns unique ranks to each row based on the order specified, while Dense Rank assigns consecutive ranks without gaps.

  • Rank may have gaps in ranks if there are ties, while Dense Rank does not have gaps.

  • Rank function is used to assign a unique rank to each row based on the specified order, while Dense Rank function assigns consecutive ranks.

  • Example: If three rows have the same value and are ranked 1, 1, and 2 ...

An Associate Data Scientist was asked 11mo ago
Q. What is the Central Limit Theorem?
Ans. 

Central Limit Theorem states that the sampling distribution of the sample mean approaches a normal distribution as the sample size increases.

  • The Central Limit Theorem is a fundamental concept in statistics that states that the sampling distribution of the sample mean will be approximately normally distributed, regardless of the shape of the population distribution, as the sample size increases.

  • It is important beca...

An Associate Data Scientist was asked 11mo ago
Q. Write an SQL query to join two tables.
Ans. 

SQL query to join two tables

  • Use JOIN keyword to combine rows from two or more tables based on a related column between them

  • Specify the columns to be selected from each table

  • Use ON keyword to specify the join condition

An Associate Data Scientist was asked 11mo ago
Q. What is the difference between R-Squared and Adjusted R-Squared?
Ans. 

R-Squared measures the proportion of variance explained by the model, while Adjusted R-Squared adjusts for the number of predictors in the model.

  • R-Squared increases as more predictors are added to the model, even if they are not relevant.

  • Adjusted R-Squared penalizes for adding irrelevant predictors, making it a more reliable measure of model fit.

  • R-Squared can never decrease when adding predictors, while Adjusted R...

Are these interview questions helpful?
An Associate Data Scientist was asked 11mo ago
Q. Analyze the datasets and build a Machine Learning model.
Ans. 

Analyzing datasets and building a Machine Learning model for Associate Data Scientist role.

  • 1. Explore and understand the datasets to identify patterns and relationships.

  • 2. Preprocess the data by handling missing values, encoding categorical variables, and scaling numerical features.

  • 3. Split the data into training and testing sets for model evaluation.

  • 4. Choose a suitable Machine Learning algorithm based on the nat...

An Associate Data Scientist was asked 11mo ago
Q. Perform EDA on the provided datasets and find insights
Ans. 

Conduct EDA on datasets to uncover trends, patterns, and insights for informed decision-making.

  • Check for missing values and handle them appropriately, e.g., imputation or removal.

  • Visualize distributions of key variables using histograms or box plots to identify outliers.

  • Analyze correlations between features using heatmaps to understand relationships.

  • Segment data by categories to uncover trends, e.g., sales by regi...

An Associate Data Scientist was asked 11mo ago
Q. What is the difference between Stemming and Lemmatization? Which one is better and why?
Ans. 

Stemming reduces words to their root form, while lemmatization reduces words to their dictionary form.

  • Stemming chops off prefixes or suffixes to get the root form (e.g. 'running' becomes 'run')

  • Lemmatization uses vocabulary analysis to reduce words to their base form (e.g. 'better' becomes 'good')

  • Lemmatization is more accurate but slower than stemming

  • Stemming is faster but may not always result in a valid word

GeakMinds Associate Data Scientist Interview Experiences

1 interview found

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 3 interview rounds.

Round 1 - System Test 

(3 Questions)

  • Q1. Write SQL query to join two tables
  • Ans. 

    SQL query to join two tables

    • Use JOIN keyword to combine rows from two or more tables based on a related column between them

    • Specify the columns to be selected from each table

    • Use ON keyword to specify the join condition

  • Answered by AI
  • Q2. Perform EDA on the provided datasets and find insights
  • Ans. 

    Conduct EDA on datasets to uncover trends, patterns, and insights for informed decision-making.

    • Check for missing values and handle them appropriately, e.g., imputation or removal.

    • Visualize distributions of key variables using histograms or box plots to identify outliers.

    • Analyze correlations between features using heatmaps to understand relationships.

    • Segment data by categories to uncover trends, e.g., sales by region or...

  • Answered by AI
  • Q3. Analyse the datasets and build a Machine Learning model
  • Ans. 

    Analyzing datasets and building a Machine Learning model for Associate Data Scientist role.

    • 1. Explore and understand the datasets to identify patterns and relationships.

    • 2. Preprocess the data by handling missing values, encoding categorical variables, and scaling numerical features.

    • 3. Split the data into training and testing sets for model evaluation.

    • 4. Choose a suitable Machine Learning algorithm based on the nature o...

  • Answered by AI
Round 2 - Technical 

(5 Questions)

  • Q1. Explain Assumptions of Linear Regression
  • Ans. 

    Assumptions of linear regression are important for the model to be valid and reliable.

    • Linear relationship between independent and dependent variables

    • Independence of residuals (errors)

    • Homoscedasticity (constant variance of residuals)

    • Normality of residuals

    • No multicollinearity among independent variables

  • Answered by AI
  • Q2. What is the difference between R-Squared and Adjusted R-Squared?
  • Ans. 

    R-Squared measures the proportion of variance explained by the model, while Adjusted R-Squared adjusts for the number of predictors in the model.

    • R-Squared increases as more predictors are added to the model, even if they are not relevant.

    • Adjusted R-Squared penalizes for adding irrelevant predictors, making it a more reliable measure of model fit.

    • R-Squared can never decrease when adding predictors, while Adjusted R-Squa...

  • Answered by AI
  • Q3. What is Central Mean Theorem?
  • Ans. 

    Central Limit Theorem states that the sampling distribution of the sample mean approaches a normal distribution as the sample size increases.

    • The Central Limit Theorem is a fundamental concept in statistics that states that the sampling distribution of the sample mean will be approximately normally distributed, regardless of the shape of the population distribution, as the sample size increases.

    • It is important because i...

  • Answered by AI
  • Q4. What is the difference between Rank and Dense Rank in SQL?
  • Ans. 

    Rank assigns unique ranks to each row based on the order specified, while Dense Rank assigns consecutive ranks without gaps.

    • Rank may have gaps in ranks if there are ties, while Dense Rank does not have gaps.

    • Rank function is used to assign a unique rank to each row based on the specified order, while Dense Rank function assigns consecutive ranks.

    • Example: If three rows have the same value and are ranked 1, 1, and 2 using...

  • Answered by AI
  • Q5. What is the difference between Series and Dataframe?
  • Ans. 

    Series is a one-dimensional labeled array while Dataframe is a two-dimensional labeled data structure.

    • Series can hold data of any type while Dataframe is a collection of Series.

    • Dataframe is like a table with rows and columns, while Series is like a single column of that table.

    • Dataframe is more versatile and powerful compared to Series.

    • Example: Series - a column of employee names. Dataframe - a table with columns for em...

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Explain Random Forest algorithm
  • Ans. 

    Random Forest is an ensemble learning algorithm that creates multiple decision trees and combines their predictions.

    • Random Forest is a collection of decision trees that are trained on random subsets of the data.

    • Each tree in the Random Forest independently predicts the outcome, and the final prediction is made by averaging the predictions of all trees.

    • Random Forest is used for classification and regression tasks, and it...

  • Answered by AI
  • Q2. What is the difference between Stemming and Lemmatization? Which one is better and why?
  • Ans. 

    Stemming reduces words to their root form, while lemmatization reduces words to their dictionary form.

    • Stemming chops off prefixes or suffixes to get the root form (e.g. 'running' becomes 'run')

    • Lemmatization uses vocabulary analysis to reduce words to their base form (e.g. 'better' becomes 'good')

    • Lemmatization is more accurate but slower than stemming

    • Stemming is faster but may not always result in a valid word

  • Answered by AI
  • Q3. Questions about my previous projects

Interview Preparation Tips

Topics to prepare for GeakMinds Associate Data Scientist interview:
  • Data Science
  • Machine Learning
  • Python
  • SQL
  • Pandas
  • Statistics
Interview preparation tips for other job seekers - Good understanding of basic data science concepts is enough
Confidence and attitude toward answering questions are important

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about GeakMinds?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. "how would design a data pipeline two handle real time streaming data from multiple sources? What tools and technologies would you use and why?"
  • Q2. ".Suppose a critical ETL job failed and impact downstream reporting dashboards how would you troubleshoot the issues and ensure minimal disruption to the business?"

Associate Data Scientist Interview Questions Asked at Other Companies

Q1. Why do you think the objective of predictive modeling is minimizi ... read more
Q2. How can a string be reversed without affecting memory size?
Q3. What Multiple Functions in terms of the Data can be Performed in ... read more
asked in GeakMinds
Q4. What is the difference between Rank and Dense Rank in SQL?
asked in GeakMinds
Q5. What is the difference between Stemming and Lemmatization? Which ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the full form of ETL?
  • Ans. 

    ETL stands for Extract, Transform, Load. It is a process used in data warehousing to extract data from various sources, transform it into a consistent format, and load it into a target database.

    • ETL stands for Extract, Transform, Load

    • Extract: Involves extracting data from various sources such as databases, applications, and files

    • Transform: Involves cleaning, filtering, and transforming the extracted data into a consiste...

  • Answered by AI
  • Q2. ETL Full form is Exact, Transform, Load.

Interview Preparation Tips

Interview preparation tips for other job seekers - "Stay persistent, network, actively, continuously upgrade your skills."

I applied via Referral and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Related to work profile
  • Q2. Related to interests

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, go well groomed

I applied via Naukri.com and was interviewed in Sep 2019. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. Question 1)Tell me about yourself and qualifications?
  • Ans. 

    I am a recent graduate with a degree in Computer Science and experience in web development.

    • Recent graduate with a degree in Computer Science

    • Experience in web development

    • Strong problem-solving skills

    • Proficient in programming languages such as Java, JavaScript, and HTML/CSS

  • Answered by AI
  • Q2. Question 2)What are your hobbies?
  • Ans. 

    My hobbies include reading, hiking, and playing the guitar.

    • Reading: I enjoy reading fiction and non-fiction books in my free time.

    • Hiking: I love exploring nature trails and challenging myself with new hikes.

    • Playing the guitar: I have been playing the guitar for several years and enjoy learning new songs.

  • Answered by AI
  • Q3. Question 3)What do you know about our company?
  • Ans. 

    Our company is a leading tech startup specializing in AI-driven solutions for businesses.

    • Specializes in AI-driven solutions for businesses

    • Considered a leading tech startup in the industry

    • Known for innovative and cutting-edge technology

    • Has a strong focus on research and development

    • Provides services to a wide range of industries

  • Answered by AI
  • Q4. Question 4) Why do you want to join our company?
  • Ans. 

    I want to join your company because of its innovative projects, strong company culture, and opportunities for growth.

    • Innovative projects that align with my interests and skills

    • Strong company culture that values collaboration and employee development

    • Opportunities for growth and advancement within the company

  • Answered by AI
  • Q5. Question 5) Tell me about your training and projects you have done in college?
  • Ans. 

    I completed various training programs and projects during my college years, gaining hands-on experience in different areas.

    • Completed a training program in data analysis using Python and R

    • Developed a mobile application for a class project using Java and Android Studio

    • Participated in a research project on renewable energy sources

    • Completed an internship at a local software company, working on web development projects

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Start by researching about the company and job profile you applied for. Practice common interview questions. Be confident. Ask questions at the end of the interview. Remember your CV details. Arrive on time and stay relaxed.

I appeared for an interview before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

I appeared for an interview before Aug 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments

Round: Test
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments
Total Questions: 15

Round: Test
Experience: See my mentality
Tips: No comments
Duration: 45 minutes

Round: Group Discussion
Experience: Communication
Tips: No comments

Skills: Communication And Confidence
Are these interview questions helpful?

I appeared for an interview before May 2016.

Interview Preparation Tips

College Name: GPREC kurnool

I appeared for an interview in Mar 2017.

Interview Questionnaire 

5 Questions

  • Q1. Related to semiconductors, processors etc. were asked.
  • Q2. Strength
  • Q3. Weaknesses
  • Q4. Hobbies
  • Q5. If there are 200 fishes in an aquarium. 99% are red. How many fishes have to be removed to make the red fishes 98 % in the aquarium?
  • Ans. 

    To make the red fishes 98%, 50 fishes have to be removed from the aquarium.

    • Calculate 1% of 200 fishes to find the number of red fishes.

    • Subtract the number of red fishes from 200 to find the number of non-red fishes.

    • Calculate 2% of the total number of fishes to find the desired number of red fishes.

    • Subtract the desired number of red fishes from the current number of red fishes to find the number of fishes to be removed.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 40 aptitude questions of variable difficulty. More questions revolved around topics like time and work, distance, speed, time, profit loss, age etc.
Tips: A regular and prior preparation will go a long way in determining a good test score.
Use tricks to solve the questions and calculations should be fast.
Duration: 30 minutes
Total Questions: 40

Round: Test
Experience: The questions weren't that tough when it came to programming. An example would be conversion of temperature from Celsius to Fahrenheit and vice versa. This was a question in my paper. So I'm hoping the difficulty would be more or less the same.
Tips: Do certified programming courses. They help you a lot in cracking good jobs.
Duration: 45 minutes
Total Questions: 3

Round: Puzzle Interview
Tips: This can be tough if you can't imagine scenarios and situations. So make sure you inculcate critical problem solving thinking in your everyday life. I feel that's the best way to do things in this round.

Round: Technical Interview
Experience: This was a short interview so not much happened.
Tips: Whatever you do just know your stuff properly.

Round: HR Interview
Experience: It was a simple interview. Basic questions and their basic answers helped me get through it.
Tips: The tip would be to stay positive in your approach while answering the questions

Skills: Technical Skill, Interpersonal Communication, Aptitude
College Name: VIT Vellore

I appeared for an interview in Mar 2017.

Interview Questionnaire 

5 Questions

  • Q1. Related to semiconductors, processors etc. were asked.
  • Q2. Weaknesses
  • Q3. Strength
  • Q4. Hobby
  • Q5. If there are 200 fishes in an aquarium. 99% are red. How many fishes have to be removed to make the red fishes 98 % in the aquarium?
  • Ans. 

    To make the red fishes 98%, 50 fishes have to be removed from the aquarium.

    • Calculate 1% of 200 fishes to find out how many fishes represent 1%.

    • Multiply the result by 2 to find out how many fishes represent 2%.

    • Subtract the result from 200 to find out how many fishes represent 98%.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 40 aptitude questions of variable difficulty. More questions revolved around topics like time and work, distance, speed, time, profit loss, age etc.
Tips: A regular and prior preparation will go a long way in determining a good test score.
Use tricks to solve the questions and calculations should be fast.
Duration: 30 minutes
Total Questions: 40

Round: Test
Experience: The questions weren't that tough when it came to programming. An example would be conversion of temperature from Celsius to Fahrenheit and vice versa. This was a question in my paper. So I'm hoping the difficulty would be more or less the same.
Tips: Do certified programming courses. They help you a lot in cracking good jobs.
Duration: 45 minutes
Total Questions: 3

Round: Puzzle Interview
Tips: This can be tough if you can't imagine scenarios and situations. So make sure you inculcate critical problem solving thinking in your everyday life. I feel that's the best way to do things in this round.

Round: Technical Interview
Experience: This was a short interview so not much happened.
Tips: Whatever you do just know your stuff properly.

Round: HR Interview
Experience: It was a simple interview. Basic questions and their basic answers helped me get through it.
Tips: The tip would be to stay positive in your approach while answering the questions

Skills: Technical Skill, Interpersonal Communication, Aptitude
College Name: VIT Vellore

GeakMinds Interview FAQs

How many rounds are there in GeakMinds Associate Data Scientist interview?
GeakMinds interview process usually has 3 rounds. The most common rounds in the GeakMinds interview process are Technical.
What are the top questions asked in GeakMinds Associate Data Scientist interview?

Some of the top questions asked at the GeakMinds Associate Data Scientist interview -

  1. What is the difference between Rank and Dense Rank in S...read more
  2. What is the difference between Stemming and Lemmatization? Which one is better ...read more
  3. What is the difference between Series and Datafra...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

AmbitionBox Interview Questions
4.8
 • 150 Interviews
HCL Infosystems Interview Questions
3.9
 • 144 Interviews
Data Entry Interview Questions
4.2
 • 109 Interviews
Webdew Interview Questions
4.5
 • 108 Interviews
HyScaler Interview Questions
4.5
 • 104 Interviews
Marpu Foundation Interview Questions
4.8
 • 100 Interviews
View all
GeakMinds Associate Data Scientist Salary
based on 5 salaries
₹3.6 L/yr - ₹5.3 L/yr
58% less than the average Associate Data Scientist Salary in India
View more details

GeakMinds Associate Data Scientist Reviews and Ratings

based on 3 reviews

4.5/5

Rating in categories

4.0

Skill development

4.5

Work-life balance

3.8

Salary

4.5

Job security

4.5

Company culture

3.8

Promotions

4.0

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
10 salaries
unlock blur

₹3.6 L/yr - ₹5.8 L/yr

Qa Automation Lead
9 salaries
unlock blur

₹30 L/yr - ₹31 L/yr

Data Scientist
8 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Associate Software Engineer
6 salaries
unlock blur

₹2.7 L/yr - ₹3.9 L/yr

Senior Data Scientist
6 salaries
unlock blur

₹6.5 L/yr - ₹12.6 L/yr

Explore more salaries
Compare GeakMinds with

Marpu Foundation

4.9
Compare

Huawei Technologies

4.0
Compare

HCL Infosystems

3.9
Compare

Z X Learning

4.4
Compare
write
Share an Interview