Upload Button Icon Add office photos

C2fo

Compare button icon Compare button icon Compare

Filter interviews by

C2fo Interview Questions and Answers

Updated 6 Jan 2025
Popular Designations

11 Interview questions

A Decision Scientist was asked 9mo ago
Q. What is the central limit theorem?
Ans. 

Central Limit Theorem states that the sampling distribution of the sample mean approaches a normal distribution as the sample size increases.

  • Central Limit Theorem is a fundamental concept in statistics.

  • It states that the sampling distribution of the sample mean will be approximately normally distributed regardless of the shape of the population distribution.

  • As the sample size increases, the sampling distribution o...

View all Decision Scientist interview questions
A Decision Scientist was asked 9mo ago
Q. What are precision, recall, and AUC?
Ans. 

Precision-Recall AUC is a metric used to evaluate the performance of classification models, particularly in imbalanced datasets.

  • Precision-Recall AUC focuses on the trade-off between precision and recall for different threshold values.

  • It is particularly useful when dealing with imbalanced datasets where the positive class is rare.

  • A higher Precision-Recall AUC indicates better model performance in terms of precision...

View all Decision Scientist interview questions
A Decision Scientist was asked 9mo ago
Q. Explain a past project involving predictive modeling.
Ans. 

Developed predictive model to forecast customer churn using machine learning algorithms

  • Collected and cleaned customer data from various sources

  • Performed feature engineering to create relevant predictors

  • Built and trained machine learning models such as logistic regression and random forest

  • Evaluated model performance using metrics like accuracy, precision, and recall

  • Implemented the model in a production environment ...

View all Decision Scientist interview questions
A Decision Scientist was asked 9mo ago
Q. What is the Chi-Square test, and when is it used?
Ans. 

Chi square test is a statistical test used to determine if there is a significant association between two categorical variables.

  • Chi square test is used to compare observed frequencies with expected frequencies in a contingency table.

  • It is commonly used in research to analyze data and determine if there is a relationship between two variables.

  • For example, it can be used to test if there is a significant difference ...

View all Decision Scientist interview questions
A Decision Scientist was asked 9mo ago
Q. Write a SQL query to find the month-wise cumulative sum of a given metric.
Ans. 

Use SQL window function to calculate monthwise cumulative sum.

  • Use the SUM() function with OVER() clause to calculate cumulative sum.

  • Partition the data by month to get monthwise cumulative sum.

  • Order the data by date to ensure correct cumulative sum calculation.

View all Decision Scientist interview questions
A Decision Scientist was asked 9mo ago
Q. What is K-means clustering?
Ans. 

K-means clustering is a popular unsupervised machine learning algorithm used for clustering data points into groups based on similarity.

  • Divides data points into K clusters based on similarity

  • Minimizes the sum of squared distances within each cluster

  • Requires specifying the number of clusters (K) beforehand

  • Iteratively assigns data points to the nearest cluster centroid

  • Commonly used in customer segmentation, image co...

View all Decision Scientist interview questions
A Decision Scientist was asked 9mo ago
Q. What is binomial distribution?
Ans. 

Binomial distribution is a probability distribution that describes the number of successes in a fixed number of independent trials.

  • Describes the number of successes in a fixed number of independent trials

  • Each trial has only two possible outcomes (success or failure)

  • The trials are independent and the probability of success is constant

  • Examples: Coin toss (success = heads), Pass/fail exams, Yes/no surveys

View all Decision Scientist interview questions
Are these interview questions helpful?
A Decision Scientist was asked 9mo ago
Q. How do you stay up to date with new analytical tools and techniques?
Ans. 

I stay up to date with new analytical tools and techniques by attending workshops, online courses, reading research papers, and participating in industry conferences.

  • Attend workshops and training sessions on new tools and techniques

  • Take online courses and certifications to learn about the latest advancements

  • Read research papers and articles to stay informed about cutting-edge methods

  • Participate in industry confere...

View all Decision Scientist interview questions
A Software Engineer was asked
Q. What languages are you familiar with?
Ans. 

I am familiar with languages such as Java, Python, C++, and JavaScript.

  • Java

  • Python

  • C++

  • JavaScript

View all Software Engineer interview questions
A Decision Scientist was asked 9mo ago
Q. When is a z test used and when is t test used.
Ans. 

Z test is used when sample size is large and population standard deviation is known. T test is used when sample size is small or population standard deviation is unknown.

  • Z test is used for hypothesis testing when sample size is large (n > 30) and population standard deviation is known.

  • T test is used when sample size is small (n < 30) or population standard deviation is unknown.

  • Z test is used for comparing means of...

View all Decision Scientist interview questions

C2fo Interview Experiences

10 interviews found

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

