Upload Button Icon Add office photos

Filter interviews by

Glance Finance Data Scientist 2 Interview Questions and Answers

Updated 16 Feb 2022

Glance Finance Data Scientist 2 Interview Experiences

1 interview found

I applied via Referral and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Python coding,statistics and ml
Round 2 - One-on-one 

(1 Question)

  • Q1. Ml advanced, statistics
Round 3 - Case Study 

Projects, ml advanced

Interview Preparation Tips

Interview preparation tips for other job seekers - Clarity around statistics and machine learning algorithms

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Given a variable, how to do Linear Regression?
  • Ans. 

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

    • Collect data on the variables of interest

    • Plot the data to visualize the relationship between the variables

    • Choose a suitable linear regression model (simple or multiple)

    • Fit the model to the data using a regression algorithm (e.g. least squares)

    • Evaluate the model's performance using ...

  • Answered by AI
  • Q2. How Linear Regression handles noise?
  • Ans. 

    Linear Regression minimizes noise by fitting a line that best represents the relationship between variables.

    • Linear Regression minimizes the sum of squared errors between the actual data points and the predicted values on the line.

    • It assumes that the noise in the data is normally distributed with a mean of zero.

    • Outliers in the data can significantly impact the regression line and its accuracy.

    • Regularization techniques l...

  • Answered by AI
  • Q3. Solve two equations to find coefficients?
  • Ans. 

    Use linear algebra to solve for coefficients in two equations.

    • Set up the two equations with unknown coefficients

    • Solve the equations simultaneously using methods like substitution or elimination

    • Example: 2x + 3y = 10 and 4x - y = 5, solve for x and y

  • Answered by AI
  • Q4. Probability question on picking a red ball from Red, blue, black ball bag with replacement.

Interview Preparation Tips

Interview preparation tips for other job seekers - JPMC mainly uses traditional machine learning algorithms for interpretability. Not so much scope for progress if you want to work for cutting-edge technology.

Skills evaluated in this interview

Data Scientist Interview Questions & Answers

Bajaj Finserv user image Vaibhav Diwakar Gavli

posted on 6 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

SQL & aptitude question

Round 2 - Coding Test 

1 coding question for 45 min

Round 3 - Technical 

(1 Question)

  • Q1. Detailed questing for machine learning model's.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Assignment 

Assignment on credit risk

Round 2 - Technical 

(1 Question)

  • Q1. Hyperparameter tuning
Round 3 - Technical 

