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 Verified Tick

Compare button icon Compare button icon Compare
3.9

based on 5.4k Reviews

Filter interviews by

FIS Senior Software Engineer 1 Interview Questions and Answers

Updated 15 Mar 2024

FIS Senior Software Engineer 1 Interview Experiences

1 interview found

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

(1 Question)

  • Q1. What is view? What is cte
  • Ans. 

    A view is a virtual table created by a query. CTE stands for Common Table Expression, which is a temporary result set.

    • View is a saved SQL query that acts as a virtual table

    • CTE is a temporary result set that can be referenced within a query

    • Views can be used to simplify complex queries and provide a layer of abstraction

    • CTEs are useful for recursive queries or when a result set needs to be referenced multiple times

  • Answered by AI

Interview questions from similar companies

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

(2 Questions)

  • Q1. Design pattern with example
  • Ans. 

    Factory design pattern is used to create objects without specifying the exact class of object that will be created.

    • Factory method creates objects without specifying the exact class of object that will be created.

    • It provides a way to delegate the instantiation logic to child classes.

    • Example: Java's Calendar.getInstance() method returns a Calendar object based on the current timezone and locale.

  • Answered by AI
  • Q2. Explain concepts of redux
  • Ans. 

    Redux is a predictable state container for JavaScript apps.

    • Centralized state management

    • State is read-only

    • Changes are made with pure functions (reducers)

    • Actions are dispatched to update state

    • Used with React for managing application state

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Write some basic codes

Round 2 - Technical 

(2 Questions)

  • Q1. What in . Net Core
  • Ans. 

    ASP.NET Core is a cross-platform, high-performance framework for building modern, cloud-based, internet-connected applications.

    • ASP.NET Core is open-source and developed by Microsoft.

    • It supports cross-platform development on Windows, macOS, and Linux.

    • It provides improved performance and scalability compared to previous versions of ASP.NET.

    • ASP.NET Core includes a modular and lightweight architecture.

    • It supports Docker co...

  • Answered by AI
  • Q2. Oops implementation with example
  • Ans. 

    Oops implementation is a programming concept that allows for error handling and recovery.

    • Oops implementation involves using try-catch blocks to handle exceptions in code.

    • Example: try { // code that may throw an exception } catch (Exception e) { // handle the exception }

    • Oops implementation helps in making code more robust and reliable by handling unexpected errors gracefully.

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Normal java question
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Java, basics of coding
Round 2 - Technical 

(1 Question)

  • Q1. Java , spring boot micro services
Round 3 - Coding Test 

Amcat, SQL, spring boot

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

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Circular wait Ans A circular chain with two or more processes, each one waiting for a resource held by the next process within the chain
  • Q2. Hold and wait Ans A process must be holding at least one resource while waiting to acquire additional resources held by other process holding them
Round 2 - One-on-one 

(2 Questions)

  • Q1. The phrase 'lavish with his hospitality' in the third sentence of the first paragraph means Ans Extravagance in entertaining guest
  • Q2. What is an Accenture coding Test Ans The Accenture coding Test but not like the one in the first stage,its much lengthier and more comprehensive.

Interview Preparation Tips

Interview preparation tips for other job seekers - . Be prepared for anything
. Act kindly to everyone
. Send follow-up emails
. Learn job keywords
. Be mindful of your job location
Interview experience
4
Good
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 was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is Dependency Injection?
  • Q2. How does angular components communicate with each other?
  • Q3. How can you optimize a stored procedure in MSSQL?
  • Q4. What is Kestrel in .net Core?

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your stack well, prepare basic as well as intermediate questions.
If you dont know a specific topic, dont bluff, just say so.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain over all experience
  • Q2. Asked question on Core and advance java topic
Round 2 - Technical 

(2 Questions)

  • Q1. Some advance topic of Java
  • Q2. DSA
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Q2. Relocation
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Aptitude, core concepts and a code

Round 2 - HR 

(2 Questions)

  • Q1. What is the one thing you learnt from college club?
  • Ans. 

    I learned the importance of teamwork and collaboration from my college club.

    • Developed strong communication skills by working with diverse group of individuals

    • Learned how to delegate tasks effectively to achieve common goals

    • Gained experience in problem-solving and conflict resolution through group projects

  • Answered by AI
  • Q2. What is the one thing you want to expereince?
  • Ans. 

    I want to experience living in a different country and immersing myself in a new culture.

    • Traveling to a foreign country and learning about their customs and traditions

    • Trying new foods and experiencing different ways of life

    • Making friends with locals and exploring the local attractions

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Difference between relational and non relational dbms
  • Ans. 

    Relational DBMS stores data in tables with predefined relationships, while non-relational DBMS stores data in flexible, schema-less formats.

    • Relational DBMS uses structured query language (SQL) for querying data

    • Non-relational DBMS can store data in various formats like key-value pairs, document-based, graph databases

    • Relational DBMS ensures data integrity through normalization and constraints

    • Non-relational DBMS offers be...

  • Answered by AI
  • Q2. Difference betweeen class,abstract class,interface in python
  • Ans. 

    Class is a blueprint for creating objects, abstract class cannot be instantiated and can have abstract methods, interface is a contract for classes to implement certain methods.

    • Class is a blueprint for creating objects with attributes and methods.

    • Abstract class cannot be instantiated and can have abstract methods that must be implemented by subclasses.

    • Interface is a contract for classes to implement certain methods, bu

  • Answered by AI
  • Q3. Project related questions were asked

Skills evaluated in this interview

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

It was an aptitute round and 2 coding questions was there

Round 2 - Technical 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. We had discussion on projects than mentioned in my resume
  • Q3. Then he moved to DSA question in which he told to how you will insert node in doubly linked list ,I answered all correctly he appreciated me also but after 5 min one person came and told you can go . I was...

Interview Preparation Tips

Interview preparation tips for other job seekers - try to give interview as early as possible prepare basic dsa and projects

FIS Interview FAQs

How many rounds are there in FIS Senior Software Engineer 1 interview?
FIS interview process usually has 1 rounds. The most common rounds in the FIS interview process are Technical.

Tell us how to improve this page.

FIS Senior Software Engineer 1 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join FIS Advancing the way the world pays, banks and investments
FIS Senior Software Engineer 1 Salary
based on 24 salaries
₹7.5 L/yr - ₹16.8 L/yr
32% less than the average Senior Software Engineer 1 Salary in India
View more details

FIS Senior Software Engineer 1 Reviews and Ratings

based on 3 reviews

4.1/5

Rating in categories

3.9

Skill development

4.6

Work-life balance

3.5

Salary

4.2

Job security

4.2

Company culture

3.5

Promotions

3.9

Work satisfaction

Explore 3 Reviews and Ratings
Senior Software Engineer
2.7k salaries
unlock blur

₹8 L/yr - ₹30 L/yr

Software Engineer
1.6k salaries
unlock blur

₹4.2 L/yr - ₹16 L/yr

Lead Engineer
694 salaries
unlock blur

₹7.2 L/yr - ₹27 L/yr

Team Member
673 salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Senior Leader Engineer
642 salaries
unlock blur

₹9.9 L/yr - ₹32.1 L/yr

Explore more salaries
Compare FIS with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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