Upload Button Icon Add office photos

Filter interviews by

Fidelity National Financial Senior Engineer Interview Questions and Answers

Updated 2 Jan 2025

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Sep 2024. There were 5 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Multi threading print odd even with 2 threads but output should be in sync
  • Q2. Largest common prefix in string array
Round 2 - Technical 

(2 Questions)

  • Q1. Saga pattern in microservice
  • Q2. API validation and security
Round 3 - Technical 

(2 Questions)

  • Q1. Micro service inter communication
  • Q2. Hash map hash set implementation
Round 4 - One-on-one 

(3 Questions)

  • Q1. Validation frame work .
  • Q2. Design pattern , .
  • Q3. Singleton pattern and how to break
Round 5 - HR 

(2 Questions)

  • Q1. Negotiation on package .
  • Q2. Why to join here
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Project related
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based question on kafka
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 before Jun 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

Some basic aptitube and reasoning problems were asked. Easily solvable.

Round 2 - Coding Test 

They asked multiple choice questions on oracle sql and pl/sql emphasizing more on reading a code block ask output questions. These were of medium hardness.

Round 3 - Technical 

(1 Question)

  • Q1. They asked what you do on daily basis in your work. What is most complex thing you have implemented and some complex questions on multilevel plsql collection module. It lasted for 1.5 hrs
Round 4 - One-on-one 

(4 Questions)

  • Q1. Questions regarding Oracle architecture and its component
  • Q2. Question on live implementation of multilevel collection, bulk collect and record limiting and bulk exception handleing.
  • Q3. Dml error logging functionality
  • Ans. 

    DML error logging functionality allows for capturing errors during data manipulation language operations.

    • DML error logging can be enabled at the table level using the LOG ERRORS clause in DML statements.

    • It helps in identifying and resolving data issues without causing the entire transaction to fail.

    • Errors are logged in a separate error table, allowing the main operation to continue processing.

    • Example: INSERT INTO table...

  • Answered by AI
  • Q4. Query and join optimization
Round 5 - HR 

(1 Question)

  • Q1. Related to salary and what benefits they provide.

Senior Engineer Interview Questions & Answers

Wells Fargo user image SIRIGIRI SAI KUMAR

posted on 22 Oct 2023

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

I applied via Naukri.com and was interviewed before Oct 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 - One-on-one 

(2 Questions)

  • Q1. Hadoop basics on computing
  • Q2. Distribution basics for processing the data
Round 3 - Technical 

(2 Questions)

  • Q1. Architecture of bigdata systems
  • Ans. 

    Bigdata systems architecture involves distributed storage, processing, and analysis of large volumes of data.

    • Utilize distributed file systems like HDFS for storage

    • Use parallel processing frameworks like Apache Spark or Hadoop for data processing

    • Implement data pipelines for ETL processes

    • Leverage NoSQL databases like Cassandra or MongoDB for real-time data querying

    • Consider data partitioning and replication for fault tole

  • Answered by AI
  • Q2. How will the bigdata system distribution for storage andcompute happen
  • Ans. 

    Big data system distribution for storage and compute involves partitioning data across multiple nodes for efficient processing.

    • Data is partitioned across multiple nodes to distribute storage and processing load.

    • Hadoop Distributed File System (HDFS) is commonly used for storage distribution.

    • Apache Spark utilizes a cluster computing framework for distributed computing.

    • Data locality is important to minimize data transfer ...

  • Answered by AI

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Oct 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. 1. Tell me about Python OS module. 2. What is Anachron? 3. What is the difference between Dynamic and Static website? 4. How will you clone a particular branch? 5. How will you handle exceptions in Ansible...
  • Ans. 

    Technical interview questions for Senior Engineer position

    • Python OS module provides a way of interacting with the operating system

    • Anachron is a tool for scheduling periodic jobs

    • Dynamic websites generate content on the fly while static websites serve pre-built content

    • To clone a particular branch, use the git clone command followed by the branch name

    • Exceptions in Ansible can be handled via the 'ignore_errors' parameter i...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Ameriprise Financial Senior Engineer interview:
  • ansible
  • python
  • linux
  • aws
  • git
  • shell
  • jenkins
  • your resume
Interview preparation tips for other job seekers - Most of their questions were twisted. Take your time to understand what they are asking and then go forward with a response. Trust yourself and your knowledge, but, don't try to fake your knowledge or take too much time to give a response.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Medium leetcode question on array list

Round 2 - One-on-one 

(4 Questions)

  • Q1. Core java and collections, exceptions and threading
  • Q2. Core java collections
  • Q3. Multi threading
  • Q4. Executor framework
Round 3 - One-on-one 

(1 Question)

  • Q1. Threading related questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 coding question based on DP for 25 minutes and 30 MCQs on Java , OOPS and code snippet questions also some basic questions based on trees like number of leaf nodes in a complete binary tree with n nodes.

Round 2 - Technical 

