Upload Button Icon Add office photos

Filter interviews by

FICO Developer Associate Interview Questions and Answers

Updated 16 Sep 2021

FICO Developer Associate Interview Experiences

1 interview found

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

1)Aptitude
2)Java (Questions from Maps, Collections, Arrays class)
3)2 Coding Questions

  • Q1. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. Outer And Inner Loop

    We are going to have two loops outer-loop and inner-loop 

    1. Maintain a count of the number of nodes visited in outer-loop.
    2. For every node of the outer-loop, start the inner loop from head.
    3. If the inner-loop visits the node next to the outer-loop node, then return true, else repeat the process for the next iteration of outer-loop.
    4. If outer-loop reaches the end of list or null, then return false.
    Space ...
  • Answered Anonymously
Round 2 - Video Call 

Round duration - 150 Minutes
Round difficulty - Easy

Multiple technical questions were asked

Round 3 - HR 

Round duration - 10 minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Developer Associate in BangaloreEligibility criteria8 CGPAFICO interview preparation:Topics to prepare for the interview - Data Structures, Core Java, Operating System, DBMS, Computer NetworksTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare you CV well with projects well explained .
Tip 2 : Prepare DSA and programming well because interviewer can ask in technical round.
Tip 3 : Prepare Core subjects like OS, DBMS, CN .

Application resume tips for other job seekers

Tip 1 : Do not put false things on a resume, in-depth of knowledge of everything there on the resume
Tip 2 : Focus on your projects

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Nov 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 tips
Round 2 - Coding Test 

There main focus was on coding there were 10mcq of your coding s nd other section was for aptitude

Round 3 - One-on-one 

(2 Questions)

  • Q1. They will start asking from your core branch... As you take any language name you found your expertise they will ask deeply on tht topic
  • Q2. If you are from like electronic engineering student they will ask you questions from your related subject?!!

Interview Preparation Tips

Interview preparation tips for other job seekers - The company has 4 year bond and the package they provide is very less
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
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. What is Common Term Expression?
  • Q2. What is Overloading and Overriding?
  • Ans. 

    Overloading is having multiple methods in the same class with the same name but different parameters. Overriding is implementing a method in a subclass that is already defined in the parent class.

    • Overloading allows a class to have multiple methods with the same name but different parameters.

    • Overriding is when a subclass provides a specific implementation of a method that is already defined in its parent class.

    • Example o...

  • Answered by AI
  • Q3. Examples of Server side session Management? Types of Session State?
  • Ans. 

    Server side session management involves storing user data on the server to maintain state. Types include in-process, out-of-process, and database.

    • In-process session state: Data stored in memory on the same server as the application.

    • Out-of-process session state: Data stored in a separate server or service, such as a state server or Redis cache.

    • Database session state: Data stored in a database, such as SQL Server or MySQ...

  • Answered by AI
  • Q4. How to Debug Stored Procedures?
  • Ans. 

    Debugging stored procedures involves using tools like SQL Server Management Studio, setting breakpoints, and analyzing query execution.

    • Use SQL Server Management Studio to debug stored procedures

    • Set breakpoints in the stored procedure code to pause execution at specific points

    • Analyze query execution using tools like SQL Profiler to identify issues

    • Use PRINT or SELECT statements to output intermediate results for debuggin...

  • Answered by AI
  • Q5. What is Compile time binding and Runtime Binding?
  • Ans. 

    Compile time binding occurs during compilation while runtime binding occurs during execution.

    • Compile time binding is also known as early binding, where the method to be called is determined at compile time based on the type of the object.

    • Runtime binding is also known as late binding, where the method to be called is determined at runtime based on the actual type of the object.

    • Compile time binding is faster as it is don...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Ebix Software India DOT NET Developer interview:
  • C#
  • ASP.Net MVC
  • SQL Server
Interview preparation tips for other job seekers - Prepare well on C# and Asp.Net MVC. For experienced candidates prepare in depth.

Skills evaluated in this interview

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
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Security related scenarios.
  • Q2. Integration types and usecases.
  • Ans. 

    Integration types include point-to-point, middleware, and API-based integrations for connecting different systems.

    • Point-to-point integration involves direct connections between two systems.

    • Middleware integration uses a middle layer to connect multiple systems.

    • API-based integration utilizes APIs to connect systems and exchange data.

    • Examples: Salesforce to SAP integration, Salesforce to MailChimp integration, Salesforce

  • Answered by AI

Tell us how to improve this page.

Interview Questions from Similar Companies

S&P Global Interview Questions
4.2
 • 268 Interviews
Globant Interview Questions
3.9
 • 169 Interviews
Chetu Interview Questions
3.3
 • 165 Interviews
AVASOFT Interview Questions
3.0
 • 136 Interviews
ivy Interview Questions
3.7
 • 120 Interviews
DE Shaw Interview Questions
3.8
 • 119 Interviews
Axtria Interview Questions
3.1
 • 114 Interviews
Thomson Reuters Interview Questions
4.1
 • 111 Interviews
Amadeus Interview Questions
4.0
 • 108 Interviews
View all
Software Engineer
90 salaries
unlock blur

₹7 L/yr - ₹23 L/yr

Lead Engineer
65 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.8
Compare

TransUnion

4.0
Compare

Equifax

3.3
Compare

Crif High Mark Credit Information Services

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