Upload Button Icon Add office photos

KreditBee

Compare button icon Compare button icon Compare

Filter interviews by

KreditBee Interview Questions and Answers

Updated 9 Jun 2025
Popular Designations

15 Interview questions

A Data Analyst was asked 3mo ago
Q. Write a Python function to calculate the factorial of a number.
Ans. 

A Python function to calculate the factorial of a given number using recursion or iteration.

  • Factorial of n (n!) is the product of all positive integers up to n.

  • Example: 5! = 5 × 4 × 3 × 2 × 1 = 120.

  • Can be implemented using recursion or a loop.

  • Base case for recursion: 0! = 1 and 1! = 1.

View all Data Analyst interview questions
A Business Analyst was asked 7mo ago
Q. Estimate the number of people at an airport.
Ans. 

The number of people at an airport can vary greatly depending on the time of day, day of the week, and season.

  • Consider the size of the airport - larger airports will have more people than smaller ones

  • Think about the time of day - peak travel times will have more people

  • Factor in the day of the week - weekends and holidays will likely have more travelers

  • Take into account the season - summer and winter holidays tend ...

View all Business Analyst interview questions
A Software Engineer was asked 10mo ago
Q. Write an SQL query to find the top 5 highest salaries.
Ans. 

Retrieve the top 5 highest salaries from a database using SQL queries.

  • Use the SELECT statement to specify the columns you want to retrieve.

  • Utilize the ORDER BY clause to sort the salaries in descending order.

  • Limit the results to the top 5 using the LIMIT clause.

  • Example SQL query: SELECT salary FROM employees ORDER BY salary DESC LIMIT 5;

  • Ensure the table name and column names match your database schema.

View all Software Engineer interview questions
A Software Engineer was asked 10mo ago
Q. Implement a linked list from scratch. Include insert, delete, and search functionalities.
Ans. 

Implementing a linked list with insert, delete, and search functionalities.

  • Create a Node class with data and next pointer

  • Implement insert method to add nodes at the end or specific position

  • Implement delete method to remove nodes based on data or position

  • Implement search method to find a specific node

View all Software Engineer interview questions
An Associate Test Engineer was asked 10mo ago
Q. What is CloudWatch?
Ans. 

CloudWatch is a monitoring and observability service provided by AWS for resources and applications running on the cloud.

  • CloudWatch collects and tracks metrics, logs, and events in real-time.

  • It allows users to set alarms, create dashboards, and analyze performance data.

  • CloudWatch can be used to monitor AWS resources like EC2 instances, RDS databases, and Lambda functions.

  • It provides insights into resource utilizat...

View all Associate Test Engineer interview questions
A Software Developer was asked 11mo ago
Q. Implement a doubly linked list.
Ans. 

Doubly linked list is a data structure where each node contains a reference to the previous and next node.

  • Create a Node class with data, prev, and next pointers

  • Implement methods to add, remove, and traverse nodes in the list

  • Handle edge cases like adding to an empty list or removing the only node

View all Software Developer interview questions
A Senior Executive Operations was asked
Q. What is collection?
Ans. 

Collection refers to the process of gathering or bringing together items or information.

  • Collection involves gathering data, objects, or resources.

  • It can also refer to the act of retrieving overdue payments from customers.

  • In a museum, collection refers to a group of artifacts or artworks on display.

View all Senior Executive Operations interview questions
Are these interview questions helpful?
A Software Engineer Intern Trainee was asked
Q. Implement a linked list and its operations (add/delete nodes).
Ans. 

Implement linked list with add and delete operations in a software engineer interview.

  • Create a Node class with data and next pointer

  • Implement methods to add nodes at the beginning, end, or at a specific position

  • Implement methods to delete nodes by value or position

View all Software Engineer Intern Trainee interview questions
A Collections Executive was asked
Q. How do you pitch to or handle a customer?
Ans. 

To pitch or handle the customer, one must be empathetic, listen actively, and offer solutions that meet their needs.

  • Start by greeting the customer warmly and introducing yourself

  • Listen actively to their concerns and needs

  • Empathize with their situation and offer solutions that meet their needs

  • Be patient and understanding, and avoid being pushy or aggressive

  • End the conversation by thanking them for their time and of...

View all Collections Executive interview questions
A Software Engineer was asked
Q. Given a string, find the length of the shortest substring that, when repeated, forms the entire string. (Hint: KMP Algorithm)
Ans. 

