Upload Button Icon Add office photos
Engaged Employer

i

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

IIFL Finance Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

IIFL Finance Data Scientist Interview Questions and Answers

Updated 6 Nov 2024

IIFL Finance Data Scientist Interview Experiences

1 interview found

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

Create data frame, make histogram

Interview Preparation Tips

Interview preparation tips for other job seekers - Logistic regression

Interview questions from similar companies

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. SQL Window functions
  • Q2. Excel computed fields in pivot tables
  • Ans. 

    Excel pivot tables allow users to create computed fields using formulas.

    • In Excel pivot tables, computed fields are created by adding a new field with a formula.

    • Formulas can be simple arithmetic operations or more complex calculations.

    • Computed fields can be used to perform calculations on existing data in the pivot table.

    • Examples: calculating profit margin by dividing revenue by cost, calculating average sales per month

  • Answered by AI
  • Q3. Difference in precision and recall
  • Ans. 

    Precision is the ratio of correctly predicted positive observations to the total predicted positives, while recall is the ratio of correctly predicted positive observations to the all observations in actual class.

    • Precision focuses on the accuracy of positive predictions, while recall focuses on the proportion of actual positives that were correctly identified.

    • Precision = TP / (TP + FP)

    • Recall = TP / (TP + FN)

    • Example: In...

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

(2 Questions)

  • Q1. About past experience
  • Q2. Past project details

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions were mainly based on past role and work experience
  • Q2. Have you worked on customer segmentation?
  • Ans. 

    Yes, I have worked on customer segmentation.

    • I have used clustering algorithms like K-means and hierarchical clustering to segment customers based on their behavior and demographics.

    • I have also used decision trees and random forests to identify the most important features for segmentation.

    • I have experience with both supervised and unsupervised learning techniques for customer segmentation.

    • I have worked on projects where...

  • Answered by AI
  • Q3. In depth interview on tools worked upon

Interview Preparation Tips

Interview preparation tips for other job seekers - Give genuine answers of you have not worked on any of the tools feel free to tell the same. That won't affect your interview.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Case Study 

Cancellation in the number of bookings in an app has increased exponentially in the past few weeks, How would you conduct an RCA on the same.

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Machine learning algorithms
  • Ans. 

    Machine learning algorithms are used to analyze data and make predictions or decisions without being explicitly programmed.

    • Machine learning algorithms can be categorized into supervised, unsupervised, and reinforcement learning.

    • Examples of machine learning algorithms include linear regression, decision trees, support vector machines, and neural networks.

    • These algorithms learn from data to improve their performance over...

  • Answered by AI
  • Q2. SQL basics and basic knowledge of security products
Round 2 - HR 

(1 Question)

  • Q1. Very lengthy process and delayed a lot

Skills evaluated in this interview

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
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
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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Numerical logical round with market related questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Call put strategies

Interview Preparation Tips

Interview preparation tips for other job seekers - Tough mathematical understanding of market is required
Round 1 - Assignment 

Python based EDA assignment

Round 2 - One-on-one 

(1 Question)

  • Q1. Nilllllllllllllllllllllllll

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your Python and sql skills strong enough
Contribute & help others!
anonymous
You can choose to be anonymous

IIFL Finance Interview FAQs

How many rounds are there in IIFL Finance Data Scientist interview?
IIFL Finance interview process usually has 1 rounds. The most common rounds in the IIFL Finance interview process are Coding Test.
How to prepare for IIFL Finance 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 IIFL Finance. The most common topics and skills that interviewers at IIFL Finance expect are Data Science, Data Analytics, Data Visualization, Machine Learning and Python.

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

REVIEWS

L&T Technology Services

No Reviews

REVIEWS

L&T Technology Services

No Reviews

REVIEWS

L&T Technology Services

No Reviews

REVIEWS

L&T Technology Services

No Reviews

INTERVIEWS

IIFL Finance

No Interviews

REVIEWS

L&T Technology Services

No Reviews

INTERVIEWS

IIFL Finance

No Interviews

REVIEWS

L&T Technology Services

No Reviews

Tell us how to improve this page.

IIFL Finance Data Scientist Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
IIFL Finance Data Scientist Salary
based on 11 salaries
₹8 L/yr - ₹22 L/yr
5% less than the average Data Scientist Salary in India
View more details

IIFL Finance Data Scientist Reviews and Ratings

based on 2 reviews

3.4/5

Rating in categories

2.3

Skill development

3.4

Work-life balance

3.6

Salary

3.3

Job security

2.8

Company culture

4.0

Promotions

1.9

Work satisfaction

Explore 2 Reviews and Ratings
Branch Manager
1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Gold Appraiser
791 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
699 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Care Executive
554 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Relationship Manager
425 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare IIFL Finance with

Upstox

3.7
Compare

HDFC Securities

3.6
Compare

Kotak Securities

3.6
Compare

Axis Direct

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