Upload Button Icon Add office photos

FinBox

Compare button icon Compare button icon Compare

Filter interviews by

FinBox Interview Questions and Answers

Updated 13 Jun 2025
Popular Designations

FinBox Interview Experiences

10 interviews found

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

2 interview questions - 1 on stack and 1 on tree

Round 2 - Technical 

(1 Question)

  • Q1. System design related question (very ambiguous)

Interview Preparation Tips

Interview preparation tips for other job seekers - Average interview experience, system design round was very ambiguous
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About roles and responsibilities
  • Q2. Explain about security best practicies you used in CICD
  • Ans. 

    Implementing security best practices in CICD pipeline is crucial for protecting code and infrastructure.

    • Implementing code scanning tools like SonarQube or Checkmarx to identify security vulnerabilities in code

    • Using secrets management tools like HashiCorp Vault or AWS Secrets Manager to securely store and manage sensitive information

    • Implementing automated security testing tools like OWASP ZAP or Burp Suite to identify a...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. What is ETL in SQL?
  • Ans. 

    ETL stands for Extract, Transform, Load in SQL. It is a process of extracting data from various sources, transforming it into a usable format, and loading it into a target database.

    • Extract: Retrieving data from different sources such as databases, files, APIs, etc.

    • Transform: Cleaning, filtering, and structuring the extracted data to fit the target database schema.

    • Load: Loading the transformed data into the target datab...

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected

I appeared for an interview in May 2024.

Round 1 - Coding Test 

It was supposed to be a coding test but the interviewer decided to go into the details of system design at my current company which took half of the time. Then we got into the coding part of the interview, I could code first question which was the top view of a binary tree. For the second I explained the approach which was left view of a binary tree. Never got a call from HR again

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Html related questions
  • Q2. Css related questions
  • Q3. Coding based on js

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2023. 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 tips
Round 2 - One-on-one 

(4 Questions)

  • Q1. Left , right ,top, bottom view of a BT
  • Ans. 

    Left, right, top, and bottom views of a Binary Tree

    • Left view: Nodes visible when seen from the left side

    • Right view: Nodes visible when seen from the right side

    • Top view: Nodes visible when seen from the top

    • Bottom view: Nodes visible when seen from the bottom

  • Answered by AI
  • Q2. General DSA questions
  • Q3. There are 3 candy jars, 1 has chocolate and 1 has vanilla and another has mixed. but the jars arent labeled. minimize the number of tastes to label them correctly
  • Q4. I was asked to scale up my project

Skills evaluated in this interview

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

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. To analyse bottle neck in funnel
  • Ans. 

    Identifying bottlenecks in a funnel involves analyzing stages to find where potential customers drop off.

    • Map the funnel stages: Awareness, Consideration, Conversion.

    • Use analytics tools to track user behavior at each stage.

    • Identify drop-off rates: For example, if 100 users enter the funnel but only 20 convert, analyze why 80 left.

    • Conduct user surveys to gather feedback on pain points.

    • A/B test different strategies to see...

  • Answered by AI
  • Q2. Tell me about yourself

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 22 May 2024

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

I applied via Job Portal and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Number of employees managing same number of employees as manager
  • Ans. 

    The number of employees managed by a manager is typically around 5-10, but can vary depending on the industry and company size.

    • On average, a manager may oversee 5-10 employees, but this can vary based on the industry and company size.

    • In smaller companies, a manager may only have 1-3 employees reporting to them, while in larger corporations, they could manage a team of 20 or more.

    • The optimal number of employees managed ...

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

(1 Question)

  • Q1. General discussion about goals and interests

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Whats an API , can you make one on spot
  • Ans. 

    An API (Application Programming Interface) is a set of rules and protocols that allows different software applications to communicate with each other.

    • APIs define the methods and data formats that applications can use to request and exchange information.

    • They enable developers to access the functionality of other software components or services without having to understand their internal workings.

    • APIs can be used to retr...

  • Answered by AI

Skills evaluated in this interview

Data Analyst Interview Questions & Answers

user image Lucky Ojha

posted on 21 Mar 2025

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

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. How many rows will be returned in the output when joining the two provided tables?
  • Ans. 

    The number of rows returned from a join depends on the type of join and the matching records in both tables.

    • Inner Join: Returns only the rows with matching values in both tables. Example: If Table A has 5 rows and Table B has 3 matching rows, the result will have 3 rows.

    • Left Join: Returns all rows from the left table and matched rows from the right table. Example: If Table A has 5 rows and Table B has 2 matching rows, ...

  • Answered by AI
  • Q2. Write a SQL query to find 3 consecutive regular customer who purchased goods?
  • Ans. 

    This SQL query identifies three consecutive regular customers who made purchases, highlighting customer loyalty patterns.

    • Identify Regular Customers: Use a query to filter customers who have made multiple purchases over a specific period.

    • Consecutive Purchases: Utilize window functions or self-joins to check for consecutive purchase dates for each customer.

    • Group and Count: Group the results by customer and count the numb...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are not experienced then this company is not that much helpful for salary and personal growth so take experience before joining.

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about FinBox?
Ask anonymously on communities.

FinBox Interview FAQs

How many rounds are there in FinBox interview?
FinBox interview process usually has 1-2 rounds. The most common rounds in the FinBox interview process are One-on-one Round, Technical and Coding Test.
How to prepare for FinBox 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 FinBox. The most common topics and skills that interviewers at FinBox expect are Communication Skills, Product Management, ATS, Analytical Chemistry and Auditing.
What are the top questions asked in FinBox interview?

Some of the top questions asked at the FinBox interview -

  1. Write a SQL query to find 3 consecutive regular customer who purchased goo...read more
  2. How many rows will be returned in the output when joining the two provided tabl...read more
  3. There are 3 candy jars, 1 has chocolate and 1 has vanilla and another has mixed...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 12 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 50%
2-4 weeks 33%
4-6 weeks 17%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.3k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
View all

FinBox Reviews and Ratings

based on 12 reviews

2.7/5

Rating in categories

2.2

Skill development

2.5

Work-life balance

3.5

Salary

2.8

Job security

2.9

Company culture

2.4

Promotions

2.0

Work satisfaction

Explore 12 Reviews and Ratings
Senior Software Engineer
26 salaries
unlock blur

₹35 L/yr - ₹48 L/yr

Data Analyst
15 salaries
unlock blur

₹6.5 L/yr - ₹9 L/yr

Data Scientist
10 salaries
unlock blur

₹12.4 L/yr - ₹22 L/yr

Production Analyst
10 salaries
unlock blur

₹12 L/yr - ₹19 L/yr

Product Specialist
9 salaries
unlock blur

₹18.6 L/yr - ₹23.6 L/yr

Explore more salaries
Compare FinBox with

TCS

3.6
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview