Upload Button Icon Add office photos

Filter interviews by

Solifi Software Developer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Questions were based on basic aptitude like seating arrangement

Round 2 - Technical 

(2 Questions)

  • Q1. Basic oops concepts
  • Q2. SQL questions like triggers and creating an SQL table etc
Round 3 - Technical 

(1 Question)

  • Q1. Coding like arrays basic codes like reversing an array

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on basics
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 Questions - One Easy and One Medium

Round 2 - Technical 

(1 Question)

  • Q1. Some Basics of DBMS and one DSA related question
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic DSA Question
Round 2 - Technical 

(1 Question)

  • Q1. Mobile Development Related Questions
Round 3 - HR 

(1 Question)

  • Q1. Basic HR Questions
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
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 experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2023. 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 - Aptitude Test 

Basic quant questions and logical reasoning, c++ and java

Round 3 - Technical 

(2 Questions)

  • Q1. Find the palindrome in the string?
  • Ans. 

    To find palindromes in a string, compare characters from both ends towards the middle.

    • Iterate through each string in the array

    • Check if the string is equal to its reverse to determine if it's a palindrome

    • Examples: 'level', 'radar', 'madam'

  • Answered by AI
  • Q2. Difference between linked list and array?
  • Ans. 

    Arrays store elements in contiguous memory locations, while linked lists store elements in nodes with pointers to the next node.

    • Arrays have fixed size, while linked lists can dynamically grow or shrink.

    • Accessing elements in arrays is faster (O(1)), while in linked lists it is slower (O(n)).

    • Inserting or deleting elements in arrays can be inefficient, while in linked lists it is efficient.

    • Example: Array - [1, 2, 3, 4], L

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Are you comfortable with relocating?
  • Q2. Tell us about your family members?

Interview Preparation Tips

Topics to prepare for Nomura Research Institute Financial Technologies India Software Developer interview:
  • Oops
  • Dbms
  • C++
  • Java
Interview preparation tips for other job seekers - Confidence

Skills evaluated in this interview

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
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 applied via Company Website and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. What are different exceptions?
  • Ans. 

    Exceptions are errors that occur during program execution and can be handled using try-catch blocks.

    • Checked exceptions: must be handled or declared in the method signature

    • Unchecked exceptions: occur at runtime and do not need to be declared

    • Error: serious problems that cannot be handled, such as OutOfMemoryError

    • Examples: NullPointerException, ArrayIndexOutOfBoundsException

  • Answered by AI
  • Q2. How to handle exceptions?
  • Ans. 

    Exceptions should be handled gracefully to prevent application crashes.

    • Use try-catch blocks to catch exceptions.

    • Handle exceptions at the appropriate level of abstraction.

    • Log exceptions to aid in debugging.

    • Provide meaningful error messages to the user.

    • Avoid catching generic exceptions.

    • Use finally blocks to release resources.

    • Consider using custom exceptions for specific error conditions.

  • Answered by AI
  • Q3. How to create custom List which is read-only?
  • Ans. 

    To create a custom read-only list, use the ReadOnlyCollection class in C#.

    • Create a List object with the desired elements.

    • Use the AsReadOnly() method to create a read-only wrapper around the list.

    • Use the ReadOnlyCollection class to create a truly read-only list.

    • Example: List myList = new List{"apple", "banana", "orange"};

    • Example: var readOnlyList = myList.AsReadOnly();

    • Example: var trulyReadOnlyList = new ReadOnlyCollect

  • Answered by AI
  • Q4. What are different collections?
  • Ans. 

    Collections are data structures that store and manipulate groups of related objects.

    • Collections are used to store and manipulate groups of related objects

    • They can be classified into three main categories: Lists, Sets, and Maps

    • Lists maintain the order of elements and allow duplicates (e.g. ArrayList, LinkedList)

    • Sets do not allow duplicates and do not maintain order (e.g. HashSet, TreeSet)

    • Maps store key-value pairs and d...

  • Answered by AI
  • Q5. Write code for binary search
  • Ans. 

    Binary search is a search algorithm that finds the position of a target value within a sorted array.

    • The array must be sorted before applying binary search

    • Compare the target value with the middle element of the array

    • If the target value is smaller, search the left half of the array

    • If the target value is larger, search the right half of the array

    • Repeat until the target value is found or the search space is exhausted

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Core java , Collections , Exception Handing , searching and sorting code,scenario based questions.
Be strong in your basics

Skills evaluated in this interview

Tell us how to improve this page.

Software Engineer
19 salaries
unlock blur

₹10 L/yr - ₹22.3 L/yr

Product Owner
12 salaries
unlock blur

₹16 L/yr - ₹25.5 L/yr

Senior Test Analyst
9 salaries
unlock blur

₹9.4 L/yr - ₹14 L/yr

Associate Software Engineer
7 salaries
unlock blur

₹7 L/yr - ₹9 L/yr

Java Developer
7 salaries
unlock blur

₹9 L/yr - ₹13.2 L/yr

Explore more salaries
Compare Solifi with

Paytm

3.3
Compare

PhonePe

4.0
Compare

Mobikwik

4.0
Compare

Payed

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