Upload Button Icon Add office photos

Filter interviews by

Fair Isaac India Software Software Engineer Interview Questions and Answers

Updated 25 Jan 2015

Fair Isaac India Software Software Engineer Interview Experiences

1 interview found

Interview Questionnaire 

3 Questions

  • Q1. Tell us about yourself
  • Q2. Tell us about the company.
  • Q3. Why FairIsaac?

Interview Preparation Tips

Round: Test
Experience: Questions were algorithm based and there was no language barrier. It had programming related questions.
Duration: 20 minutes
Total Questions: 20-25

Round: Test
Experience: DI, Stats and software based questions were asked. It had CAT type questions.
Duration: 10 minutes
Total Questions: 40

Round: Technical Interview
Experience: Programming related (mostly algorithm related) and BTP and Intern (Microelectronics).

Round: Technical Interview
Experience: It was a 15-minute round. -DS related questions based on sorting and questions already solved in the DI test were discussed.
Tips: Preparations should be good in DI, DS and Probability & Stats.

Round: HR Interview
Tips: DO attend PPT’s.

College Name: IIT KANPUR

Interview questions from similar companies

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

I applied via campus placement at National Institute of Technology (NIT), Raipur and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

The coding test consists of multiple-choice questions and one medium-hard level coding question.

Round 2 - Technical 

(5 Questions)

  • Q1. Given three jugs with different capacities and no measuring tools, how can you measure out a specific amount of water using the jugs you have?
  • Q2. What is the angle between the minute and hour hand of a clock at 3:45?
  • Q3. What is indexing in Database Management Systems (DBMS)?
  • Q4. What is the lifecycle of a React component?
  • Q5. How you delete entry in mongodb database
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic java fundamentals
  • Q2. Spring boot,sql
Round 2 - Technical 

(2 Questions)

  • Q1. Some technical questions from manager
  • Q2. Some challenges or scenario based questions
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion mostly
  • Q2. Benifts that they offer with TR
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Sliding window based question
Round 2 - Technical 

(1 Question)

  • Q1. Java, JS, SQL based questions
Round 3 - HR 

(1 Question)

  • Q1. Reasons to switch , motivation , salary discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Dp questions and a median find question

Round 2 - Technical 

(6 Questions)

  • Q1. Questions about Oops
  • Q2. Oops implementation
  • Q3. Oops implementation of solution of a given scenario
  • Q4. Pattern printing code( Diamond shape with space in middle
  • Q5. Puzzle
  • Q6. Linked list detect loop pseudocode
Round 3 - Case Study 

A case study is given followed by questions on it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to prepare for each type of interview before you go, they could be continuously scheduled one after the other

Software Engineer Interview Questions & Answers

Globant user image Priyanka Vitthal chakkar

posted on 5 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can override or extend the functionality of the base class

  • Answered by AI
  • Q2. What are the types of joins in mysql
  • Ans. 

    Types of joins in MySQL include inner join, left join, right join, and full join.

    • Inner join: Returns rows when there is a match in both tables.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows from the left table.

    • Full join: Returns rows when there is a match in one of the tables.

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. How to handle multiple api's
  • Ans. 

    Use a centralized API gateway to manage and route requests to multiple APIs efficiently.

    • Implement a centralized API gateway to handle incoming requests and route them to the appropriate API based on the endpoint.

    • Utilize API management tools like Apigee, Kong, or AWS API Gateway to manage and monitor multiple APIs.

    • Consider implementing a caching layer to improve performance and reduce the number of requests to external

  • Answered by AI
  • Q2. What does strstr function do?
  • Ans. 

    strstr function searches for a substring within a string and returns a pointer to the first occurrence of the substring.

    • Used in C programming language

    • Syntax: char *strstr(const char *haystack, const char *needle)

    • Example: char *str = strstr("hello world", "world")

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Maths ,english ,reasoning, puzzles

Round 2 - Coding Test 

Jackeron was the platform

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard and avoid cheasting
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Linkedlist , array, stack
  • Q2. What is big data
  • Ans. 

    Big data refers to large volumes of structured and unstructured data that is too complex for traditional data processing applications.

    • Big data involves processing and analyzing large volumes of data to uncover patterns, trends, and insights.

    • It can come from various sources such as social media, sensors, devices, and business transactions.

    • Examples of big data technologies include Hadoop, Spark, and NoSQL databases.

    • Big d...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Group Discussion 

The topic given to me is AI is good or bad

Round 2 - Technical 

(2 Questions)

  • Q1. Program to find prime number
  • Ans. 

    A program to find prime numbers in a given range.

    • Iterate through numbers in the given range

    • Check if each number is divisible by any number other than 1 and itself

    • If not divisible, then the number is prime

  • Answered by AI
  • Q2. Program to find the duplicates
  • Ans. 

    Program to find duplicates in an array of strings

    • Iterate through the array and store each element in a hash set

    • If an element is already in the hash set, it is a duplicate

    • Return a list of all duplicates found

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Self introduction
  • Q2. Explanation of project code
  • Ans. 

    The project code is a web application that allows users to create and share interactive quizzes.

    • The code uses HTML, CSS, and JavaScript to create the front-end interface.

    • It utilizes Node.js and Express for the back-end server.

    • MongoDB is used as the database to store user-generated quizzes.

    • Socket.io is used for real-time communication between users during quiz sessions.

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Amadeus user image Atul Singh Jamwal

posted on 18 Jun 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Why you want to join Amadeus
  • Q2. WHy left the previous company
  • Q3. What do you know about Amadeus
  • Q4. Why we should pay you this much

Interview Preparation Tips

Interview preparation tips for other job seekers - Do study more about Amadues

Fair Isaac India Software Interview FAQs

How to prepare for Fair Isaac India Software Software Engineer 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 Fair Isaac India Software. The most common topics and skills that interviewers at Fair Isaac India Software expect are Software Engineering, Docker, Java, Kubernetes and Microservices.

Tell us how to improve this page.

Lead Engineer
5 salaries
unlock blur

₹23.2 L/yr - ₹25.9 L/yr

Lead Software Engineer
5 salaries
unlock blur

₹16.1 L/yr - ₹23.2 L/yr

Software Developer
4 salaries
unlock blur

₹7.5 L/yr - ₹15 L/yr

Business Analyst
4 salaries
unlock blur

₹9 L/yr - ₹14.1 L/yr

Software Engineer II
4 salaries
unlock blur

₹23.5 L/yr - ₹30 L/yr

Explore more salaries
Compare Fair Isaac India Software with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview