Upload Button Icon Add office photos

BankBazaar

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

BankBazaar Data Scientist Trainee Interview Questions and Answers

Updated 22 Sep 2021

BankBazaar Data Scientist Trainee Interview Experiences

1 interview found

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

Interview Questionnaire 

1 Question

  • Q1. SQL queries.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't just prepare for coding, you should be ready for logical puzzles. SQL is much more important than you think for data scientist role.

Interview questions from similar companies

Data Analyst Interview Questions & Answers

PayPal user image AKASH KUMAR SINGH

posted on 2 Dec 2016

I applied via Campus Placement and was interviewed in Dec 2016. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. For this round he gave me lot of problems and asked to develop optimal algorithm to solve that. Problems were mainly on trees and number sequences
  • Q2. In this round he mainly discussed my projects and asked me how these can be put to use in Paypal. He also asked some basic questions from ML
  • Q3. HR round was just for formality
  • Q4. Probability , question on calculating expected number of trials and puzzles

Interview Preparation Tips

Round: Test
Experience: The coding question was:
Given a binary string containing 0's and 1's. You can split the string such that each partition should be a exponential of 5 (1,5,25,625...). You were asked to return minimum number of partition for the given string such each partition is exponential of 5. If no such partition exists return -1.
Examples: '101101101' Ans: 3 (101, 101, 101)
'111' Ans: 3 (1,1,1)
10101 Ans: -1
Tips: For MCQ's prepare DSA, OS and Networking. For DSA you can refer to cormen
For Coding question practice on either geeksforgeeks or from any of the coding platforms like hackerrank
The shortlist was mainly dependent on coding question
Duration: 1 hour 30 minutes

Round: Puzzle Interview
Tips: Do lot of puzzles from heard on the street, -----/ , Try to search for more. It will be helpful in other interviews as well

Round: Technical Interview
Tips: Practice algorithm section from geeksforgeeks. There are lot of standard problems. The given questions were slightly modified version of standard problems

Round: Technical Interview
Tips: For this round you need to be well prepared with your projects and resume.

College Name: IIT Madras
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

I was interviewed in Sep 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me brief about your self
  • Ans. 

    I am a data analyst with a strong background in statistics and data visualization.

    • Experienced in analyzing large datasets using SQL, Python, and R

    • Skilled in creating insightful reports and dashboards using Tableau and Power BI

    • Strong communication skills to present findings to stakeholders

    • Certified in data analysis and machine learning techniques

  • Answered by AI
  • Q2. What are youre strenth and weekness
  • Ans. 

    My strength lies in my analytical skills and attention to detail, while my weakness is sometimes getting too caught up in the details.

    • Strength: Strong analytical skills

    • Strength: Attention to detail

    • Weakness: Getting caught up in details (provide example)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do best stay carm
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Mar 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 - Technical 

(1 Question)

  • Q1. Detailed discussion on past experience and projects.
Round 3 - Technical 

(2 Questions)

  • Q1. 2 Hackerrank SQL Questions
  • Q2. 1 Hackerrank Python Question

Interview Preparation Tips

Topics to prepare for Razorpay Data Analyst interview:
  • SQL
  • Python
Interview preparation tips for other job seekers - Deep knowledge of SQL and Python is required along with Data Analysis fundamentals.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is the order of execution in sql
  • Ans. 

    The order of execution in SQL is: FROM, WHERE, GROUP BY, HAVING, SELECT, ORDER BY.

    • 1. FROM: Specifies the tables involved in the query.

    • 2. WHERE: Filters the rows based on specified conditions.

    • 3. GROUP BY: Groups the rows that have the same values into summary rows.

    • 4. HAVING: Filters groups based on specified conditions.

    • 5. SELECT: Selects the columns to be included in the result set.

    • 6. ORDER BY: Sorts the result set base

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. How to do conditional formatting in excel
  • Ans. 

    Conditional formatting in Excel allows users to format cells based on specified conditions.

    • Select the range of cells you want to apply conditional formatting to

    • Go to the 'Home' tab and click on 'Conditional Formatting'

    • Choose the desired formatting option, such as color scales, data bars, or icon sets

    • Set the conditions for when the formatting should be applied, such as greater than, less than, or equal to a certain valu...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be through with basics

Skills evaluated in this interview

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

It was hackerrank test

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 - One-on-one 

(1 Question)

  • Q1. General questions and sql questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare aptitude and SQL questions and Bi tools

I applied via IIM Jobs and was interviewed before Nov 2021. There were 5 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 - Technical 

(2 Questions)

  • Q1. Different types of Joins in SQL and what are the outputs when you join two tables with nulls.
  • Ans. 

    Different types of Joins in SQL and the outputs when joining two tables with nulls.

    • Types of joins in SQL include inner join, left join, right join, and full outer join.

    • When joining two tables with nulls, the output depends on the type of join used.

    • In an inner join, null values are excluded from the result.

    • In a left join, all rows from the left table and matching rows from the right table are included, with nulls for no...

  • Answered by AI
  • Q2. Can you union tables with different datatypes.
  • Ans. 

    Yes, but it requires careful handling of data types and potential conversion.

    • Union can be performed on tables with different datatypes, but the resulting table will have a common datatype for each column.

    • Data types should be compatible, otherwise conversion may be necessary.

    • For example, a table with a column of integers can be unioned with a table with a column of floats, but the resulting column will be of type float.

    • ...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Given a data set, should write sql queries to answer a few questions
  • Q2. A few puzzles would be asked to evaluate the problem solving skills.
Round 4 - One-on-one 

(1 Question)

  • Q1. Business Case studies - try parctising profitablility and other cases
Round 5 - Technical 

(1 Question)

  • Q1. An Excel round will also be there if you apply for business analyst role.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be prepared - SQL, Excel and problem solving.
All the best for the interview.

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Easy questions based on Logical Reasoning, Mathematics, English

Round 2 - Group Discussion 

Be sure to put your thoughts on the topic you get, and try to put a point that meets the goals or aspirations of the company.

Round 3 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself Tell me something from your resume Desribe your project
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Job Portal and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Sql and aptitude questions

Round 2 - Technical 

(2 Questions)

  • Q1. Question from resume amd project
  • Q2. Some questions on sql
Contribute & help others!
anonymous
You can choose to be anonymous

Recently Viewed

LIST OF COMPANIES

Indeed India Operations

Locations

INTERVIEWS

Naukri

No Interviews

INTERVIEWS

Seagate

No Interviews

JOBS

Nowrosjee Wadia And Sons

No Jobs

INTERVIEWS

Nvidia

No Interviews

INTERVIEWS

Image Gravures

No Interviews

SALARIES

Times Business Solutions

INTERVIEWS

BankBazaar

No Interviews

INTERVIEWS

BankBazaar

No Interviews

SALARIES

Nvidia

Tell us how to improve this page.

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 753 Interviews
PolicyBazaar Interview Questions
3.6
 • 356 Interviews
PhonePe Interview Questions
4.0
 • 300 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
HighRadius Interview Questions
2.9
 • 183 Interviews
Fiserv Interview Questions
3.0
 • 172 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Visa Interview Questions
3.5
 • 138 Interviews
Angel One Interview Questions
4.0
 • 135 Interviews
View all
Senior Customer Relationship Officer
424 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Relationship Officer
272 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Relation Officer
268 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
54 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Service Executive
35 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare BankBazaar with

PolicyBazaar

3.6
Compare

Paytm

3.3
Compare

Mobikwik

3.7
Compare

Freecharge

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