I applied via LinkedIn and was interviewed before Sep 2023. There were 4 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. What is binomial distribution?
  • Ans. 

    Binomial distribution is a probability distribution that describes the number of successes in a fixed number of independent trials.

    • Describes the number of successes in a fixed number of independent trials

    • Each trial has only two possible outcomes (success or failure)

    • The trials are independent and the probability of success is constant

    • Examples: Coin toss (success = heads), Pass/fail exams, Yes/no surveys

  • Answered by AI
  • Q2. What is K-means clustering?
  • Ans. 

    K-means clustering is a popular unsupervised machine learning algorithm used for clustering data points into groups based on similarity.

    • Divides data points into K clusters based on similarity

    • Minimizes the sum of squared distances within each cluster

    • Requires specifying the number of clusters (K) beforehand

    • Iteratively assigns data points to the nearest cluster centroid

    • Commonly used in customer segmentation, image compres...

  • Answered by AI
  • Q3. What is central limit theorem?
  • Ans. 

    Central Limit Theorem states that the sampling distribution of the sample mean approaches a normal distribution as the sample size increases.

    • Central Limit Theorem is a fundamental concept in statistics.

    • It states that the sampling distribution of the sample mean will be approximately normally distributed regardless of the shape of the population distribution.

    • As the sample size increases, the sampling distribution of the...

  • Answered by AI
  • Q4. A question on probability related to finding a blue stone out of a bag of x blue and x red stones something like that
  • Q5. 2 more aptitude questions.
Round 2 - Technical 

(4 Questions)

  • Q1. Past project explanation on predictive modeling
  • Ans. 

    Developed predictive model to forecast customer churn using machine learning algorithms

    • Collected and cleaned customer data from various sources

    • Performed feature engineering to create relevant predictors

    • Built and trained machine learning models such as logistic regression and random forest

    • Evaluated model performance using metrics like accuracy, precision, and recall

    • Implemented the model in a production environment for r...

  • Answered by AI
  • Q2. What is precision recall auc
  • Ans. 

    Precision-Recall AUC is a metric used to evaluate the performance of classification models, particularly in imbalanced datasets.

    • Precision-Recall AUC focuses on the trade-off between precision and recall for different threshold values.

    • It is particularly useful when dealing with imbalanced datasets where the positive class is rare.

    • A higher Precision-Recall AUC indicates better model performance in terms of precision and ...

  • Answered by AI
  • Q3. Coding on sql to find monthwise cumulative sum of something.
  • Ans. 

    Use SQL window function to calculate monthwise cumulative sum.

    • Use the SUM() function with OVER() clause to calculate cumulative sum.

    • Partition the data by month to get monthwise cumulative sum.

    • Order the data by date to ensure correct cumulative sum calculation.

  • Answered by AI
  • Q4. Fizzbuzz python coding question. Print fizz if 3, buzz if 5, fizzbuzz if the number is divisible by both 3 and 5.
Round 3 - Technical 

(5 Questions)

  • Q1. What is chi square test and when is it used
  • Ans. 

    Chi square test is a statistical test used to determine if there is a significant association between two categorical variables.

    • Chi square test is used to compare observed frequencies with expected frequencies in a contingency table.

    • It is commonly used in research to analyze data and determine if there is a relationship between two variables.

    • For example, it can be used to test if there is a significant difference in th...

  • Answered by AI
  • Q2. When is a z test used and when is t test used.
  • Ans. 

    Z test is used when sample size is large and population standard deviation is known. T test is used when sample size is small or population standard deviation is unknown.

    • Z test is used for hypothesis testing when sample size is large (n > 30) and population standard deviation is known.

    • T test is used when sample size is small (n < 30) or population standard deviation is unknown.

    • Z test is used for comparing means of two ...

  • Answered by AI
  • Q3. Clustering project explanation and clustering metrics used.
  • Ans. 

    Utilized K-means clustering to group customers based on purchasing behavior. Evaluated clusters using silhouette score and inertia.

    • Used K-means clustering algorithm to group customers into segments

    • Evaluated the quality of clusters using silhouette score and inertia

    • Silhouette score measures how similar an object is to its own cluster compared to other clusters

    • Inertia measures how tightly the clusters are packed together

    • ...

  • Answered by AI
  • Q4. How do you stay up to date with new analytical tools and techniques.
  • Ans. 

    I stay up to date with new analytical tools and techniques by attending workshops, online courses, reading research papers, and participating in industry conferences.

    • Attend workshops and training sessions on new tools and techniques

    • Take online courses and certifications to learn about the latest advancements

    • Read research papers and articles to stay informed about cutting-edge methods

    • Participate in industry conferences ...

  • Answered by AI
  • Q5. How do you manage time
  • Ans. 

    I prioritize tasks, use time management tools, set deadlines, and minimize distractions.

    • Prioritize tasks based on importance and deadlines

    • Use time management tools like calendars and to-do lists

    • Set specific deadlines for each task to stay on track

    • Minimize distractions by setting boundaries and creating a focused work environment

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Cultural fitment round. Why did you leave previous company, salary expectations, etc etc.

Skills evaluated in this interview

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

