Upload Button Icon Add office photos

Filter interviews by

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 Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... 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 experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

Question related to operating system and computer network

Round 2 - Technical 

(1 Question)

  • Q1. Traverse all child nodes in tree
  • Ans. 

    Traverse all child nodes in a tree data structure

    • Use depth-first or breadth-first traversal algorithms

    • Recursively visit each child node starting from the root node

    • Consider using a stack or queue data structure for traversal

    • Example: Traverse all nodes in a binary tree

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Question related to cloud and oops
Round 4 - Technical 

(1 Question)

  • Q1. Question related to my background and how web site work
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 in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java springboot basic to intermediate question
  • Q2. Java stream questions
Round 2 - Technical 

(2 Questions)

  • Q1. Easy level DSA questions
  • Q2. Project based questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. String based questions in java
  • Q2. What are the fundamental concepts of Java?
Round 2 - Coding Test 

Java based questions and few DSA questions

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

I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

1st round is aptitude and pesudocode

Round 2 - Technical 

(2 Questions)

  • Q1. Mostly python questions
  • Q2. List questions and basic to mediumprogram

Interview Preparation Tips

Interview preparation tips for other job seekers - Moderate interview
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Questions were completely based on data structures and algorithm
  • Q2. SQL based questions were also asked

Software Developer Interview Questions & Answers

Amadeus user image Aswini Ramachandran

posted on 2 Oct 2024

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

(2 Questions)

  • Q1. Something based on hashet
  • Q2. Same with this too
Round 2 - Aptitude Test 

Basic questions were given..bar graphs,pie charts

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is Oops concept?
  • Ans. 

    Oops concept stands for Object-Oriented Programming concepts which include principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Oops concept is a programming paradigm that focuses on objects and classes.

    • It includes principles like inheritance, where a class can inherit properties and behaviors from another class.

    • Encapsulation is another principle where data is wrapped within a class and can only be...

  • Answered by AI

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

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
87 salaries
unlock blur

₹7 L/yr - ₹23.3 L/yr

Lead Engineer
70 salaries
unlock blur

₹16 L/yr - ₹36 L/yr

Software Engineer Level 1
53 salaries
unlock blur

₹9.5 L/yr - ₹19 L/yr

Devops Engineer
47 salaries
unlock blur

₹5.5 L/yr - ₹17.2 L/yr

Lead Consultant
38 salaries
unlock blur

₹14 L/yr - ₹38 L/yr

Explore more salaries
Compare FICO with

Experian

3.9
Compare

TransUnion

4.0
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