Upload Button Icon Add office photos

Filter interviews by

Fidelity National Financial Data Engineer Interview Questions, Process, and Tips

Updated 11 Jun 2024

Fidelity National Financial Data Engineer Interview Experiences

1 interview found

Data Engineer Interview Questions & Answers

user image Ashwin Raje

posted on 11 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - One-on-one 

(4 Questions)

  • Q1. What is delta lake and its architecture
  • Ans. 

    Delta Lake is an open-source storage layer that brings ACID transactions to Apache Spark and big data workloads.

    • Delta Lake provides ACID transactions, scalable metadata handling, and unifies streaming and batch data processing.

    • It stores data in Parquet format and uses a transaction log to keep track of all the changes made to the data.

    • Delta Lake architecture includes a storage layer, a transaction log, and a metadata l...

  • Answered by AI
  • Q2. Activities in ADF
  • Ans. 

    Activities in ADF refer to the tasks or operations that can be performed in Azure Data Factory.

    • Activities can include data movement, data transformation, data processing, and data orchestration.

    • Examples of activities in ADF are Copy Data activity, Execute Pipeline activity, Lookup activity, and Web activity.

    • Activities can be chained together in pipelines to create end-to-end data workflows.

    • Each activity in ADF has prop...

  • Answered by AI
  • Q3. Explain mounting process in Databricks
  • Ans. 

    Mounting process in Databricks allows users to access external data sources within the Databricks environment.

    • Mounting allows users to access external data sources like Azure Blob Storage, AWS S3, etc.

    • Users can mount a storage account to a Databricks File System (DBFS) path using the Databricks UI or CLI.

    • Mounted data can be accessed like regular DBFS paths in Databricks notebooks and jobs.

  • Answered by AI
  • Q4. Difference between Blob storage vs Data Lake
  • Ans. 

    Blob storage is for unstructured data, while Data Lake is for structured and unstructured data with metadata.

    • Blob storage is optimized for storing large amounts of unstructured data like images, videos, and backups.

    • Data Lake is designed to store structured and unstructured data with additional metadata for easier organization and analysis.

    • Blob storage is typically used for simple storage needs, while Data Lake is used ...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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.

Interview Preparation Tips

Round: Test
Experience: The written test was quite similar to the typical CAT pattern. It contained sections on Reading Comprehension, Data Interpretation and Mathematics.

Round: Technical + HR Interview
Experience: There were 2 interviewers in the first interview, one was a technical guy and the other was from HR. They asked me a few very simple puzzles, a few basic programming questions (swapping the value of two variables etc.), questions related to the development cycle of software products. The HR guy asked stuff like what do you want to achieve in life? Strengths, weaknesses etc.

Round: Case Study Interview
Experience: The third interview was the most important one (and I guess that was the deciding interview). The interviewer started with questions like why finance? Which companies are you sitting for? Then he gave me a case study:

Interview Questionnaire 

2 Questions

  • Q1. Oops, os, dbms, project
  • Q2. Why hsbc, why should I hire you.
  • Ans. 

    I have a strong background in software engineering and a passion for innovation, making me a valuable asset to HSBC.

    • I have a proven track record of successfully delivering high-quality software solutions in previous roles.

    • I am highly skilled in various programming languages and technologies, including Java, Python, and SQL.

    • I have experience working in agile development environments, allowing me to adapt quickly to chan...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: 4 sections, 15 questions each. Sections on apti, english, programming, technical.
Tips: Time management, complete english and technical first
Duration: 1 hour
Total Questions: 60

Round: Group Discussion
Experience: We were asked which super hero would you like to be. Shared the information. Always present the positives and negatives and emphasize that despite of being negatives
Tips: Think everything through before speaking
Duration: 40 minutes

Round: Technical Interview
Experience: Prepare well, anything can be asked on the things written on your resume

Round: HR Interview
Experience: Sell yourself. Tell them why you would be the best candidate.
Tips: Tell your advantages of being a fresher that you would be comfortable in any technology

College Name: Acropolis institute of technology and research

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

I applied via Naukri.com and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Explain SCD Type 2 Implementation in Informatica
  • Ans. 

    SCD Type 2 is a technique used to track historical changes in data over time in a data warehouse.

    • SCD Type 2 maintains a separate row for each change in data, with a start and end date.

    • It requires a surrogate key to uniquely identify each row.

    • Informatica provides a built-in SCD Type 2 transformation to implement this technique.

    • Example: tracking changes in customer addresses over time.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly focus on basic BI terminologies, common to trivial scenarios and introductory information on latest trending tools and technologies.

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 and was interviewed in Nov 2023. There were 3 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 - Coding Test 

It had 3 questions, the level was medium hardish

Round 3 - Technical 

(1 Question)

  • Q1. There were 3 rounds of interviews, 2 technical and 1 HR, ln First round I was asked about OOPs, 2 medium level DSA questions, asked to write code on paper and explain the approach. Questions: 1. Given an ...
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via LinkedIn and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

Write code to return the maximum profit by buying and selling stocks using available money

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Selected Selected
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 - Coding Test 

2 hours long was the coding round

Round 3 - HR 

(3 Questions)

  • Q1. Nothing simple working hours related
  • Q2. Certification questions only
  • Q3. About your location and all

Interview Preparation Tips

Interview preparation tips for other job seekers - practice coding and prepare OOPS concepts only when your are joining company try to get a referral from anyone
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Asked Two 2 DSA questions

Round 2 - Technical 

(2 Questions)

  • Q1. Asked 1 DSA question
  • Q2. Asked 1 java question

Fidelity National Financial Interview FAQs

How many rounds are there in Fidelity National Financial Data Engineer interview?
Fidelity National Financial interview process usually has 1 rounds. The most common rounds in the Fidelity National Financial interview process are One-on-one Round.
What are the top questions asked in Fidelity National Financial Data Engineer interview?

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

  1. What is delta lake and its architect...read more
  2. Difference between Blob storage vs Data L...read more
  3. Explain mounting process in Databri...read more

Tell us how to improve this page.

Fidelity National Financial Data Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Fast track your campus placements

View all
Senior Analyst
933 salaries
unlock blur

₹2 L/yr - ₹6.1 L/yr

Analyst
791 salaries
unlock blur

₹1.5 L/yr - ₹5.4 L/yr

Operations Analyst
337 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Process Analyst
213 salaries
unlock blur

₹1.2 L/yr - ₹4.5 L/yr

Specialist
192 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Explore more salaries
Compare Fidelity National Financial with

HSBC Group

3.9
Compare

Cholamandalam Investment & Finance

3.9
Compare

Citicorp

3.7
Compare

BNY

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