(3 Questions)

  • Q1. Write code for finding palindrome of a string
  • Ans. 

    Code to find palindrome of a string

    • Iterate through the string from both ends and compare characters

    • Use two pointers, one starting from the beginning and one from the end

    • If characters at both pointers match, continue checking until they meet in the middle

    • If all characters match, the string is a palindrome

  • Answered by AI
  • Q2. What is dynamic memory allocation in Java
  • Ans. 

    Dynamic memory allocation in Java refers to the process of allocating memory for objects at runtime.

    • Dynamic memory allocation allows for objects to be created and destroyed during program execution.

    • The 'new' keyword is used to dynamically allocate memory for objects in Java.

    • Dynamic memory allocation helps in managing memory efficiently by allocating memory only when needed.

    • Example: int[] arr = new int[5]; dynamically a

  • Answered by AI
  • Q3. You are designing an e commerce website which database will you choose and what will you use for authentication given that you can't use JWT or even third party like Google authentication
  • Ans. 

    I would choose a relational database like MySQL and implement a custom authentication system using session management.

    • Choose a relational database like MySQL for storing user data, product information, and orders.

    • Implement a custom authentication system using session management to securely authenticate users without JWT or third-party services.

    • Use encryption techniques to store and validate user passwords securely.

    • Util...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is the difference between normal and arrow functions
  • Ans. 

    Arrow functions are more concise and have a lexical 'this' binding compared to normal functions.

    • Arrow functions do not have their own 'this' keyword, they inherit it from the parent scope.

    • Arrow functions do not have their own 'arguments' object.

    • Arrow functions cannot be used as constructors with 'new'.

    • Arrow functions are more concise and have implicit return when no curly braces are used.

  • Answered by AI
  • Q2. All basic JS Questions to cover Hoisting closure
  • Q3. They asked to show me an example using the API call
  • Q4. Difference between forEach and Map
  • Ans. 

    forEach is used to iterate over an array and perform a function on each element, while map creates a new array by applying a function to each element.

    • forEach does not return a new array, while map does

    • forEach does not modify the original array, while map creates a new array

    • forEach is used for side effects, while map is used for transformation

    • Example: forEach - array.forEach(item => console.log(item)), map - const newAr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover JS basics

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Coding Test 

(2 Questions)

  • Q1. Find the character with the maximum frequency
  • Ans. 

    Iterate through each character in the array of strings and keep track of the frequency of each character. Return the character with the maximum frequency.

    • Create a dictionary to store the frequency of each character

    • Iterate through each string in the array and then through each character in the string

    • Update the frequency count of each character in the dictionary

    • Return the character with the maximum frequency

  • Answered by AI
  • Q2. Valid parenthesis
Round 2 - Technical 

(1 Question)

  • Q1. Have you used Junit? What is the difference between SQl and NoSQl Databases? have you worked with Kafka? Kafka based questions. explain dockerization/ containerization. which java8 feature did you work wit...
  • Ans. 

    Yes, I have experience with Junit, SQL and NoSQL databases, Kafka, Dockerization, Java 8 features, stream() operations, and shell scripting in Unix.

    • I have used Junit for unit testing in Java projects.

    • SQL databases are relational databases that use structured query language for data manipulation, while NoSQL databases are non-relational databases that provide flexible schema design and horizontal scalability.

    • I have work...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is the most complex sql query you have written till date. Why did you use nested query to achieve your goal? explain the query. which join did you use in the query. have you implemented hashset? how w...
  • Ans. 

    The most complex SQL query involved nested queries for data manipulation. Used inner join. Implemented hashset and avoided trees due to their drawbacks.

    • Nested SQL query used for complex data manipulation

    • Inner join used for combining data from multiple tables

    • Implemented hashset for efficient data storage and retrieval

    • Avoided trees due to their drawbacks such as unbalanced structure and slower traversal times

  • Answered by AI
  • Q2. Find and replace words in a file using shell scripting. add an index in the beginning of each line in a file using shell scripting. what is multithreading? difference between single threaded and multithrea...
  • Ans. 

    Shell scripting for find and replace, adding index to lines, multithreading, hashmap vs hashtable, stack vs queue

    • Use sed command for find and replace in shell scripting

    • Use awk command to add an index at the beginning of each line in a file

    • Multithreading is the ability of a CPU to execute multiple threads concurrently

    • Single threaded means only one thread is executed at a time, while multithreaded allows multiple threads...

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

(1 Question)

  • Q1. Behavioral questions- tell me about yourself. do you have any questions for us?

Interview Preparation Tips

Topics to prepare for Fidelity Investments Software Engineer interview:
  • DSA
  • SQL
  • Shell Scripting
  • Kafka
Interview preparation tips for other job seekers - Depends on the team your interviewing with but I personally felt their interviews are un-structured. The questions were not based on my experience.

Skills evaluated in this interview

Fidelity National Financial Interview FAQs

How many rounds are there in Fidelity National Financial Senior Engineer interview?
Fidelity National Financial interview process usually has 1 rounds. The most common rounds in the Fidelity National Financial interview process are Assignment.

Tell us how to improve this page.

Fast track your campus placements

View all
Fidelity National Financial Senior Engineer Salary
based on 5 salaries
₹11.5 L/yr - ₹25 L/yr
82% more than the average Senior Engineer Salary in India
View more details
Senior Analyst
925 salaries
unlock blur

₹2 L/yr - ₹6.2 L/yr

Analyst
795 salaries
unlock blur

₹1.5 L/yr - ₹5.7 L/yr

Operations Analyst
317 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Process Analyst
222 salaries
unlock blur

₹1.2 L/yr - ₹4.5 L/yr

Specialist
191 salaries
unlock blur

₹3.1 L/yr - ₹7 L/yr

Explore more salaries
Compare Fidelity National Financial with

Wells Fargo

3.9
Compare

American Express

4.2
Compare

UBS

4.0
Compare

State Street Corporation

3.8
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