Upload Button Icon Add office photos

Crif Solutions

Compare button icon Compare button icon Compare

Filter interviews by

Crif Solutions Software Developer Interview Questions and Answers

Updated 16 Oct 2023

Crif Solutions Software Developer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Sep 2023. 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 - Aptitude Test 

Java 8, Mysql, sprin, c, c++

Round 3 - Technical 

(1 Question)

  • Q1. Questions based on core java and oops concepts

Interview Preparation Tips

Topics to prepare for Crif Solutions Software Developer interview:
  • Core Java
  • java 8

Interview questions from similar companies

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

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Sort the list, after many queries
  • Q2. LRU cache with multi level caching
  • Ans. 

    LRU cache with multi level caching involves implementing a cache with multiple levels of storage, where the least recently used items are evicted first.

    • Implement a two-level cache system with a primary cache (e.g. in-memory) and a secondary cache (e.g. disk-based).

    • Use a data structure like a doubly linked list and a hash map to efficiently manage the cache and track the least recently used items.

    • When an item is accesse...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Jan 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Basic oops, .net, c# coding, sql questions
Round 2 - Technical 

(1 Question)

  • Q1. More coding and details on project
Round 3 - Technical 

(1 Question)

  • Q1. More on projects and system design and troubleshooting approach
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion
Round 5 - Technical 

(1 Question)

  • Q1. More technical + managerial round even after HR round
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

One medium and one standard DP question

Round 2 - Technical 

(1 Question)

  • Q1. Medium level question based on binary search
Round 3 - Technical 

(2 Questions)

  • Q1. Design google-pay
  • Ans. 

    Design Google Pay - a digital wallet platform for online payments and transactions.

    • Allow users to securely store payment information such as credit/debit cards, bank accounts, and loyalty cards.

    • Enable users to make payments in stores, online, and within apps using their stored payment methods.

    • Implement security features like biometric authentication, tokenization, and encryption to protect user data.

    • Provide features fo...

  • Answered by AI
  • Q2. HLD of recursive
  • Ans. 

    High Level Design (HLD) of recursive functions in software development.

    • Recursive functions call themselves to solve smaller instances of the same problem.

    • HLD of recursive functions involves defining the base case, recursive case, and termination condition.

    • Example: HLD of a recursive function to calculate factorial of a number involves defining base case as factorial(0) = 1.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Puzzles available on GFG
  • Q2. Behavioral question

Interview Preparation Tips

Interview preparation tips for other job seekers - be good in DSA, system design, projects, puzzles

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Maths and communication based questions

Round 2 - Coding Test 

Estimate and SQL and coding was there

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

Time ,speed ,distance

Round 2 - Assignment 

Java application using oops concept

Round 3 - Technical 

(1 Question)

  • Q1. Inheritance , oops
Round 4 - HR 

(1 Question)

  • Q1. Tell me about urself
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Array basics, java basics oops and all

I applied via Campus Placement

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 - Aptitude Test 

There is some aptitude questions along with some subject question(C++,DBMS,OS). And also there is one easy/medium coding question

Round 3 - Technical 

(1 Question)

  • Q1. Interview involves subjects(OS,DBMS,CN,OOPs) , project related questions, and also easy questions from DSA.
Round 4 - HR 

(1 Question)

  • Q1. It was an easy round HR asked me about intoduction,will you be able to relocate,.... Overall it is an easy round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA concepts like array, string, maps, linked list .
Mainly focus on subjects for interview.

I was interviewed before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Hard

It was on hackerearth platform and duration was 60 mins.

  • Q1. 

    Maximum Path Sum in a Matrix

    Given an N*M matrix filled with integer numbers, determine the maximum sum that can be obtained from a path starting from any cell in the first row to any cell in the last row...

  • Ans. 

    We are given a matrix of N * M. To find max path sum first we have to find max value in first row of matrix. Store this value in res. Now for every element in matrix update element with max value which can be included in max path. If the value is greater then res then update res. In last return res which consists of max path sum value.

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Only problem solving was asked simple DSA based questions

  • Q1. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    Declare a character stack S.
    Now traverse the expression string exp. 
    If the current character is a starting bracket (‘(‘ or ‘{‘ or ‘[‘) then push it to stack.
    If the current character is a closing bracket (‘)’ or ‘}’ or ‘]’) then pop from stack and if the popped character is the matching starting bracket then fine else brackets are not balanced.
    After complete traversal, if there is some starting bracket left in stac

  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 60 mins
Round difficulty - Easy

Problem solving and DSA

  • Q1. 

    Find All Pairs Adding Up to Target

    Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target.

    Input:

    The first line ...
  • Ans. 

    This problem can be solved efficiently by using the technique of hashing. Use a hash_map to check for the current array value x(let), if there exists a value target_sum-x which on adding to the former gives target_sum. This can be done in constant time.

  • Answered Anonymously
Round 4 - Video Call 

Round duration - 30 minutes
Round difficulty - Easy

This was hiring manager round and it was mostly behavioural round

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - DSA, HLD, LLD, DBMS, COMPUTER NETWORKS, OSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : DSA/Problem Solving is a must
Tip 2 : Be comfortable with atleast one language with the proper syntax
Tip 3 : Give mock interviews for practice

Application resume tips for other job seekers

Tip 1 : Mention your achievements like Google Kickstart or ratings in different coding platforms
Tip 2 : Mention good projects

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Map question with frequency in a vector

Round 2 - One-on-one 

(1 Question)

  • Q1. Discussion on the test plus a logical puzzle also

Interview Preparation Tips

Interview preparation tips for other job seekers - Take your bet

Crif Solutions Interview FAQs

How many rounds are there in Crif Solutions Software Developer interview?
Crif Solutions interview process usually has 3 rounds. The most common rounds in the Crif Solutions interview process are Resume Shortlist, Aptitude Test and Technical.
How to prepare for Crif Solutions Software Developer 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 Javascript, Troubleshooting, AWS, Architecture and Automation Testing.

Tell us how to improve this page.

Crif Solutions Software Developer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more
Crif Solutions Software Developer Salary
based on 80 salaries
₹3.5 L/yr - ₹14 L/yr
6% more than the average Software Developer Salary in India
View more details

Crif Solutions Software Developer Reviews and Ratings

based on 10 reviews

3.4/5

Rating in categories

3.5

Skill development

2.9

Work-life balance

2.7

Salary

2.7

Job security

3.1

Company culture

2.5

Promotions

3.5

Work satisfaction

Explore 10 Reviews and Ratings
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
29 salaries
unlock blur

₹6.5 L/yr - ₹19.6 L/yr

Explore more salaries
Compare Crif Solutions with

Experian

3.8
Compare

Credit Information Bureau

3.8
Compare

Equifax

3.3
Compare

Nsdl Database Management

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