(1 Question)

  • Q1. Case study for problem solving
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Job Portal and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. What is Gradient Descents?
  • Ans. 

    Gradient descent is an optimization algorithm used to minimize a function by iteratively moving in the direction of steepest descent.

    • Gradient descent is used to find the minimum of a function by taking steps proportional to the negative of the gradient at the current point.

    • It is commonly used in machine learning to optimize the parameters of a model by minimizing the loss function.

    • There are different variants of gradie...

  • Answered by AI
  • Q2. What is LSTM?, and what are the gates in it?
  • Ans. 

    LSTM (Long Short-Term Memory) is a type of recurrent neural network designed to handle long-term dependencies.

    • LSTM has three gates: input gate, forget gate, and output gate.

    • Input gate controls the flow of information into the cell state.

    • Forget gate decides what information to discard from the cell state.

    • Output gate determines the output based on the cell state.

  • Answered by AI
  • Q3. They gave me a link to dataset and started saying the operations to apply on that. E.g, value_counts, null_values, fill the values with mean,etc.
  • Q4. What is t-test? What is Mean, Median and Mode and where to use these?
  • Ans. 

    T-test is a statistical test used to determine if there is a significant difference between the means of two groups.

    • Mean is the average of a set of numbers, median is the middle value when the numbers are ordered, and mode is the most frequently occurring value.

    • Mean is sensitive to outliers, median is robust to outliers, and mode is useful for categorical data.

    • T-test is used to compare means of two groups, mean is used...

  • Answered by AI
  • Q5. What is RANDOM FOREST ?
  • Ans. 

    Random Forest is an ensemble learning method used for classification and regression tasks.

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

    • Each tree in the forest makes a prediction, and the final prediction is the average (regression) or majority vote (classification) of all trees.

    • Random Forest helps reduce overfitting and improve accuracy compared to a single decision tre...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Motilal Oswal Financial Services Data Scientist interview:
  • Machine Learning
  • Statistics
  • Pandas
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Explain any Data Science project
  • Ans. 

    Developed a predictive model to forecast customer churn for a telecommunications company.

    • Identified key features such as customer tenure, monthly charges, and service usage

    • Collected and cleaned data from customer databases

    • Built a machine learning model using logistic regression or random forest algorithms

    • Evaluated model performance using metrics like accuracy, precision, and recall

    • Provided actionable insights to reduce

  • Answered by AI
  • Q2. Types of Error in Statistics
  • Ans. 

    Types of errors in statistics include sampling error, measurement error, and non-sampling error.

    • Sampling error occurs when the sample does not represent the population accurately.

    • Measurement error is caused by inaccuracies in data collection or measurement instruments.

    • Non-sampling error includes errors in data processing, analysis, and interpretation.

    • Examples: Sampling error - selecting a biased sample, Measurement err...

  • Answered by AI
  • Q3. Types of Machine learning models
  • Ans. 

    Types of machine learning models include supervised learning, unsupervised learning, and reinforcement learning.

    • Supervised learning: Models learn from labeled data, making predictions based on past examples (e.g. linear regression, support vector machines)

    • Unsupervised learning: Models find patterns in unlabeled data, clustering similar data points together (e.g. k-means clustering, PCA)

    • Reinforcement learning: Models le...

  • Answered by AI
  • Q4. Functions of pandas library, such as get_dummies()
  • Ans. 

    get_dummies() function in pandas library is used to convert categorical variables into dummy/indicator variables.

    • get_dummies() function creates dummy variables for categorical columns in a DataFrame.

    • It converts categorical variables into numerical representation for machine learning models.

    • Example: df = pd.get_dummies(df, columns=['column_name'])

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - On campus interview, Be confident, be good at project explaination.

Skills evaluated in this interview

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

I was asked Python, sql, coding questions

Round 2 - Case Study 

Case study on how would you identify the total number of footfall on a airport

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is cross validation ?
  • Ans. 

    Cross validation is a technique used to assess the performance of a predictive model by splitting the data into training and testing sets multiple times.

    • Cross validation helps to evaluate how well a model generalizes to new data.

    • It involves splitting the data into k subsets, training the model on k-1 subsets, and testing it on the remaining subset.

    • Common types of cross validation include k-fold cross validation and lea...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Python coding question and ML question

Round 2 - Technical 

(1 Question)

  • Q1. ML questions from resume + general
Round 3 - One-on-one 

(1 Question)

  • Q1. Techno managerial round
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via IIM Jobs and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. SQL basic questions
  • Q2. Python - pandas, numpy based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Great place to work

Glance Finance Interview FAQs

How many rounds are there in Glance Finance Data Scientist 2 interview?
Glance Finance interview process usually has 3 rounds. The most common rounds in the Glance Finance interview process are Technical, One-on-one Round and Case Study.
What are the top questions asked in Glance Finance Data Scientist 2 interview?

Some of the top questions asked at the Glance Finance Data Scientist 2 interview -

  1. Python coding,statistics and...read more
  2. Ml advanced, statist...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Glance Finance interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

IDBI Capital Interview Questions
3.7
 • 11 Interviews
Master Trust Interview Questions
3.0
 • 7 Interviews
TruCap Finance Interview Questions
3.7
 • 5 Interviews
DKSH Interview Questions
4.0
 • 4 Interviews
Apollo Finvest Interview Questions
2.4
 • 3 Interviews
View all
Company Secretary
4 salaries
unlock blur

₹12 L/yr - ₹15 L/yr

Explore more salaries
Compare Glance Finance with

IDBI Capital

3.7
Compare

Indostar Home Finance

4.1
Compare

ART Housing Finance (India)

3.6
Compare

CENTRUM HOUSING FINANCE

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview