Upload Button Icon Add office photos
Engaged Employer

i

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

Angel One Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Angel One Data Scientist 2 Interview Questions, Process, and Tips

Updated 9 Mar 2024

Angel One Data Scientist 2 Interview Experiences

1 interview found

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

I applied via Instahyre and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. 1. How to handle model overfitting and model underfitting situations ? 2. In which situations should we standardize the data and where it is not required ? 3. How does Decision Trees work ? 4. How to selec...
  • Ans. 

    Answering common questions related to data science concepts and techniques.

    • To handle model overfitting, one can use techniques like cross-validation, regularization, and early stopping. For model underfitting, consider using more complex models or adding more features.

    • Standardizing data is important for algorithms like K-Nearest Neighbors and Support Vector Machines. It is not required for tree-based models like Decisi...

  • Answered by AI
  • Q2. 1. If you already have a lot of features and you also have categorical column what strategy will you use to encode the categorical column so that the overall feature count should not increase or should not...
  • Ans. 

    Use target encoding or frequency encoding to encode categorical columns without increasing feature count.

    • Use target encoding: Encode categorical column with the mean of the target variable for each category.

    • Use frequency encoding: Encode categorical column with the frequency of each category in the dataset.

    • Both methods preserve the information of the categorical column without increasing feature count.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. 1. What are the assumptions of Linear Regression ? 2. What is the formula for Euclidean distance in K-Means ? 3. How does SVM work ? 4. How does SVM work on non linearly separable data ?
  • Ans. 

    Answers to questions related to Linear Regression, K-Means, and SVM in data science.

    • Assumptions of Linear Regression include linearity, independence, homoscedasticity, and normality of errors.

    • Euclidean distance formula in K-Means is the square root of the sum of squared differences between two points.

    • SVM works by finding the hyperplane that best separates the classes in the feature space.

    • SVM on non-linearly separable d...

  • Answered by AI
  • Q2. What is the difference between Decision Trees and Random Forest. Why do we grow a lot of Decision Trees in a Random Forest ?
  • Ans. 

    Decision Trees are single trees while Random Forest is a collection of trees. Random Forest grows multiple trees to improve accuracy and reduce overfitting.

    • Decision Trees are individual trees that make decisions based on features of the data.

    • Random Forest is an ensemble method that combines multiple Decision Trees to improve accuracy and reduce overfitting.

    • Random Forest grows a lot of Decision Trees to increase diversi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - First Technical Round was relatively easy but Second Technical round was definitively hard. The interviewer emphasized more on the know-how of the techniques to solve the problem, focusing on when and why to apply an algorithm and where not to apply the algorithm. He also emphasized whether the candidates understand the data before applying the algorithms. So prepare extremely well with solid hands on experience before going for Angel One interview.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Referral and was interviewed in Sep 2022. There were 4 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 Resume tips
Round 2 - Coding Test 

First round of test consisted of sql questions , medium and easy level

Round 3 - One-on-one 

(1 Question)

  • Q1. Mostly sql questions like cumulative sum
Round 4 - One-on-one 

(1 Question)

  • Q1. This interview was more focused on the decision making in different scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for sql , leet code questions are the best for the preparation and you can also use ankit bansal's channel on youtube it has some really nice tricky questions asked in different companies.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Sql mainly windows function aggregate function

Round 2 - Case Study 

How would you imprpve netflix recommendation system.

Round 3 - One-on-one 

(1 Question)

  • Q1. Some stat question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. NANANANANANANANA
  • Q2. NANANANANANANANANA
Round 2 - One-on-one 

(2 Questions)

  • Q1. NANANANAANANANA
  • Q2. NANANANANANANANANANA
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Feb 2023. 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 Resume tips
Round 2 - Coding Test 

Hackerrank test medium difficulty

Round 3 - Case Study 

Presenting the case study which was given as a take-home assignment

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for all the basic concepts in Statistics, Database related. Most of the questions will be easy
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

I applied via Company Website and was interviewed before Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Asked about some general things related to trading and stock market.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be confident towards the interview questions and be honest while answering to the interviewer.

I applied via Recruitment Consulltant and was interviewed before Feb 2021. There were 2 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 Resume tips
Round 2 - HR 

(1 Question)

  • Q1. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - With personal experience not referring this job to anyone

