Upload Button Icon Add office photos

Filter interviews by

Clear (1)

FICO Software Developer Interview Questions, Process, and Tips

Updated 3 Jun 2024

Top FICO Software Developer Interview Questions and Answers

FICO Software Developer Interview Experiences

3 interviews found

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

I applied via LinkedIn and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Hashmap working
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • Hashmap uses a hashing function to map keys to indices in an array.

    • It allows for constant time complexity O(1) for insertion, deletion, and retrieval operations.

    • In Java, HashMap is a commonly used implementation of the Map interface.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Where are you from

Interview Preparation Tips

Interview preparation tips for other job seekers - Java questions

Skills evaluated in this interview

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

(1 Question)

  • Q1. What is a red black tree
  • Ans. 

    A red-black tree is a self-balancing binary search tree with additional properties to ensure balance and efficient operations.

    • Red-black trees have nodes colored red or black, with rules to maintain balance during insertion and deletion.

    • Each node has an extra bit for color, and the tree must satisfy properties like no two red nodes in a row.

    • Operations like insertion and deletion involve rotations and color changes to ma...

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

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

Round 1 - Coding Test 

1 Hour, Basic Java, Array, DSA Questions

Round 2 - Technical 

(3 Questions)

  • Q1. Valid Indian Mobile no.
  • Q2. Binary Search on Linked List
  • Ans. 

    Binary search on a linked list involves dividing the list into halves and searching for the target value.

    • Linked list must be sorted before binary search can be performed.

    • Binary search on linked list has a time complexity of O(log n).

    • The middle element of the linked list is found using slow and fast pointers.

    • If the target value is less than the middle element, search the left half of the list. If it's greater, search th...

  • Answered by AI
  • Q3. Palindrome string by all Efficient methods
  • Ans. 

    A palindrome string is a string that reads the same backward as forward. Efficient methods include using two pointers and reversing the string.

    • Use two pointers, one starting from the beginning and the other from the end, and compare the characters at each position until they meet in the middle.

    • Reverse the string and compare it to the original string. If they are the same, it is a palindrome.

    • Use recursion to check if th...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for FICO Software Developer interview:
  • Array
Interview preparation tips for other job seekers - Keep your basic strong must do coding question like questions on patterns, array ,string.

Skills evaluated in this interview

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: Quantitative, verbal, reasoning and basic technical questions.
Duration: 1 hour
Total Questions: 50

Round: Technical + HR Interview
Experience: Questions based on data structures, algorithms, and object oriented programming concepts.
Tested basic knowledge in Finance sector especially related to the company.

College Name: Delhi Technological University, Delhi

Interview Preparation Tips

Round: Pre-placement offer
Experience: Each intern was assigned a individual project and mentor.
In the last week of internship there was project presentation and interview.
interview was easy .For me 50% of the questions were about project and some questions about algorithms and DBMS.
More emphasis was given to the quality of work on project.

General Tips: Working in company is complete different from working on course project. learning many new frameworks required for the project was really challenging.
Programming : Tree, Btree, Tries ..
Operating System: Memory Management
Networks: OSI model
DBMS : basics. they dint ask me any. Show case your interest in big data, servers and passion for technology
Skill Tips: Be confident, even if you don't know the exact answer don't give up tell your approaches to interviewer. some times they will also help you. Software Developer some question s you can ask are: what technologies do your company works on. how are freshers will be selected to different teams in the company.
Skills:
College Name: NIT Surathkal

I applied via Referral and was interviewed before Jan 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SQL and plsql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Pre

I applied via Naukri.com and was interviewed in Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. I have got questions about vsam files and about SQL queries.
  • Q2. What is my previous work and project roles and responsibilities.?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with basics clear with your project,your work,and your roles and responsibilities and be good to make them understand what you willing to answer.

I applied via Naukri.com and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions were related to your technology on which you are good, it starts with basic that identifies you worked in your technology and good knowledge over workflow and your coding standard.

Interview Preparation Tips

Interview preparation tips for other job seekers - Working hard and prepare yourself to achieve your goal where you are satisfy with your job. There is no shortcut, you have to face the challenges. Be prepare yourself
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 Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning, grammar, and coding: two basic level questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Question on core Java
  • Q2. Question on SQL and PLSQL
  • Q3. Resume based question and on project
Round 3 - HR 

(2 Questions)

  • Q1. Resume and project based question
  • Q2. What do you like about your current company, and why do you want to join our organization?
  • Ans. 

    I appreciate the collaborative team environment and innovative projects at my current company, and I am excited about the opportunities for growth and learning at your organization.

    • Collaborative team environment fosters creativity and productivity

    • Innovative projects challenge me to learn and grow

    • Excited about the opportunities for growth and learning at your organization

  • Answered by AI

Interview Questionnaire 

1 Question

  • Q1. As a Asp.net developer I advise to all to have good understanding of c#. Because it is the core concept on which basis you can trackle an Interview.
Contribute & help others!
anonymous
You can choose to be anonymous

FICO Interview FAQs

How many rounds are there in FICO Software Developer interview?
FICO interview process usually has 1-2 rounds. The most common rounds in the FICO interview process are Technical, Coding Test and HR.
What are the top questions asked in FICO Software Developer interview?

Some of the top questions asked at the FICO Software Developer interview -

  1. Palindrome string by all Efficient meth...read more
  2. what is a red black t...read more
  3. Binary Search on Linked L...read more

Recently Viewed

INTERVIEWS

IISC

No Interviews

SALARIES

United Biscuits

INTERVIEWS

FICO

No Interviews

SALARIES

United Biscuits

INTERVIEWS

IISC

No Interviews

INTERVIEWS

AFICIONADO TECHNOLOGIES

No Interviews

SALARIES

United Biscuits

INTERVIEWS

DGLiger Consulting

No Interviews

INTERVIEWS

FICO

No Interviews

INTERVIEWS

Chetu

No Interviews

Tell us how to improve this page.

FICO Software Developer Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more
FICO Software Developer Salary
based on 26 salaries
₹8 L/yr - ₹28.5 L/yr
128% more than the average Software Developer Salary in India
View more details

FICO Software Developer Reviews and Ratings

based on 5 reviews

4.9/5

Rating in categories

3.5

Skill development

4.9

Work-life balance

3.5

Salary

4.9

Job security

4.5

Company culture

3.6

Promotions

3.5

Work satisfaction

Explore 5 Reviews and Ratings
Software Engineer
89 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Engineer
70 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer Level 1
53 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Devops Engineer
49 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Consultant
40 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare FICO with

Experian

3.8
Compare

TransUnion

3.9
Compare

Equifax

3.3
Compare

Crif High Mark Credit Information Services

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