Premium Employer

i

This company page is being actively managed by FIS Team. If you also belong to the team, you can get access from here

FIS

Compare button icon Compare button icon Compare
3.9

based on 5.3k Reviews

Filter interviews by

FIS Senior Java Developer Interview Questions and Answers

Updated 6 Jun 2022

FIS Senior Java Developer Interview Experiences

1 interview found

I applied via Approached by Company and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 Deep Drive with exercise
  • Q2. Spring, SpringBoot, Microsevices, Angular
Round 2 - Technical 

(1 Question)

  • Q1. Collection and Stream Api
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion, Behavioural Question

Interview Preparation Tips

Topics to prepare for FIS Senior Java Developer interview:
  • Java
  • Spring
  • Spring Boot
  • Microservices
  • Angularjs
Interview preparation tips for other job seekers - Interview process is smooth but MAKE SURE YOU DOUBLE CHECK THE PACKAGE YOU ASKED AT START OF THE INTERVIEW, I cleared every round at the end HR told that i can not give what you asked, WHAT THE HECK, you are fortune 500 and wasting time by making false expectations from the candidates.

About Rounds
1 technical
1 techno manager
1 HR

Never Believe in HR double check and then appear in process.

I have rejected the offer after they wasted 2 weeks

Senior Java Developer Jobs at FIS

View all

Interview questions from similar companies

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

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Code singleton design pattern in java
  • Ans. 

    Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Create a private static instance of the class

    • Provide a public static method to access the instance

    • Ensure the constructor is private to prevent instantiation of multiple objects

  • Answered by AI
  • Q2. 2 sum in java
  • Ans. 

    2 sum problem in Java involves finding two numbers in an array that add up to a specific target value.

    • Use a HashMap to store the difference between the target value and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the HashMap.

    • Return the indices of the two numbers that add up to the target value.

  • Answered by AI
  • Q3. How to make a class immutable
  • Ans. 

    To make a class immutable, ensure that its state cannot be changed after instantiation.

    • Make all fields private and final

    • Do not provide setter methods

    • Ensure that any mutable objects within the class are also made immutable

  • Answered by AI
  • Q4. Async annotation
  • Q5. Spring-starter dependencies
Round 2 - One-on-one 

(3 Questions)

  • Q1. What is cyclomacic complexity
  • Ans. 

    Cyclomatic complexity is a software metric used to measure the complexity of a program.

    • It measures the number of linearly independent paths through a program's source code.

    • It helps in identifying complex code that may be difficult to maintain or test.

    • A higher cyclomatic complexity indicates a higher risk of errors and bugs in the code.

    • It is calculated using the formula: E - N + 2P, where E is the number of edges, N is ...

  • Answered by AI
  • Q2. Simple output questions based on inheritance
  • Q3. OWASP top 10 security vulnerabilities

Interview Preparation Tips

Topics to prepare for Experian Senior Java Developer interview:
  • Collections
Interview preparation tips for other job seekers - Prepare based on role. If you apply for java developer role, focus more on java concepts than DSA

Skills evaluated in this interview

Interview experience
4
Good
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 Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

The DSA round happens with pseudo code

Round 2 - Technical 

(2 Questions)

  • Q1. Question asked from my resume
  • Q2. How I implemented everything
Round 3 - HR 

(2 Questions)

  • Q1. Why you want to join
  • Q2. Where do you see yourself in five years

Interview Preparation Tips

Interview preparation tips for other job seekers - I haven’t clear the second round
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Questions were based on basic aptitude like seating arrangement

Round 2 - Technical 

(2 Questions)

  • Q1. Basic oops concepts
  • Q2. SQL questions like triggers and creating an SQL table etc
Round 3 - Technical 

(1 Question)

  • Q1. Coding like arrays basic codes like reversing an array

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on basics
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Company Website

Round 1 - Coding Test 

2 DSA medium questions was asked.

Round 2 - Coding Test 

2 DSA coding questions and CS fundamentals

Round 3 - Technical 

(1 Question)

  • Q1. System design questions in a projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Know the fundamentals & go through must do easy and medium questions.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Design patterns
  • Q2. How hashcode and equals related to each other
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

The topic was -> "One nation one election"

Round 2 - Technical 

(2 Questions)

  • Q1. What is a String pool in Java?
  • Ans. 

    String pool in Java is a pool of unique strings stored in memory to optimize memory usage.

    • String pool is a part of Java's memory where unique string literals are stored.

    • When a new string is created, Java checks if it already exists in the pool to save memory.

    • Strings created using double quotes are added to the pool, while those created using 'new' keyword are not.

    • Example: String str1 = "hello"; String str2 = "hello"; /...

  • Answered by AI
  • Q2. Explain different types of exception in Java.
  • Ans. 

    Java has checked and unchecked exceptions. Checked exceptions must be handled at compile time, while unchecked exceptions do not need to be handled explicitly.

    • Checked exceptions: Must be caught or declared in the method signature. Example: IOException, SQLException

    • Unchecked exceptions: Do not need to be caught or declared. Example: NullPointerException, ArrayIndexOutOfBoundsException

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Sort the list, after many queries
  • Q2. LRU cache with multi level caching
  • Ans. 

    LRU cache with multi level caching involves implementing a cache with multiple levels of storage, where the least recently used items are evicted first.

    • Implement a two-level cache system with a primary cache (e.g. in-memory) and a secondary cache (e.g. disk-based).

    • Use a data structure like a doubly linked list and a hash map to efficiently manage the cache and track the least recently used items.

    • When an item is accesse...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Basic DSA Question
Round 2 - Technical 

(1 Question)

  • Q1. Mobile Development Related Questions
Round 3 - HR 

(1 Question)

  • Q1. Basic HR Questions
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Jan 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Basic oops, .net, c# coding, sql questions
Round 2 - Technical 

(1 Question)

  • Q1. More coding and details on project
Round 3 - Technical 

(1 Question)

  • Q1. More on projects and system design and troubleshooting approach
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion
Round 5 - Technical 

(1 Question)

  • Q1. More technical + managerial round even after HR round

FIS Interview FAQs

How many rounds are there in FIS Senior Java Developer interview?
FIS interview process usually has 3 rounds. The most common rounds in the FIS interview process are Technical and HR.
How to prepare for FIS Senior Java Developer 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 FIS. The most common topics and skills that interviewers at FIS expect are Hibernate, Spring Boot, Core Java, Java and Microservices.
What are the top questions asked in FIS Senior Java Developer interview?

Some of the top questions asked at the FIS Senior Java Developer interview -

  1. Spring, SpringBoot, Microsevices, Angu...read more
  2. Java 8 Deep Drive with exerc...read more
  3. Collection and Stream ...read more

Tell us how to improve this page.

Join FIS Advancing the way the world pays, banks and investments
FIS Senior Java Developer Salary
based on 30 salaries
₹9 L/yr - ₹24 L/yr
8% less than the average Senior Java Developer Salary in India
View more details

FIS Senior Java Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Senior Software Engineer
2.7k salaries
unlock blur

₹7 L/yr - ₹29 L/yr

Software Engineer
1.6k salaries
unlock blur

₹4.1 L/yr - ₹16 L/yr

Lead Engineer
677 salaries
unlock blur

₹7.3 L/yr - ₹26.4 L/yr

Team Member
675 salaries
unlock blur

₹1.5 L/yr - ₹6 L/yr

Senior Leader Engineer
629 salaries
unlock blur

₹9.9 L/yr - ₹30.5 L/yr

Explore more salaries
Compare FIS 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