I was interviewed before Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

  • Q1. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next points back to a previous node.

    • Use Floyd's Cycle Detection Algorithm to determine if there is a cycle in the linked list.

    • Maintain two pointers, one moving at double the speed of the other, if they meet at any point, there is a cycle.

    • If one of the pointers reaches the end of the list (null), there is no cycle.

  • Answered by AI
  • Q2. 

    Next Greater Element Problem Statement

    Given a list of integers of size N, your task is to determine the Next Greater Element (NGE) for every element. The Next Greater Element for an element X is the firs...

  • Ans. 

    Find the Next Greater Element for each element in a list of integers.

    • Iterate through the list of integers from right to left.

    • Use a stack to keep track of elements for which the Next Greater Element is not yet found.

    • Pop elements from the stack until a greater element is found or the stack is empty.

    • Assign the Next Greater Element as the top element of the stack or -1 if the stack is empty.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. How would you design an ATM machine?
  • Ans. 

    Designing an ATM machine involves considering user interface, security measures, transaction processing, and hardware components.

    • User interface should be intuitive and easy to navigate for users of all ages.

    • Implement security measures such as PIN entry, card authentication, and encryption to protect user data.

    • Transaction processing should be fast and reliable, with options for cash withdrawals, deposits, transfers, and...

  • Answered by AI
Round 3 - HR 

Round duration - 45 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNAGroww interview preparation:Topics to prepare for the interview - DSA, Database Systems, OOP, Operating Systems, Computer NetworksTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice DSA daily
Tip 2 : Try to think of the solution first before jumping to the solution
Tip 3 : Go through interview experience
Tip 4 : Have mock interviews

Application resume tips for other job seekers

Tip 1 : Know in depth what is there in your resume
Tip 2 : Mention your skills and work properly

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How much u gain product knowledge and market knowledge in your previous company it will be tested in technical round and your interpersonal skill also.

Interview Preparation Tips

Interview preparation tips for other job seekers - Present yourself in a simple manner and give prompt reply on the question by the interviewer.
Contribute & help others!
anonymous
You can choose to be anonymous

Angel One Interview FAQs

How many rounds are there in Angel One Data Scientist 2 interview?
Angel One interview process usually has 2 rounds. The most common rounds in the Angel One interview process are Technical.
How to prepare for Angel One Data Scientist 2 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 Angel One. The most common topics and skills that interviewers at Angel One expect are Analytical, Continuous Improvement, Deep Learning, Financial Services and Loans.
What are the top questions asked in Angel One Data Scientist 2 interview?

Some of the top questions asked at the Angel One Data Scientist 2 interview -

  1. 1. If you already have a lot of features and you also have categorical column w...read more
  2. What is the difference between Decision Trees and Random Forest. Why do we grow...read more
  3. 1. How to handle model overfitting and model underfitting situations ? 2. In wh...read more

Recently Viewed

INTERVIEWS

Visa

No Interviews

REVIEWS

Fiserv

No Reviews

REVIEWS

Angel One

No Reviews

INTERVIEWS

Angel One

No Interviews

INTERVIEWS

Visa

No Interviews

SALARIES

Visa

INTERVIEWS

Angel One

40 top interview questions

REVIEWS

Visa

No Reviews

REVIEWS

Angel One

No Reviews

SALARIES

Angel One

Tell us how to improve this page.

Angel One Data Scientist 2 Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 776 Interviews
HighRadius Interview Questions
2.9
 • 182 Interviews
Razorpay Interview Questions
3.6
 • 150 Interviews
Visa Interview Questions
3.5
 • 138 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
HDFC Securities Interview Questions
3.6
 • 104 Interviews
Revolut Interview Questions
2.5
 • 95 Interviews
Sharekhan Interview Questions
3.9
 • 80 Interviews
Groww Interview Questions
3.8
 • 66 Interviews
View all
Angel One Data Scientist 2 Salary
based on 4 salaries
₹34.5 L/yr - ₹40 L/yr
45% more than the average Data Scientist 2 Salary in India
View more details
Senior Executive
341 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Relationship Manager
322 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
268 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Equity Dealer
212 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy Manager
157 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Angel One with

Zerodha

4.1
Compare

Upstox

3.7
Compare

Groww

3.7
Compare

5paisa Capital Ltd.

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