KMP algorithm finds the shortest substring that repeats to form the entire string.

  • KMP algorithm uses a prefix table to find the longest proper prefix that is also a suffix of each substring.

  • The length of the shortest repeating substring is the length of the string minus the length of the longest proper prefix.

  • Example: For string 'abcabcabc', the longest proper prefix is 'abcabc' and the length of the shortest repe...

View all Software Engineer interview questions

KreditBee Interview Experiences

38 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Implement linked list from scratch. Insert, delete, search, etc.
  • Ans. 

    Implementing a linked list with insert, delete, and search functionalities.

    • Create a Node class with data and next pointer

    • Implement insert method to add nodes at the end or specific position

    • Implement delete method to remove nodes based on data or position

    • Implement search method to find a specific node

  • Answered by AI
  • Q2. Threads, process, deadlock etc. Os related questions.
  • Q3. Sql queries : find 5 highest salary.
Round 2 - HR 

(1 Question)

  • Q1. Why you want to join. Since I was having different offer from other company as well.

Skills evaluated in this interview

SDE Interview Questions & Answers

user image Anonymous

posted on 21 Nov 2024

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

Online Assessment- consisted of 6 questions from easy to medium difficulty

Round 2 - Technical 

(5 Questions)

  • Q1. Introduce Yourself
  • Q2. Explain you Projects
  • Q3. Coding Question 1
  • Q4. Coding Question 2
  • Q5. Conceptual Question Based on sql, python, etc
Round 3 - HR 

(2 Questions)

  • Q1. Introduce Yourself
  • Q2. Tell me what do you know about the company
  • Ans. 

    The company is a leading technology company specializing in software development and innovation.

    • Founded in 2004 by a group of computer engineers

    • Known for developing cutting-edge software solutions for various industries

    • Has a strong focus on research and development

    • Has won several awards for its innovative products and services

  • Answered by AI

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 26 Feb 2025

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
2-4 weeks
Result
No response

I appeared for an interview in Jan 2025.

Round 1 - Aptitude Test 

It was a round of multiple-choice questions focused on aptitude and SQL, lasting approximately an hour.

Round 2 - Coding Test 

The second round consisted of multiple-choice questions on Python and a coding question focused on topics related to data analytics, specifically using Pandas and NumPy.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare advanced topics in Python and SQL.

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 13 Mar 2025

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Difference between Rank, Dense Rank and row Number, 2nd highest salary with and without window function.
  • Q2. Told me to write a python function to give Factorial of a number.
  • Ans. 

    A Python function to calculate the factorial of a given number using recursion or iteration.

    • Factorial of n (n!) is the product of all positive integers up to n.

    • Example: 5! = 5 × 4 × 3 × 2 × 1 = 120.

    • Can be implemented using recursion or a loop.

    • Base case for recursion: 0! = 1 and 1! = 1.

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Tell about previous experience
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain about previous experience
  • Q2. Guesstimate of no of ppl at airport
  • Ans. 

    The number of people at an airport can vary greatly depending on the time of day, day of the week, and season.

    • Consider the size of the airport - larger airports will have more people than smaller ones

    • Think about the time of day - peak travel times will have more people

    • Factor in the day of the week - weekends and holidays will likely have more travelers

    • Take into account the season - summer and winter holidays tend to be...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What did you like about the social media of kredit bee
  • Ans. 

    I liked the engaging content and interactive posts on Kredit Bee's social media.

    • Engaging content that resonates with the target audience

    • Interactive posts that encourage user participation

    • Consistent branding and messaging across platforms

  • Answered by AI

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 9 Jun 2025

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

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. Regarding case studies
  • Q2. And related to my course work

MIS Executive Interview Questions & Answers

user image Anonymous

