Upload Button Icon Add office photos

Crif Solutions

Compare button icon Compare button icon Compare

Filter interviews by

Crif Solutions Intern Interview Questions, Process, and Tips

Updated 28 Apr 2023

Crif Solutions Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 28 Apr 2023

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

I applied via Campus Placement and was interviewed in Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Coding Test 

You will be given a dataset and a questionnaire to be solved over it

Round 3 - One-on-one 

(4 Questions)

  • Q1. Explain confidance interval
  • Ans. 

    Confidence interval is a range of values that is likely to contain the true population parameter with a certain level of confidence.

    • Confidence interval is used to estimate the population parameter based on a sample statistic.

    • It is calculated by taking the sample mean and adding or subtracting the margin of error.

    • The level of confidence is typically set at 95% or 99%.

    • For example, a 95% confidence interval for the averag...

  • Answered by AI
  • Q2. Explain logistic regression
  • Ans. 

    Logistic regression is a statistical method used to analyze and model the relationship between a binary dependent variable and one or more independent variables.

    • It is used to predict the probability of a binary outcome (0 or 1).

    • It uses a sigmoid function to map the input values to the output probability.

    • It is commonly used in machine learning for classification problems.

    • Example: predicting whether a customer will buy a...

  • Answered by AI
  • Q3. Use of confusion matrix
  • Ans. 

    Confusion matrix is a table used to evaluate the performance of a classification model.

    • It helps in calculating various metrics like accuracy, precision, recall, F1 score, etc.

    • It compares the predicted values with the actual values to identify true positives, true negatives, false positives, and false negatives.

    • It is commonly used in machine learning and data science to evaluate the performance of classification models.

    • ...

  • Answered by AI
  • Q4. Explain academic projects
  • Ans. 

    Academic projects are assignments given to students to apply their theoretical knowledge in practical scenarios.

    • Academic projects are designed to help students gain hands-on experience in their field of study.

    • They require students to apply their theoretical knowledge to solve real-world problems.

    • Examples of academic projects include building a website, designing a software application, conducting a research study, or c...

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

(2 Questions)

  • Q1. What do you know about crif
  • Q2. What do you want to learn here

Interview Preparation Tips

Topics to prepare for Crif Solutions Intern interview:
  • Advance excel
Interview preparation tips for other job seekers - They focus more on practical than theory. You can use python to solve the questions but using excel will be more appreciated

Skills evaluated in this interview

Interview questions from similar companies

Intern Interview Questions & Answers

Paytm user image Anonymous

posted on 19 Feb 2022

I applied via Job Fair and was interviewed before Feb 2021. 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 - Coding Test 

Can't Disclose

Interview Preparation Tips

Interview preparation tips for other job seekers - Do development and CP also.
Try to solve DSA problems.

I applied via Campus Placement and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - Coding Test 

2 codes were asked.
One was related to fibonacci series
Second was related to linked list

Round 2 - Aptitude Test 

Maths, reasoning and english

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on coding more.
Keep on practicing and practicing
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2022. 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 tips
Round 2 - Technical 

(1 Question)

  • Q1. About the projects
Round 3 - Technical 

(1 Question)

  • Q1. Puzzles and coding
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2022. 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 tips
Round 2 - Coding Test 

MCQ+2 Coding questions

Round 3 - Technical 

(1 Question)

  • Q1. LCA in binary tree
  • Ans. 

    LCA in binary tree refers to finding the lowest common ancestor of two nodes in a binary tree.

    • Start from the root and traverse down the tree to find the paths to the two nodes

    • Compare the paths to find the last common node between them, which is the LCA

    • If one of the nodes is the ancestor of the other, return that node as the LCA

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be positive

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic sql and java questions

Intern Interview Questions & Answers

Visa user image Anonymous

posted on 29 Sep 2024

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

(1 Question)

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Graduated with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Completed internships at tech companies

    • Participated in coding competitions

  • Answered by AI

Intern Interview Questions & Answers

Visa user image Akshit Kanaujia

posted on 29 Jul 2022

I applied via Campus Placement and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Two Coding questions were asked -
1- Graph Connectivity with threshold
2-Find length of longest subsequence of one string which is substring of another string

Round 2 - Technical 

(3 Questions)

  • Q1. N-Queens, Snake and Ladder Problem, Second Most repeated word in a sequence
  • Ans. 

    These are three different programming problems that require different approaches to solve.

    • N-Queens: placing N queens on an NxN chessboard so that no two queens threaten each other

    • Snake and Ladder Problem: finding the minimum number of dice rolls to reach the end of a board with snakes and ladders

    • Second Most Repeated Word in a Sequence: finding the second most frequently occurring word in a given sequence of words

  • Answered by AI
  • Q2. Replace every element with the greatest element on the right side
  • Ans. 

    Replace each element with the greatest element on its right side in the array

    • Loop through the array from right to left

    • Keep track of the maximum element seen so far

    • Replace the current element with the maximum element seen so far

    • Return the modified array

  • Answered by AI
  • Q3. Special Keyboard DP Problem

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and believe in your preparation. You will definitely get good results.

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Technical questions based on projects
  • Q2. Based on sql questions were asked
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Easy selected for next process

Round 2 - Technical 

(1 Question)

  • Q1. Give your introduction , tech, other dsa

Crif Solutions Interview FAQs

How many rounds are there in Crif Solutions Intern interview?
Crif Solutions interview process usually has 4 rounds. The most common rounds in the Crif Solutions interview process are One-on-one Round, Resume Shortlist and Coding Test.
How to prepare for Crif Solutions Intern 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 Crif Solutions. The most common topics and skills that interviewers at Crif Solutions expect are customer support, voice process, Inbound Process, International Voice Process and bpo.
What are the top questions asked in Crif Solutions Intern interview?

Some of the top questions asked at the Crif Solutions Intern interview -

  1. Explain confidance inter...read more
  2. Explain academic proje...read more
  3. Explain logistic regress...read more

Tell us how to improve this page.

Crif Solutions Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Crif Solutions Intern Salary
based on 6 salaries
₹1.8 L/yr - ₹6.2 L/yr
6% more than the average Intern Salary in India
View more details
Software Developer
80 salaries
unlock blur

₹3.5 L/yr - ₹14 L/yr

Business Analyst
53 salaries
unlock blur

₹5.5 L/yr - ₹20.5 L/yr

Softwaretest Engineer
34 salaries
unlock blur

₹3.3 L/yr - ₹11.5 L/yr

Senior Business Analyst
31 salaries
unlock blur

₹8.5 L/yr - ₹27.5 L/yr

Senior Software Developer
28 salaries
unlock blur

₹6.5 L/yr - ₹19.8 L/yr

Explore more salaries
Compare Crif Solutions with

Paytm

3.3
Compare

HighRadius

2.9
Compare

Broadridge Financial Solutions

3.9
Compare

PayPal

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