Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Fidelity National Financial Software Development Engineer Intern Interview Questions and Answers

Updated 18 Apr 2024

Fidelity National Financial Software Development Engineer Intern Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Campus Placement

Round 1 - Aptitude Test 

Average aptitude and some coding questions - medium level

Round 2 - Technical 

(1 Question)

  • Q1. Some questions on array , linked lists and asked about projects mentioned in resume

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 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. 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

I applied via Company Website and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Whatever mentioned on resume , data structure must (hackerrank coding round mainly on Tree)
  • Q2. Tree traversal implementation , string based question , 2-d array

Interview Preparation Tips

Interview preparation tips for other job seekers - Tree question in hackerrank must , prepare well whatever mentioned in your resume

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

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
Contribute & help others!
anonymous
You can choose to be anonymous

Fidelity National Financial Interview FAQs

How many rounds are there in Fidelity National Financial Software Development Engineer Intern interview?
Fidelity National Financial interview process usually has 2 rounds. The most common rounds in the Fidelity National Financial interview process are Aptitude Test and Technical.

Recently Viewed

REVIEWS

Motilal Oswal Financial Services

No Reviews

INTERVIEWS

Fidelity National Financial

No Interviews

INTERVIEWS

Aadhar Housing Finance

20 top interview questions

INTERVIEWS

Aadhar Housing Finance

No Interviews

JOBS

Swarna Pragathi Housing Micro Finance

No Jobs

INTERVIEWS

Fidelity National Financial

No Interviews

INTERVIEWS

Aadhar Housing Finance

No Interviews

SALARIES

Allsoft Solutions

COMPANY BENEFITS

Motilal Oswal Financial Services

No Benefits

INTERVIEWS

Aadhar Housing Finance

No Interviews

Tell us how to improve this page.

Fidelity National Financial Software Development Engineer Intern Interview Process

based on 1 interview

Interview experience

3
  
Average
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
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