Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Fidelity National Financial Ats Engineer Interview Questions and Answers

Updated 30 Jan 2024

Fidelity National Financial Ats Engineer Interview Experiences

1 interview found

Ats Engineer Interview Questions & Answers

user image Anonymous

posted on 30 Jan 2024

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Didn't remember the exact questions now but if you have a thorough knowledge of Linux then I'm sure you can easily make it through the technical interview very easily. Note: 1. Patching is a must-have ma...
Round 2 - Technical 

(1 Question)

  • Q1. If Andrew is the Interviewer then you can expect the silliest of the silliest questions you might have encountered in your entire life, maybe a puzzle-based question like: Q. If a man is living in a house ...
Round 3 - HR 

(1 Question)

  • Q1. Easy peasy, this is an HR round, and mostly the questions are related to you and your salary negotiations.

Interview Preparation Tips

Topics to prepare for Fidelity National Financial Ats Engineer interview:
  • Ansible
  • Patching
  • Redhat Linux
  • Linux Administration
  • Linux Kernel
  • ManageEngine
  • log monitoring
  • Monitoring Tools
Interview preparation tips for other job seekers - Everything is good. It's not easy to crack the interviews of fidelity and go to the final round and hold an offer/ acceptance letter.

Note: accept the offer at your own risk. as mentioned earlier also that there is "NO JOB SECURITY".
Rest everything is good.

My review means a real review. I'm exactly showing you a very clear picture.

Interview questions from similar companies

Interview Questionnaire 

8 Questions

  • Q1. Find a number which occurs odd number of times and all number occurs even number of times
  • Ans. 

    Find an odd occurring number among even occurring numbers.

    • Use XOR operation to cancel out even occurring numbers and get the odd occurring number.

    • Iterate through the array and XOR each element with the result variable.

    • The final result will be the odd occurring number.

  • Answered by AI
  • Q2. Some discussion about my minor project
  • Q3. Spiral order of binary tree and mattrix, print it
  • Ans. 

    Print the spiral order of a binary tree and matrix.

    • For binary tree, use level order traversal and alternate direction for each level.

    • For matrix, use four pointers to traverse in spiral order.

    • Example for binary tree: 1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 8 -> 9

    • Example for matrix: 1 2 3 4 -> 8 7 6 5 -> 9 10 11 12 -> 16 15 14 13

  • Answered by AI
  • Q4. Some question about os,dbms
  • Q5. Find pair which have a given sum in a given array
  • Ans. 

    Finding pairs in an array with a given sum.

    • Iterate through the array and for each element, check if the difference between the given sum and the element exists in the array.

    • Use a hash table to store the elements of the array and their indices for faster lookup.

    • If there are multiple pairs with the same sum, return any one of them.

    • If no pair is found, return null or an empty array.

  • Answered by AI
  • Q6. Find total number of k element which have a given avg in a given array in minimum time complexity
  • Ans. 

    Find total number of k element with given avg in an array in minimum time complexity.

    • Use sliding window technique to traverse the array in O(n) time complexity.

    • Maintain a sum variable to keep track of the sum of elements in the window.

    • If the sum of elements in the window is equal to k times the given avg, increment the count.

    • Move the window by subtracting the first element and adding the next element in the array.

  • Answered by AI
  • Q7. Print all elements which in not boundary element in a given binary tree
  • Ans. 

    Printing non-boundary elements of a binary tree

    • Traverse the tree in any order (preorder, inorder, postorder)

    • Check if the current node is not a boundary node (not the first or last node in its level)

    • If it is not a boundary node, print its value

    • Recursively traverse its left and right subtrees

  • Answered by AI
  • Q8. Then some question about process synchronisation,error vs exception,and then 2-3 hr question

Interview Preparation Tips

Round: Test
Experience: practice codes on paper
Tips:

Round: Technical Interview
Experience: very good
Tips: please try to explain each and every question in detail

Round: Technical Interview
Experience: my hr round is not taken by them,and some of face 3rd round ,which is HR
Tips: please prepare all types of problem from geeksforgeeks

Skill Tips: please try to understand every problem from geeksforgeeks
Skills: ds
College Name: NIT Bhopal
Motivation: best work culture,and a lots of learning opportunity in this company,and in every 6 month there is a appraisal

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: 7 CGPA cut off, The First round was an Aptitude test (quant+DI+verbal ) 20 questions + 10 basic C/C+ questions
Total Questions: 30

Round: Other Interview
Experience: Second Stage: 2 rounds Tech interview + 1 HR, Very casual personal interview with questions based on resume onlyNo core coding questions since I was from ECE but for Comps/IT they expect knowledge in DBMS.Some finance questions like what are stocks/shares, mutual funds etc. I was asked more detailed finance questions also since I had mentioned my finance interns.

Skill Tips: Be thorough with apti tests . Past CAT papers are ideal as they cover all aspects  (quant+Data Interpretation +Logical reasoning +verbal ) For learning finance jargon use Economist A-Z list and Investopedia
Skills: quant, Data Interpretation , Logical reasoning
College Name: NIT SURATHKAL

Interview Questionnaire 

1 Question

  • Q1. Asked many Dbsa questions. You need to be thorough about the joins in the databases.

Interview Preparation Tips