posted on 22 Oct 2024

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

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. About excel vlookup hlookup
  • Q2. Shortcuts Excel
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a dedicated and detail-oriented MIS Executive with a strong background in data analysis and problem-solving.

    • I have a Bachelor's degree in Information Technology

    • I have 5 years of experience in managing databases and generating reports

    • Proficient in SQL, Excel, and data visualization tools like Tableau

    • Strong analytical skills and attention to detail

    • Successfully implemented a new data management system that improved e...

  • Answered by AI
  • Q2. What is your salary expectations
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Create linked list and do all it's operations (add/delete) nodes.
  • Ans. 

    Implement linked list with add and delete operations in a software engineer interview.

    • Create a Node class with data and next pointer

    • Implement methods to add nodes at the beginning, end, or at a specific position

    • Implement methods to delete nodes by value or position

  • Answered by AI
  • Q2. Basic sql and intermediate os questions.
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Where do you see yourdelf in 5 hours
  • Ans. 

    In 5 years, I see myself as a Senior Test Engineer leading a team of testers and implementing innovative testing strategies.

    • Leading a team of testers to ensure efficient testing processes

    • Implementing innovative testing strategies to improve product quality

    • Continuously learning and staying updated with the latest testing technologies and methodologies

  • Answered by AI
  • Q2. Where are you from
  • Ans. 

    I am from a small town in the Midwest called Springfield.

    • I grew up in a close-knit community surrounded by farmland.

    • The town had a population of around 10,000 people.

    • I attended the local high school and later went to college in a nearby city.

  • Answered by AI

Top trending discussions

View All
Indian Startups
2w
a senior executive
One of the best sources for Startup investment: DAHEJ(DOWRY)
You won't believe my senior has a good corporate job with over 10 years of experience. But suddenly resigned just a few days after his wedding. We all thought maybe he got married and wants to spend his time with his wife, and decided to go to his place to give him a proper farewell. All of us got shocked after knowing that he left because his father-in-law gifted him a fat cash amount and a car in the name of "blessings." He’s using the money to fund his startup and the car for "business movement." I mean seriously? People are now using dowry as startup capital and walking around acting like CEOs, playing boss with someone else’s money. Bas, shaadi karo aur apne sapne chalu karo, courtesy sasural. I don't know feeling inspired? Or disgusted?
Got a question about KreditBee?
Ask anonymously on communities.

KreditBee Interview FAQs

How many rounds are there in KreditBee interview?
KreditBee interview process usually has 2-3 rounds. The most common rounds in the KreditBee interview process are Technical, HR and One-on-one Round.
How to prepare for KreditBee 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 KreditBee. The most common topics and skills that interviewers at KreditBee expect are Python, SQL, Data Analytics, AWS and MySQL.
What are the top questions asked in KreditBee interview?

Some of the top questions asked at the KreditBee interview -

  1. 2-shortest substring which when repeated gives the entire string(kmp) algorithm...read more
  2. Mock call? How to handle the custom...read more
  3. How to pitch or handle the custom...read more
What are the most common questions asked in KreditBee HR round?

The most common HR questions asked in KreditBee interview are -

  1. What are your salary expectatio...read more
  2. Why should we hire y...read more
  3. Share details of your previous j...read more
How long is the KreditBee interview process?

The duration of KreditBee interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 47 interview experiences

Difficulty level

Easy 27%
Moderate 63%
Hard 10%

Duration

Less than 2 weeks 79%
2-4 weeks 17%
6-8 weeks 3%
View more

Interview Questions from Similar Companies

Tracxn Interview Questions
3.1
 • 105 Interviews
Turing Interview Questions
3.2
 • 103 Interviews
Toothsi Interview Questions
2.8
 • 62 Interviews
Zolo Interview Questions
3.3
 • 57 Interviews
GoMechanic Interview Questions
3.7
 • 53 Interviews
Netmeds.com Interview Questions
3.6
 • 47 Interviews
Impact Guru Interview Questions
3.6
 • 46 Interviews
Mfine Interview Questions
3.7
 • 24 Interviews
Milkbasket Interview Questions
3.9
 • 21 Interviews
View all

KreditBee Reviews and Ratings

based on 256 reviews

3.4/5

Rating in categories

3.2

Skill development

3.2

Work-life balance

3.4

Salary

3.1

Job security

3.1

Company culture

2.9

Promotions

3.1

Work satisfaction

Explore 256 Reviews and Ratings
Operations Executive
158 salaries
unlock blur

₹1.7 L/yr - ₹4.6 L/yr

Software Engineer
100 salaries
unlock blur

₹5.5 L/yr - ₹17 L/yr

Senior Executive Operations
74 salaries
unlock blur

₹2.2 L/yr - ₹5 L/yr

Data Analyst
72 salaries
unlock blur

₹5.2 L/yr - ₹12 L/yr

Senior Software Engineer
43 salaries
unlock blur

₹14.2 L/yr - ₹23.4 L/yr

Explore more salaries
Compare KreditBee with

KrazyBee

3.7
Compare

Netmeds.com

3.6
Compare

Toothsi

2.8
Compare

Tracxn

3.1
Compare
write
Share an Interview