Upload Button Icon Add office photos

Filter interviews by

GeakMinds Interview Questions and Answers

Updated 10 Jul 2025
Popular Designations

12 Interview questions

A Junior Data Analyst was asked 8mo ago
Q. Explain linear regression.
Ans. 

Linear regression is a statistical method used to model the relationship between a dependent variable and one or more independent variables.

  • Linear regression is used to predict the value of a dependent variable based on the value of one or more independent variables.

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

  • The goal of linear regression is to find the best-fitting line that m...

View all Junior Data Analyst 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...

View all Associate Data Scientist interview questions
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...

View all Associate Data Scientist interview questions
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

View all Associate Data Scientist interview questions
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 ...

View all Associate Data Scientist interview questions
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...

View all Associate Data Scientist interview questions
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

View all Associate Data Scientist interview questions
Are these interview questions helpful?
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...

View all Associate Data Scientist interview questions
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...

View all Associate Data Scientist interview questions
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...

View all Associate Data Scientist interview questions

GeakMinds Interview Experiences

10 interviews found

Software Engineer Interview Questions & Answers

user image Harshal Sunil Dhake

posted on 10 Jul 2025

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

  • Q1. Write code for 1...3 qts
  • Ans. 

    Generate a sequence of numbers from 1 to 3 using a simple loop.

    • Use a for loop to iterate from 1 to 3.

    • Print each number during the iteration.

    • Example: for (int i = 1; i <= 3; i++) { System.out.println(i); }

  • Answered by AI
  • Q2. Output of code
  • Ans. 

    The code's output depends on its logic and structure, which can vary widely based on the programming language used.

    • Understand the syntax and semantics of the programming language.

    • Identify variables and their initial values.

    • Trace the flow of execution step by step.

    • Look for loops and conditional statements that affect output.

    • Example: In Python, 'print(2 + 2)' outputs '4'.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst experience My interview was very good was hoping positive feedback after taking follow up for 2 days I was told that ur profile is not matching our requirements Not sure why did they shedule my interview than
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

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

I applied via Naukri.com and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning, verbal aptitude

Round 2 - Technical 

(2 Questions)

  • Q1. Stemming vs lemmatisation
  • Ans. 

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

    • Stemming is faster but less accurate than lemmatisation

    • Stemming may result in non-words, while lemmatisation always results in valid words

    • Example: Stemming - running, runs, ran all reduced to run. Lemmatisation - running, runs, ran all reduced to run

  • Answered by AI
  • Q2. Explain linear regression
  • Ans. 

    Linear regression is a statistical method used to model the relationship between a dependent variable and one or more independent variables.

    • Linear regression is used to predict the value of a dependent variable based on the value of one or more independent variables.

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

    • The goal of linear regression is to find the best-fitting line that minimi...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Family background
  • Q2. Compensation discussion

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

  • Q1. General PMO questions
  • Q2. Pmo roadmap and implementation

Interview Preparation Tips

Interview preparation tips for other job seekers - Experienced professionals should ignore this organization.you will be ghosted even though if you were promised with offer letter. CEO as well as HR should be professional in recruitment and should give proper response.

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 27 Jun 2025

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

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

  • Q1. Apptitude sql dbms
  • Q2. Machine learning model like EDA visualization

Interview Preparation Tips

Interview preparation tips for other job seekers - learn sql ,machine learning and python

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 26 Jun 2025

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

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

  • Q1. Sql related , advance sql concepts
  • Q2. Python related qestions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. List, Array, Polymorphism

Director Interview Questions & Answers

user image Anonymous

posted on 17 Apr 2024

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

I applied via Referral and was interviewed before Apr 2023. There were 5 interview rounds.

Round 1 - Coding Test 

Coding Knowledge been checked

Round 2 - Technical 

(1 Question)

  • Q1. Technical skills been tested
Round 3 - Case Study 

Case of certain domain projects

Round 4 - HR 

(2 Questions)

  • Q1. About my expectations
  • Q2. About Companies expectations from me
Round 5 - One-on-one 

(1 Question)

  • Q1. With CEO of Geakminds about company.

Interview Preparation Tips

Topics to prepare for GeakMinds Director interview:
  • Data Science
  • Artificial Intelligence
Interview preparation tips for other job seekers - Come with a good preparation keeping in mind that you are entering into your future.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Deals with mathematics and coding related queries

Round 2 - Coding Test 

Test our coding knowledge

Round 3 - One-on-one 

(1 Question)

  • Q1. About your previous work and studies
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2022. 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 

Basis logic & reasoning

Round 3 - Coding Test 

Dataset given and analysis done .

Interview Preparation Tips

Interview preparation tips for other job seekers - Just strong with the fundamental of statistics and python

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.

GeakMinds Interview FAQs

How many rounds are there in GeakMinds interview?
GeakMinds interview process usually has 3 rounds. The most common rounds in the GeakMinds interview process are Technical, Aptitude Test and Coding Test.
How to prepare for GeakMinds 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 GeakMinds. The most common topics and skills that interviewers at GeakMinds expect are Python, SQL, Machine Learning, Javascript and Automation Testing.
What are the top questions asked in GeakMinds interview?

Some of the top questions asked at the GeakMinds 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
How long is the GeakMinds interview process?

The duration of GeakMinds interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 12 interview experiences

Difficulty level

Easy 20%
Moderate 80%

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
Marpu Foundation Interview Questions
4.8
 • 112 Interviews
Data Entry Interview Questions
4.2
 • 109 Interviews
Webdew Interview Questions
4.5
 • 108 Interviews
HyScaler Interview Questions
4.5
 • 104 Interviews
View all

GeakMinds Reviews and Ratings

based on 51 reviews

4.7/5

Rating in categories

4.5

Skill development

4.6

Work-life balance

3.8

Salary

4.5

Job security

4.7

Company culture

3.9

Promotions

4.4

Work satisfaction

Explore 51 Reviews and Ratings
Software Engineering & Architecture Manager

Chennai

8-12 Yrs

Not Disclosed

Data & Cloud Platform Operations Manager

Chennai

8-12 Yrs

Not Disclosed

Power Platform Developer

Chennai

2-4 Yrs

Not Disclosed

Explore more jobs
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

₹5.3 L/yr - ₹12.6 L/yr

Explore more salaries
Compare GeakMinds with

Marpu Foundation

4.8
Compare

Huawei Technologies

4.0
Compare

HCL Infosystems

3.9
Compare

Z X Learning

4.4
Compare
write
Share an Interview