Upload Button Icon Add office photos

Filter interviews by

FICO Interview Questions, Process, and Tips

Updated 31 Dec 2024

Top FICO Interview Questions and Answers

View all 26 questions

FICO Interview Experiences

Popular Designations

38 interviews found

Data Analyst Interview Questions & Answers

user image aniket kumar

posted on 26 Sep 2024

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

They asked simple dsa question

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
No response

I applied via LinkedIn and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Screening Round 

(3 Questions)

  • Q1. How to improve the performance of the web application & how to identify & resolve memory leaks
  • Ans. 

    To improve web application performance, optimize code, use caching, minimize network requests. To identify memory leaks, use profiling tools, monitor memory usage.

    • Optimize code by reducing unnecessary loops, improving algorithms

    • Use caching to store frequently accessed data and reduce database calls

    • Minimize network requests by combining multiple requests into one

    • Use profiling tools like Chrome DevTools or VisualVM to id...

  • Answered by AI
  • Q2. How to resolve CORS issue between microservices and microfrontend
  • Ans. 

    To resolve CORS issue between microservices and microfrontend, configure CORS headers and use a proxy server.

    • Configure CORS headers on microservices to allow requests from microfrontend domain

    • Use a proxy server to route requests from microfrontend to microservices

    • Implement a reverse proxy like Nginx or Apache to handle CORS headers

  • Answered by AI
  • Q3. Is JS singlethreaded or multithreaded
  • Ans. 

    JS is singlethreaded

    • JavaScript is singlethreaded, meaning it can only execute one piece of code at a time

    • This is because of the event loop in JavaScript which manages the execution of code

    • However, JavaScript can still handle asynchronous operations using callbacks, promises, and async/await

  • Answered by AI

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
FICO Interview Questions and Answers for Freshers
illustration image
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Smooth interview, ques from java, selenium
Round 2 - One-on-one 

(1 Question)

  • Q1. Friendly interviewer,

Sdet Automation Test Engineer Interview Questions asked at other Companies

Q1. Wait in selenium and how to find all links present in a page xpath
View answer (2)

Senior QA Engineer Interview Questions & Answers

user image Vinoth Sekar

posted on 10 Dec 2024

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

They have asked few hacker rank programs to solve.

Senior QA Engineer Interview Questions asked at other Companies

Q1. Combination Sum Problem Statement Given an array of distinct positive integers ARR and a non-negative integer 'B', find all unique combinations in the array where the sum is equal to 'B'. Numbers can be chosen multiple times from ARR. Ensur... read more
View answer (1)

FICO interview questions for popular designations

 Software Engineer

 (5)

 Software Developer

 (3)

 Lead Engineer

 (2)

 Associate Software Engineer

 (2)

 Data Scientist

 (1)

 Security Engineer

 (1)

 Data Analyst

 (1)

 Consultant

 (1)

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

I applied via Campus Placement and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

There was aptitude pen paper test which included java mcq, quant and reasoning as well

Round 2 - Technical 

(2 Questions)

  • Q1. I was given a string based coding question. Second question was to predict output of a program based on inheritance (easy - medium level)
  • Q2. What is inheritance, difference between interface and abstract class and oops based questions
Round 3 - Technical 

(2 Questions)

  • Q1. Array based question. Second question was to reverse a linked list
  • Q2. What is polymorphism and its types. Explain concept of stack using queues
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different data types. Types include compile-time and runtime polymorphism.

    • Polymorphism allows a single function to work with different data types.

    • Compile-time polymorphism is achieved through method overloading.

    • Runtime polymorphism is achieved through method overriding.

    • Example: Overloading a method with different parameter types.

    • Example: Overridin...

  • Answered by AI

Skills evaluated in this interview

Java Software Developer Interview Questions asked at other Companies

Q1. How do you convert list to arraylist? And vice versa
View answer (1)

Get interview-ready with Top FICO Interview Questions

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

There were 10 mcqs and 2 coding questions in 60 mins

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)

Jobs at FICO

View all
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

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
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

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Consultant Interview Questions & Answers

user image Anonymous

posted on 31 Jul 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Coding Test 

Some codings challenges which required basic codings concepts in java

Round 3 - Coding Test 

Level 2 coding challenge which requires sata structure and also concepts to clear

Round 4 - Group Discussion 

Hr round for salary discussion and other behavior questions

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)
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 Jul 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 Resume tips
Round 2 - Coding Test 

It was a slightly difficult test with 2 coding question followed by some Apptitude questions

Round 3 - Technical 

(2 Questions)

  • Q1. They asked me about dbms about me
  • Q2. They asked me about my projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be through with your projects
Be proficient in any one language
Be proficient in DBMS

Quality Assurance Engineer Interview Questions asked at other Companies

Q1. Coding with any language 1. Count the no of occurrence of each character in string( ignore case)(ignore wild card characters)
View answer (3)
Contribute & help others!
anonymous
You can choose to be anonymous

FICO Interview FAQs

How many rounds are there in FICO interview?
FICO interview process usually has 2-3 rounds. The most common rounds in the FICO interview process are Technical, Coding Test and One-on-one Round.
How to prepare for FICO 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 FICO. The most common topics and skills that interviewers at FICO expect are FICO, Machine Learning, Anti Money Laundering, Product Management and Computer science.
What are the top questions asked in FICO interview?

Some of the top questions asked at the FICO interview -

  1. What is polymorphism and its types. Explain concept of stack using que...read more
  2. Explain me how would you handle a ddos attack on an apache server in A...read more
  3. How would you manage the fast pace and dynamic 24*7 environm...read more
How long is the FICO interview process?

The duration of FICO interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

JOBS

FICO

No Jobs

INTERVIEWS

Zamil Infra

No Interviews

COMPANY BENEFITS

Laugh Out Loud Ventures

No Benefits

LIST OF COMPANIES

Laugh Out Loud Ventures

Overview

SALARIES

Laugh Out Loud Ventures

No Salaries

SALARIES

Envigo

SALARIES

FICO

REVIEWS

Axtria

No Reviews

SALARIES

ITC

REVIEWS

Laugh Out Loud Ventures

No Reviews

Tell us how to improve this page.

FICO Interview Process

based on 28 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

S&P Global Interview Questions
4.1
 • 275 Interviews
Chetu Interview Questions
3.3
 • 172 Interviews
TransUnion Interview Questions
4.0
 • 89 Interviews
Equifax Interview Questions
3.3
 • 30 Interviews
Experian Interview Questions
3.8
 • 22 Interviews
Moody's Interview Questions
4.1
 • 22 Interviews
CIBIL Interview Questions
4.2
 • 4 Interviews
View all

FICO Reviews and Ratings

based on 207 reviews

4.0/5

Rating in categories

3.5

Skill development

4.0

Work-life balance

3.8

Salary

3.8

Job security

3.9

Company culture

3.5

Promotions

3.5

Work satisfaction

Explore 207 Reviews and Ratings
DevOps Engineering - Lead Engineer

Bangalore / Bengaluru

7-9 Yrs

Not Disclosed

Software Engineering-Engineer II

Bangalore / Bengaluru

3-6 Yrs

Not Disclosed

DevOps Engineering Enablement-Lead Engineer

Bangalore / Bengaluru

7-19 Yrs

Not Disclosed

Explore more jobs
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