Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Biz 2 Credit Info Services Team. If you also belong to the team, you can get access from here

Biz 2 Credit Info Services Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Biz 2 Credit Info Services Interview Questions and Answers

Updated 17 May 2025
Popular Designations

18 Interview questions

A Financial Analyst 1 was asked 1mo ago
Q. What is cash flow activity?
Ans. 

Cash flow activity refers to the movement of money in and out of a business, impacting its liquidity and financial health.

  • Cash inflows include revenue from sales, investments, and loans.

  • Cash outflows consist of expenses like salaries, rent, and utilities.

  • Positive cash flow indicates a healthy business, while negative cash flow can signal financial trouble.

  • Example: A retail store receives cash from customers (inflo...

View all Financial Analyst 1 interview questions
A Sr. SEO Executive was asked 2mo ago
Q. How do you optimize a website?
Ans. 

Optimizing a website involves improving its visibility and performance on search engines through various strategies.

  • Keyword Research: Identify relevant keywords using tools like Google Keyword Planner to target specific search queries.

  • On-Page SEO: Optimize title tags, meta descriptions, and header tags with targeted keywords. For example, use 'Best Running Shoes' in the title for a shoe store.

  • Content Quality: Crea...

A Sr. SEO Executive was asked 2mo ago
Q. How can pages be indexed quickly?
Ans. 

To index pages quickly, utilize strategies like XML sitemaps, internal linking, and social media sharing to enhance visibility.

  • XML Sitemaps: Create and submit an XML sitemap to search engines to help them discover and index your pages faster.

  • Internal Linking: Use internal links to connect related content, making it easier for search engines to crawl and index your site.

  • Social Media Sharing: Promote your content on...

A Sr. SEO Executive was asked 2mo ago
Q. What factors influence keyword ranking?
Ans. 

Keyword ranking is influenced by various factors including content quality, backlinks, and user engagement metrics.

  • Content Quality: High-quality, relevant content that answers user queries tends to rank better. For example, a well-researched blog post on 'SEO strategies' will outperform a generic one.

  • Backlinks: The number and quality of backlinks to a page significantly impact its authority and ranking. For instan...

A Backend Developer was asked 8mo ago
Q. Describe the tree-based question you were asked to solve, similar to the LeetCode minimum problem.
Ans. 

Find the minimum depth of a binary tree, defined as the shortest path from the root to a leaf node.

  • Minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.

  • A leaf node is a node with no children.

  • If the tree is empty, the minimum depth is 0.

  • If the root has only one child, the minimum depth is the depth of that child plus one.

  • Example: For a tree with root 1, left ...

View all Backend Developer interview questions
A Senior Software Developer was asked 9mo ago
Q. Write a function to reverse the strings in an array.
Ans. 

Reverse the strings in an array of strings

  • Iterate through the array of strings

  • For each string, reverse the characters

  • Update the string in the array with the reversed version

View all Senior Software Developer interview questions
A QA Engineer was asked 10mo ago
Q. Write a program to generate the Fibonacci series.
Ans. 

The Fibonacci series is a sequence where each number is the sum of the two preceding ones, starting from 0 and 1.

  • The series starts with 0 and 1: 0, 1, 1, 2, 3, 5, 8, 13, ...

  • The nth Fibonacci number can be calculated using the formula: F(n) = F(n-1) + F(n-2).

  • It can be implemented using recursion or iteration.

  • Example of the first 10 Fibonacci numbers: [0, 1, 1, 2, 3, 5, 8, 13, 21, 34].

View all QA Engineer interview questions
Are these interview questions helpful?
A Business Development Manager was asked 11mo ago
Q. What does stability mean to you?
Ans. 

Stability for me is a sense of security and consistency in both personal and professional aspects of life.

  • Stability means having a steady income and job security.

  • It also involves having a supportive network of friends and family.

  • Emotional stability is important for mental well-being.

  • Financial stability allows for planning for the future.

  • Stability can also refer to a balanced and calm state of mind.

  • Examples: Having...

View all Business Development Manager interview questions
A Softwaretest Engineer was asked
Q. Explain critical section and solutions to the critical section problem.
Ans. 

Critical section is a code segment that should not be executed by multiple threads simultaneously. Solution is to use synchronization techniques.

  • Critical section is a part of code that should be executed by only one thread at a time

  • Multiple threads accessing critical section can lead to race conditions and data inconsistency

  • Synchronization techniques like locks, semaphores, and monitors can be used to ensure mutua...

View all Softwaretest Engineer interview questions
A Softwaretest Engineer was asked
Q. What are the differences between SQL and NoSQL databases?
Ans. 

SQL is a relational database management system while NoSQL is a non-relational database management system.

  • SQL databases are structured and use tables with predefined schema while NoSQL databases are unstructured and use collections or documents.

  • SQL databases use SQL language for querying and managing data while NoSQL databases use various query languages like MongoDB's query language.

  • SQL databases are vertically s...

View all Softwaretest Engineer interview questions

Biz 2 Credit Info Services Interview Experiences

27 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Can you provide information about yourself and your studies?
  • Ans. 

    I am a dedicated professional with a strong academic background and diverse experiences in my field.

    • Graduated with a degree in Business Administration from XYZ University, where I specialized in Marketing.

    • Completed an internship at ABC Corp, where I developed a marketing strategy that increased engagement by 30%.

    • Participated in various leadership programs, enhancing my skills in team management and project execution.

    • Cu...

  • Answered by AI
  • Q2. Can you provide details about your work experience?
  • Ans. 

    Experienced Senior Associate with a strong background in project management and team leadership across various industries.

    • Led a team of 10 in a successful project that increased efficiency by 30%.

    • Managed client relationships, resulting in a 25% increase in repeat business.

    • Implemented a new reporting system that reduced project turnaround time by 15%.

    • Conducted training sessions for junior associates, improving team perf...

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

(2 Questions)

  • Q1. Process related queries
  • Q2. What is your understanding of collections, and what is your previous experience related to this area?
  • Ans. 

    Collections involve managing and recovering debts owed to an organization, ensuring financial stability and customer relations.

    • Understanding of accounts receivable and the importance of timely collections.

    • Experience in negotiating payment plans with clients to recover overdue accounts.

    • Utilized collection software to track outstanding invoices and follow up with clients.

    • Implemented strategies to reduce the days sales ou...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Was asked to solve a question on trees which was leetcode minimum
  • Ans. 

    Find the minimum depth of a binary tree, defined as the shortest path from the root to a leaf node.

    • Minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.

    • A leaf node is a node with no children.

    • If the tree is empty, the minimum depth is 0.

    • If the root has only one child, the minimum depth is the depth of that child plus one.

    • Example: For a tree with root 1, left child...

  • Answered by AI
  • Q2. Some basic questions about solid and design principles
Round 2 - Technical 

(2 Questions)

  • Q1. Was asked to write recursive/looping solution for Fibonacci series. also asked to compare their respective time complexities.
  • Q2. Discussions on your past experience and technologies you have worked with.

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 4 Sep 2024

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Aug 2024.

Round 1 - Aptitude Test 

Aptitude was quite good and easy to solve

Round 2 - Technical 

(4 Questions)

  • Q1. Oops related question
  • Q2. SQL based questions
  • Q3. Project explanation
  • Q4. Coding question- Fibonacci series
  • Ans. 

    The Fibonacci series is a sequence where each number is the sum of the two preceding ones, starting from 0 and 1.

    • The series starts with 0 and 1: 0, 1, 1, 2, 3, 5, 8, 13, ...

    • The nth Fibonacci number can be calculated using the formula: F(n) = F(n-1) + F(n-2).

    • It can be implemented using recursion or iteration.

    • Example of the first 10 Fibonacci numbers: [0, 1, 1, 2, 3, 5, 8, 13, 21, 34].

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Reverse the string in an array
  • Ans. 

    Reverse the strings in an array of strings

    • Iterate through the array of strings

    • For each string, reverse the characters

    • Update the string in the array with the reversed version

  • Answered by AI
  • Q2. Basics of angular and nodejs
Round 2 - Coding Test 

More focused on basics of javascript

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on basics, they don't really care about much advance stuff.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Asked about basic Js and Angular questions like Binary Search,sorting and reversing of a string
  • Q2. Subject,pipes,closures etc
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

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

    I am a dedicated and experienced professional with a strong background in project management and team leadership.

    • Over 10 years of experience in project management

    • Proven track record of successfully leading cross-functional teams

    • Strong communication and interpersonal skills

    • Certified in project management (e.g. PMP)

    • Passionate about driving results and exceeding goals

  • Answered by AI
  • Q2. Where you see in next 5 year
  • Ans. 

    In the next 5 years, I see myself advancing to a managerial role within the company, leading a team and contributing to the growth and success of the organization.

    • Continuing to excel in my current role and taking on additional responsibilities

    • Participating in leadership development programs to enhance my skills

    • Building strong relationships with colleagues and stakeholders to foster collaboration and teamwork

    • Seeking opp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Its a good company for work, metro connectivity

Lead DBA Interview Questions & Answers

user image Anonymous

posted on 17 Jan 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. It was a normal screen round.
Round 2 - Technical 

(3 Questions)

  • Q1. Database performance improvement
  • Q2. Query optimization
  • Q3. Aws services experience and stuff
Round 3 - Technical 

(1 Question)

  • Q1. Devops and linux

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is stability for you ?
  • Ans. 

    Stability for me is a sense of security and consistency in both personal and professional aspects of life.

    • Stability means having a steady income and job security.

    • It also involves having a supportive network of friends and family.

    • Emotional stability is important for mental well-being.

    • Financial stability allows for planning for the future.

    • Stability can also refer to a balanced and calm state of mind.

    • Examples: Having a st...

  • Answered by AI
  • Q2. What you want to achieve?
  • Ans. 

    I want to achieve sustainable growth for the company through strategic partnerships and innovative solutions.

    • Develop and execute business development strategies to drive revenue growth

    • Identify and pursue new business opportunities in target markets

    • Build and maintain strong relationships with key stakeholders

    • Lead cross-functional teams to deliver on business objectives

    • Implement innovative solutions to address market cha...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company to earn decent incentive
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(5 Questions)

  • Q1. What is your long term goal.
  • Ans. 

    My long term goal is to become a successful business leader by continuously learning, growing, and making a positive impact in the industry.

    • Continuously seek opportunities for professional development and growth

    • Work towards taking on more leadership roles within the company

    • Strive to make a positive impact in the industry through innovative strategies and solutions

  • Answered by AI
  • Q2. Why do you want to join b2c
  • Ans. 

    I want to join b2c because of the exciting opportunity to work in a dynamic industry and contribute to the growth of a successful company.

    • Exciting opportunity to work in a dynamic industry

    • Contribute to the growth of a successful company

    • Interested in the challenges and opportunities in the b2c sector

  • Answered by AI
  • Q3. Your long term goal
  • Ans. 

    To become a successful business development leader in the industry, driving growth and creating impactful partnerships.

    • Continuously expanding network and building strong relationships with key stakeholders

    • Developing innovative strategies to drive revenue growth and market expansion

    • Leading cross-functional teams to execute business development initiatives effectively

  • Answered by AI
  • Q4. What are you achievement in last 5 years
  • Ans. 

    I have successfully increased sales revenue by 30% through strategic partnerships and new client acquisitions.

    • Developed and implemented a comprehensive business development strategy

    • Identified and pursued new business opportunities

    • Negotiated and closed key deals with major clients

    • Collaborated with cross-functional teams to drive sales growth

  • Answered by AI
  • Q5. Where do you see yourself in next 5 years
  • Ans. 

    In the next 5 years, I see myself advancing to a leadership role within the company, utilizing my skills to drive business growth and development.

    • Continuing to excel in my current role and taking on additional responsibilities

    • Completing relevant professional development courses or certifications

    • Building strong relationships with key stakeholders and clients

    • Leading successful business development initiatives

    • Contributing...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy process and soft rounds interview.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. What is cash flow activity?
  • Ans. 

    Cash flow activity refers to the movement of money in and out of a business, impacting its liquidity and financial health.

    • Cash inflows include revenue from sales, investments, and loans.

    • Cash outflows consist of expenses like salaries, rent, and utilities.

    • Positive cash flow indicates a healthy business, while negative cash flow can signal financial trouble.

    • Example: A retail store receives cash from customers (inflow) bu...

  • Answered by AI
  • Q2. Basic journal entry (accrued interest , prepaid expenses, goodwill depreciation outstanding expenses deferred expenses .
  • Q3. Accounting ratio formulas and reason.
  • Ans. 

    Accounting ratios help assess a company's financial health and performance through various metrics.

    • Liquidity Ratios: Measure a company's ability to meet short-term obligations. Example: Current Ratio = Current Assets / Current Liabilities.

    • Profitability Ratios: Assess a company's ability to generate profit. Example: Net Profit Margin = Net Income / Revenue.

    • Leverage Ratios: Evaluate a company's debt levels. Example: Debt...

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Biz 2 Credit Info Services?
Ask anonymously on communities.

Biz 2 Credit Info Services Interview FAQs

How many rounds are there in Biz 2 Credit Info Services interview?
Biz 2 Credit Info Services interview process usually has 1-2 rounds. The most common rounds in the Biz 2 Credit Info Services interview process are One-on-one Round, Technical and HR.
How to prepare for Biz 2 Credit Info Services 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 Biz 2 Credit Info Services. The most common topics and skills that interviewers at Biz 2 Credit Info Services expect are Javascript, MongoDB, Angularjs, Angular and Mean Stack.
What are the top questions asked in Biz 2 Credit Info Services interview?

Some of the top questions asked at the Biz 2 Credit Info Services interview -

  1. program to remove duplicate from array, program of finding 2 highest mum...read more
  2. explain critical section and solution to critical sect...read more
  3. Was asked to solve a question on trees which was leetcode mini...read more
How long is the Biz 2 Credit Info Services interview process?

The duration of Biz 2 Credit Info Services 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

4/5

based on 25 interview experiences

Difficulty level

Easy 38%
Moderate 62%

Duration

Less than 2 weeks 92%
2-4 weeks 8%
View more

Interview Questions from Similar Companies

Samunnati Interview Questions
4.4
 • 36 Interviews
ICICI Direct Interview Questions
3.8
 • 27 Interviews
NASDAQ Interview Questions
3.6
 • 21 Interviews
CME Group Interview Questions
4.2
 • 17 Interviews
IndiaLends Interview Questions
3.7
 • 15 Interviews
Kalkine Interview Questions
4.1
 • 14 Interviews
IQ BackOffice Interview Questions
3.5
 • 14 Interviews
View all

Biz 2 Credit Info Services Reviews and Ratings

based on 320 reviews

3.9/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

4.0

Salary

3.9

Job security

3.8

Company culture

3.7

Promotions

3.8

Work satisfaction

Explore 320 Reviews and Ratings
Software Engineer
110 salaries
unlock blur

₹8.4 L/yr - ₹15 L/yr

Senior Software Engineer
94 salaries
unlock blur

₹15.1 L/yr - ₹25 L/yr

Commercial Underwriter
40 salaries
unlock blur

₹3.6 L/yr - ₹8.7 L/yr

Underwriter
38 salaries
unlock blur

₹2.5 L/yr - ₹7.7 L/yr

Financial Analyst
34 salaries
unlock blur

₹2.7 L/yr - ₹7.5 L/yr

Explore more salaries
Compare Biz 2 Credit Info Services with

Samunnati

4.4
Compare

Fexprime Finance

4.5
Compare

Teamspace Financial Services

3.8
Compare

Kalkine

4.1
Compare
write
Share an Interview