Round: Test
Experience: Practice questions on Indiabix.

Round: Technical Interview
Experience: Operating Systems basics, Dbsa basics

General Tips: 1: Be Confident.
2: Keep Smiling.
3: Do not be Panic.
4: Remember they are here to hire you but not reject you.
5: Do not loose hope.
6: Believe at yourself.
7: Start preparing early.
8: Do demo interviews with your friend.
Skill Tips: Make sure you do a course on object oriented programming
Skills: C, Sql, Java
College Name: BITS PILANI
Motivation: Every body joins a comapny for making a software or earning money. But I was always motivated to MAKE MONEY. I have taken this job because they have very extensive work in Share Market and they have lots of MBA from IIM's, Lots of CAs, CS. Thats why i have choosen Edelweiss. I have rejected epic System USA for this profile.

I applied via Campus Placement and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Coding Test 

2 moderate data structure problems

Round 2 - Technical 

(2 Questions)

  • Q1. Write the code for Fibonacci series
  • Ans. 

    Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Declare variables for first two numbers of the series

    • Use a loop to generate the series by adding the previous two numbers

    • Store the series in an array or print each number as it is generated

  • Answered by AI
  • Q2. Write a SQL joining two tables on a key column
  • Ans. 

    Join two tables on a key column using SQL

    • Use the JOIN keyword followed by the name of the second table

    • Specify the key column in both tables using the ON keyword

    • Choose the type of join (INNER, LEFT, RIGHT, FULL) based on your requirement

  • Answered by AI
Round 3 - HR 

(6 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. What are your salary expectations?
  • Q3. What is your family background?
  • Q4. Why should we hire you?
  • Q5. Where do you see yourself in 5 years?
  • Q6. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good at OOPS concepts.
Data structures is required only to clear the initial coding round.
SQL knowledge is essential for the interview.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in May 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Related debugging, views, scripting, control_m schedule related & Aws basic concepts and real time issues

Interview Preparation Tips

Interview preparation tips for other job seekers - We should be very carefully while answering the question because with in that answer again they will ask one more question.

And be confident

Interview Questionnaire 

1 Question

  • Q1. Questions on angular framework,.net core , dependency injection,legacy .net, session management , agile ceremonies.

I applied via Recruitment Consultant and was interviewed in Dec 2020. There was 1 interview round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be 100% technical in java here they will not be any support u need to dig deep lot of complex modules which we cannot understand in depth

I applied via Recruitment Consulltant and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Java and OOPS Associated Questions
  • Q2. Spring and Basic Programming Like Sort, Searching

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't bother to give interviews it's not a good place to work for.

Interview Questionnaire 

1 Question

  • Q1. Frequency of each word ina sentence
  • Ans. 

    To find the frequency of each word in a sentence.

    • Split the sentence into words

    • Create a dictionary to store word frequency

    • Iterate through the words and update the dictionary

    • Return the dictionary

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Fidelity National Financial Interview FAQs

How many rounds are there in Fidelity National Financial Ats Engineer interview?
Fidelity National Financial interview process usually has 3 rounds. The most common rounds in the Fidelity National Financial interview process are Technical and HR.
What are the top questions asked in Fidelity National Financial Ats Engineer interview?

Some of the top questions asked at the Fidelity National Financial Ats Engineer interview -

  1. If Andrew is the Interviewer then you can expect the silliest of the silliest q...read more
  2. Didn't remember the exact questions now but if you have a thorough knowledge of...read more

Recently Viewed

REVIEWS

Motilal Oswal Financial Services

No Reviews

INTERVIEWS

HCLTech

No Interviews

INTERVIEWS

Quest Global

No Interviews

SALARIES

Granules Omnichem

SALARIES

Allsoft Solutions

SALARIES

Granules Omnichem

INTERVIEWS

Quest Global

No Interviews

SALARIES

Granules Omnichem

INTERVIEWS

Fidelity National Financial

No Interviews

INTERVIEWS

Fidelity National Financial

No Interviews

Tell us how to improve this page.

Fidelity National Financial Ats Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 567 Interviews
Wells Fargo Interview Questions
3.9
 • 566 Interviews
American Express Interview Questions
4.2
 • 360 Interviews
UBS Interview Questions
3.9
 • 333 Interviews
Morgan Stanley Interview Questions
3.7
 • 291 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
FactSet Interview Questions
3.9
 • 205 Interviews
BNP Paribas Interview Questions
3.8
 • 179 Interviews
View all

Fast track your campus placements

View all
Fidelity National Financial Ats Engineer Salary
based on 25 salaries
₹5 L/yr - ₹8.6 L/yr
At par with the average Ats Engineer Salary in India
View more details

Fidelity National Financial Ats Engineer Reviews and Ratings

based on 5 reviews

2.6/5

Rating in categories

2.9

Skill development

3.0

Work-life balance

2.9

Salary

2.1

Job security

3.3

Company culture

2.8

Promotions

2.8

Work satisfaction

Explore 5 Reviews and Ratings
Senior Analyst
928 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
785 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Analyst
336 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Process Analyst
212 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Specialist
192 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Fidelity National Financial with

Wells Fargo

3.9
Compare

Citicorp

3.7
Compare

American Express

4.2
Compare

UBS

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