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 DOT NET Developer Interview Questions, Process, and Tips

Updated 8 Apr 2020

FIS DOT NET Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Mar 2020. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What Are JOINS in SQL and difference between Inner JOIN and equi JOIN? Illustrate with an example.
  • Ans. 

    JOINS are used in SQL to combine data from two or more tables based on a related column.

    • Inner JOIN returns only the matching rows from both tables

    • Equi JOIN is a type of Inner JOIN where the join condition is based on equality between two columns

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI
  • Q2. Divide the array in two Halves and keep each half in ascending order without using new Array?
  • Ans. 

    Divide array in two halves and keep each half in ascending order without using new Array.

    • Use Array.sort() method to sort the original array

    • Use Array.slice() method to divide the array into two halves

    • Use Array.reverse() method to reverse the second half of the array

  • Answered by AI
  • Q3. What are Interfaces and Why do we need interfaces?
  • Ans. 

    Interfaces are contracts that define a set of methods and properties that a class must implement.

    • Interfaces provide a way to achieve abstraction and polymorphism in object-oriented programming.

    • They allow for loose coupling between classes and promote code reusability.

    • Interfaces can be used to define common behavior across multiple classes.

    • Example: IDisposable interface in C# ensures that an object can be properly dispo...

  • Answered by AI
  • Q4. What is inheritance and Examples in inheritance.
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class is based on another class.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • The subclass can also add its own properties and methods.

    • Examples include a Car class inheriting from a Vehicle class, or a Dog class inheriting from an Animal class.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep The Basics clear and Be confident about what you know.
Be truthful and well prepared (Interviewer will catch your lies).

Skills evaluated in this interview

Interview questions from similar companies

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

(1 Question)

  • Q1. What is the difference between singleton class and static class
  • Ans. 

    Singleton class allows only one instance to be created, while static class cannot be instantiated and all members are static.

    • Singleton class can have instance methods and properties, while static class can only have static members.

    • Singleton class can be lazy loaded, while static class is eagerly loaded.

    • Singleton class can be implemented using a static property or method to return the single instance, while static class...

  • Answered by AI

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
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

One medium and one standard DP question

Round 2 - Technical 

(1 Question)

  • Q1. Medium level question based on binary search
Round 3 - Technical 

(2 Questions)

  • Q1. Design google-pay
  • Ans. 

    Design Google Pay - a digital wallet platform for online payments and transactions.

    • Allow users to securely store payment information such as credit/debit cards, bank accounts, and loyalty cards.

    • Enable users to make payments in stores, online, and within apps using their stored payment methods.

    • Implement security features like biometric authentication, tokenization, and encryption to protect user data.

    • Provide features fo...

  • Answered by AI
  • Q2. HLD of recursive
  • Ans. 

    High Level Design (HLD) of recursive functions in software development.

    • Recursive functions call themselves to solve smaller instances of the same problem.

    • HLD of recursive functions involves defining the base case, recursive case, and termination condition.

    • Example: HLD of a recursive function to calculate factorial of a number involves defining base case as factorial(0) = 1.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Puzzles available on GFG
  • Q2. Behavioral question

Interview Preparation Tips

Interview preparation tips for other job seekers - be good in DSA, system design, projects, puzzles

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Maths and communication based questions

Round 2 - Coding Test 

Estimate and SQL and coding was there

FIS Interview FAQs

How to prepare for FIS DOT NET 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 C#, .Net, SQL, ASP.Net and MVC.
What are the top questions asked in FIS DOT NET Developer interview?

Some of the top questions asked at the FIS DOT NET Developer interview -

  1. What Are JOINS in SQL and difference between Inner JOIN and equi JOIN? Illustra...read more
  2. Divide the array in two Halves and keep each half in ascending order without us...read more
  3. What are Interfaces and Why do we need interfac...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 FIS interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Join FIS Advancing the way the world pays, banks and investments
FIS DOT NET Developer Salary
based on 20 salaries
₹6 L/yr - ₹14.8 L/yr
56% more than the average DOT NET Developer Salary in India
View more details

FIS DOT NET Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.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.9 L/yr - ₹30 L/yr

Software Engineer
1.6k salaries
unlock blur

₹4.1 L/yr - ₹16 L/yr

Lead Engineer
679 salaries
unlock blur

₹7.3 L/yr - ₹26.4 L/yr

Team Member
672 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