I applied via Indeed and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Behavioral Questions mainly
  • Q2. Excel and SQL Question
  • Q3. Tell me about one good and one bad thing about yourself
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. About Team handling and Analytics
  • Q2. About Personal professional management and client Relation Management

Interview Questions & Answers

user image Anonymous

posted on 30 Nov 2024

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

I applied via Referral and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Introduction test
  • Q2. How much knowledge about excel and c2fo platform
Round 2 - One-on-one 

(2 Questions)

  • Q1. About c2fo knowledge
  • Q2. About excel knowledge

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 6 Jan 2025

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

Two questions was asked -
1. Merge intervals
2. Find target element in rotated sorted array.

Interview experience
4
Good
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 

Video Interview: 1 LC easy and 1 LC Medium DP related question

Round 2 - Technical 

(1 Question)

  • Q1. LLD of Movie Ticketing Platform
  • Ans. 

    LLD of a Movie Ticketing Platform involves designing the system architecture and components for booking and managing movie tickets.

    • Design a scalable system with modules for user authentication, movie selection, seat reservation, payment processing, and ticket generation.

    • Use a database to store movie details, user information, seat availability, and transaction records.

    • Implement APIs for communication between frontend a...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Normal HR and Behavioural Questions

Skills evaluated in this interview

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 21 Jan 2022

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

I applied via LinkedIn and was interviewed in Apr 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Excel, Power Query, Power BI, SQL
Round 3 - One-on-one 

(1 Question)

  • Q1. Case was given to know your thinking skills
Round 4 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed before Oct 2022. 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 - Technical 

(2 Questions)

  • Q1. What are you passionate about
  • Q2. What languages are you familiar with

I applied via LinkedIn and was interviewed in Sep 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Final Salary Discussion
  • Q2. General Round with VP

I appeared for an interview in Aug 2021.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic core Abap topic
Round 2 - HR 

(1 Question)

  • Q1. Normal hr discussion

Top trending discussions

View All
Salary Discussions, Hike & Promotions
2w
a senior executive
GF salary Vs. My salary
Me and my gf have been dating for 5 years. Back in 2020, I started my career with a package of ₹5 LPA. Over the years, I’ve reached ₹22 LPA in 2025. She started her journey with ₹3 LPA(2020) and is now earning ₹8 LPA(2025). We’ve been in a live-in relationship for around 2 years, and the idea was to share expenses equally. But, equal sharing never really happened. If we go to a café she likes, especially with friends, I will pay the entire bill. We only split the house rent and grocery bills. I told her lots of time to cut down these costly cafe expenses or earn more money, increase your package, study and work hard, but.....she is now in her comfort zone. Being from a tech background, I have seen people upgrade their skills and package for a good life in metro cities. I am ready to support her in her studies, but she is like I am earning enough for myself.... No, you are not. I love her, but I don't know how to overcome this issue between us. Please suggest!
Got a question about C2fo ?
Ask anonymously on communities.

C2fo Interview FAQs

How many rounds are there in C2fo interview?
C2fo interview process usually has 2-3 rounds. The most common rounds in the C2fo interview process are Technical, One-on-one Round and HR.
How to prepare for C2fo 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 C2fo . The most common topics and skills that interviewers at C2fo expect are SQL, Cash Flow, Human Capital Management, Postgresql and Project Management.
What are the top questions asked in C2fo interview?

Some of the top questions asked at the C2fo interview -

  1. How do you stay up to date with new analytical tools and techniqu...read more
  2. When is a z test used and when is t test us...read more
  3. What is chi square test and when is it u...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 6 interview experiences

Difficulty level

Easy 20%
Moderate 80%

Duration

Less than 2 weeks 60%
2-4 weeks 40%
View more

Interview Questions from Similar Companies

MagicBricks Interview Questions
4.2
 • 335 Interviews
Tracxn Interview Questions
3.1
 • 105 Interviews
Turing Interview Questions
3.2
 • 103 Interviews
Practo Interview Questions
3.1
 • 77 Interviews
ffreedom app Interview Questions
3.6
 • 64 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
Uplers Interview Questions
3.9
 • 43 Interviews
View all

C2fo Reviews and Ratings

based on 69 reviews

3.6/5

Rating in categories

3.2

Skill development

3.8

Work-life balance

3.5

Salary

3.3

Job security

3.7

Company culture

2.9

Promotions

3.3

Work satisfaction

Explore 69 Reviews and Ratings
Supplier Relationship Manager
42 salaries
unlock blur

₹4 L/yr - ₹9.5 L/yr

Software Engineer
17 salaries
unlock blur

₹16 L/yr - ₹30 L/yr

Senior Software Engineer
16 salaries
unlock blur

₹24.8 L/yr - ₹47 L/yr

Data Specialist
15 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Engineering Manager
12 salaries
unlock blur

₹44 L/yr - ₹62.1 L/yr

Explore more salaries
Compare C2fo with

MagicBricks

4.2
Compare

ffreedom app

3.5
Compare

Videocon d2h

3.9
Compare

Netmeds.com

3.6
Compare
write
Share an Interview