Upload Button Icon Add office photos

Filter interviews by

First American Corporation Interview Questions and Answers

Updated 29 Apr 2025
Popular Designations

30 Interview questions

A Senior Software Engineer was asked 2mo ago
Q. What are the basics of C#?
Ans. 

C# is a versatile, object-oriented programming language developed by Microsoft, widely used for building Windows applications.

  • C# supports object-oriented programming principles like encapsulation, inheritance, and polymorphism.

  • Example of encapsulation: Using properties to control access to class fields.

  • C# has a rich set of libraries and frameworks, such as .NET for building applications.

  • Example of inheritance: Cre...

View all Senior Software Engineer interview questions
An Automation Engineer was asked 4mo ago
Q. What are the steps to perform parallel testing using Playwright?
Ans. 

Steps to perform parallel testing using Playwright

  • Install Playwright and set up your project

  • Create multiple instances of browsers for parallel testing

  • Run tests in parallel using different browser instances

  • Use tools like Jest or Mocha for managing parallel test execution

View all Automation Engineer interview questions
An Automation Engineer was asked 4mo ago
Q. What are the differences between JavaScript (JS) and TypeScript (TS)?
Ans. 

JavaScript is a dynamically typed language, while TypeScript is a statically typed superset of JavaScript.

  • JavaScript is dynamically typed, allowing for flexibility but potentially leading to runtime errors.

  • TypeScript is statically typed, catching errors at compile time and providing better code quality.

  • TypeScript supports optional static typing, interfaces, and other features not available in JavaScript.

  • JavaScript...

View all Automation Engineer interview questions
An Automation Engineer was asked 4mo ago
Q. What is the difference between a browser context and a web browser?
Ans. 

Browser context is a specific environment within a web browser where web pages are loaded and executed.

  • Browser context is a part of the web browser that includes the DOM, cookies, and other resources for a specific web page.

  • Multiple browser contexts can exist within a single web browser, allowing for isolation of web page resources.

  • Each browser context has its own set of cookies, local storage, and other data spec...

View all Automation Engineer interview questions
An Automation Engineer was asked 4mo ago
Q. How do you automate web interactions when the web elements are dynamic?
Ans. 

Dynamic web elements can be automated using techniques like XPath, CSS selectors, and waiting strategies.

  • Use XPath or CSS selectors to locate elements based on their attributes rather than fixed locators.

  • Implement waiting strategies like explicit waits to handle dynamic loading of elements.

  • Utilize frameworks like Selenium WebDriver to interact with dynamic web elements efficiently.

View all Automation Engineer interview questions
An Automation Engineer was asked 4mo ago
Q. What types of assertions have you used?
Ans. 

I have used various types of assertions such as assert, verify, and soft assert in automation testing.

  • Used assert to verify expected outcomes match actual outcomes

  • Utilized verify to check for specific conditions without stopping the test execution

  • Implemented soft assert to collect multiple failures during a test case execution

View all Automation Engineer interview questions
An Automation Engineer was asked 4mo ago
Q. What is the difference between the == and === operators in programming?
Ans. 

The == operator checks for equality of values, while the === operator checks for equality of values and data types.

  • The == operator performs type coercion before comparing two values, while the === operator does not.

  • For example, 5 == '5' would return true because the values are equal after type coercion, but 5 === '5' would return false because the data types are different.

  • Using === is generally considered safer an...

View all Automation Engineer interview questions
Are these interview questions helpful?
An Automation Engineer was asked 4mo ago
Q. What are the various types of fixtures available in Playwright?
Ans. 

Playwright provides three types of fixtures: page, context, and browser.

  • Page fixtures are specific to a single page instance

  • Context fixtures are shared across all pages in a browser context

  • Browser fixtures are shared across all browser contexts

View all Automation Engineer interview questions
An Automation Engineer was asked 4mo ago
Q. How do you manage the process of inputting files?
Ans. 

I manage the process of inputting files by creating a structured system, using version control, and automating repetitive tasks.

  • Create a structured system for organizing files based on project, date, or type

  • Use version control to track changes and collaborate with team members

  • Automate repetitive tasks such as file renaming or moving using scripts or tools like Jenkins

View all Automation Engineer interview questions
An Automation Engineer was asked 4mo ago
Q. What is your approach for testing a single-page web application using Playwright?
Ans. 

My approach involves writing automated tests using Playwright to simulate user interactions and verify functionality.

  • Identify key user flows and functionalities to be tested

  • Write test scripts using Playwright to interact with elements on the page

  • Include assertions to verify expected outcomes

  • Utilize Playwright's features like selectors, actions, and page objects for efficient testing

  • Run tests locally and on CI/CD p...

View all Automation Engineer interview questions

First American Corporation Interview Experiences

80 interviews found

Automation Engineer Interview Questions & Answers

user image Aashay Mylapilli

posted on 22 Jan 2025

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

(9 Questions)

  • Q1. What is your approach for testing a single-page web application using Playwright?
  • Ans. 

    My approach involves writing automated tests using Playwright to simulate user interactions and verify functionality.

    • Identify key user flows and functionalities to be tested

    • Write test scripts using Playwright to interact with elements on the page

    • Include assertions to verify expected outcomes

    • Utilize Playwright's features like selectors, actions, and page objects for efficient testing

    • Run tests locally and on CI/CD pipeli...

  • Answered by AI
  • Q2. What types of assertions have you used?
  • Ans. 

    I have used various types of assertions such as assert, verify, and soft assert in automation testing.

    • Used assert to verify expected outcomes match actual outcomes

    • Utilized verify to check for specific conditions without stopping the test execution

    • Implemented soft assert to collect multiple failures during a test case execution

  • Answered by AI
  • Q3. What is the difference between a browser context and a web browser?
  • Ans. 

    Browser context is a specific environment within a web browser where web pages are loaded and executed.

    • Browser context is a part of the web browser that includes the DOM, cookies, and other resources for a specific web page.

    • Multiple browser contexts can exist within a single web browser, allowing for isolation of web page resources.

    • Each browser context has its own set of cookies, local storage, and other data specific ...

  • Answered by AI
  • Q4. What are the steps to perform parallel testing using Playwright?
  • Ans. 

    Steps to perform parallel testing using Playwright

    • Install Playwright and set up your project

    • Create multiple instances of browsers for parallel testing

    • Run tests in parallel using different browser instances

    • Use tools like Jest or Mocha for managing parallel test execution

  • Answered by AI
  • Q5. What are the differences between JavaScript (JS) and TypeScript (TS)?
  • Ans. 

    JavaScript is a dynamically typed language, while TypeScript is a statically typed superset of JavaScript.

    • JavaScript is dynamically typed, allowing for flexibility but potentially leading to runtime errors.

    • TypeScript is statically typed, catching errors at compile time and providing better code quality.

    • TypeScript supports optional static typing, interfaces, and other features not available in JavaScript.

    • JavaScript code...

  • Answered by AI
  • Q6. What is the difference between the == and === operators in programming?
  • Ans. 

    The == operator checks for equality of values, while the === operator checks for equality of values and data types.

    • The == operator performs type coercion before comparing two values, while the === operator does not.

    • For example, 5 == '5' would return true because the values are equal after type coercion, but 5 === '5' would return false because the data types are different.

    • Using === is generally considered safer and mor...

  • Answered by AI
  • Q7. How do you automate web interactions when the web elements are dynamic?
  • Ans. 

    Dynamic web elements can be automated using techniques like XPath, CSS selectors, and waiting strategies.

    • Use XPath or CSS selectors to locate elements based on their attributes rather than fixed locators.

    • Implement waiting strategies like explicit waits to handle dynamic loading of elements.

    • Utilize frameworks like Selenium WebDriver to interact with dynamic web elements efficiently.

  • Answered by AI
  • Q8. How do you manage the process of inputting files?
  • Ans. 

    I manage the process of inputting files by creating a structured system, using version control, and automating repetitive tasks.

    • Create a structured system for organizing files based on project, date, or type

    • Use version control to track changes and collaborate with team members

    • Automate repetitive tasks such as file renaming or moving using scripts or tools like Jenkins

  • Answered by AI
  • Q9. What are the various types of fixtures available in Playwright?
  • Ans. 

    Playwright provides three types of fixtures: page, context, and browser.

    • Page fixtures are specific to a single page instance

    • Context fixtures are shared across all pages in a browser context

    • Browser fixtures are shared across all browser contexts

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Tell me about yourself
Round 2 - One-on-one 

(1 Question)

  • Q1. About the tools. Answer all but interviewer was in mood to reject may cause of salary

Interview Preparation Tips

Interview preparation tips for other job seekers - If you see some open position kept open for more than 6 months and they are not feeling means they just doing fake interviews. If they don't have the budget they should not shortlist the candidates.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in May 2024.

Round 1 - Aptitude Test 

Question related to title, deed (quit claim, warranty), mortgage, Insurance, Appraisal

Round 2 - Technical 

(1 Question)

  • Q1. Tell me about yourself? then what is Title, Covenant, Easement, Note, Mortgage, Vested in?
  • Ans. 

    I am a detail-oriented Title Specialist with expertise in real estate documentation and property rights.

    • Title: Legal document proving ownership of property, e.g., a deed.

    • Covenant: A promise in a deed, e.g., a restriction on property use.

    • Easement: A right to use another's land for a specific purpose, e.g., utility access.

    • Note: A written promise to pay a specified amount, e.g., a loan agreement.

    • Mortgage: A loan secured b...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Tell me about the roles and responsibility of yours in previous organization?
  • Ans. 

    In my previous role as a Title Specialist, I managed title searches, resolved discrepancies, and ensured compliance with regulations.

    • Conducted thorough title searches to verify property ownership and identify any liens or encumbrances.

    • Collaborated with real estate agents, lenders, and clients to facilitate smooth transactions.

    • Resolved title issues by researching public records and communicating with relevant parties.

    • Pr...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for First American Corporation Title Specialist interview:
  • Titlle policy
Interview preparation tips for other job seekers - Pls let the candidate know the status of interview if selected or not within 2 weeks. Also increase the package for experienced candidate its very less compared to other companies.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. AWS specific questions
  • Q2. More of product engineering
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. C# related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst company to join. Worst management, unprofessional leadership. I made a very wrong decision to join this company regretting every single day.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Multiple choice based on account and audit conducted online.

Round 2 - Video Call 

(1 Question)

  • Q1. Accounts receivable, personal interests
Round 3 - One-on-one 

(1 Question)

  • Q1. Self-introduction, field of interest, Goals, Commute.

Interview Preparation Tips

Topics to prepare for First American Corporation Fixed Asset Accountant interview:
  • Accounts Receivable
  • Auditing
Interview preparation tips for other job seekers - It is not as intimidating as it looks, They might not reveal the whole process of your job, it will be unveiled once you enter in. Make sure, you learn about that things that are crucial like the timings of job, sat and Sun week off, reimbursements. That's it. Interviewers are humans too, so don't be scared.

Associate Accountant Interview Questions & Answers

user image Divya Velusamy

posted on 15 Mar 2024

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

I applied via Walk-in and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself What do u know about our company Basic accounting questions Are you okay with rotational shifts What is your salary expectations Do u have any plans for doing your masters
Round 2 - One-on-one 

(1 Question)

  • Q1. Same as HR round.. but here account questions was more

Interview Preparation Tips

Interview preparation tips for other job seekers - First we must be very clear with the communication.
Self introduction should be very short and neat..
we should speak atleast 5-8 mns about ourself...
We should tell more than what we have mentioned in the resume.
We should have more knowledge in the field which we have choosen.
If we don't know the answer we must not say I don't know.. instead we have to say that That was a good question and I don't have clear knowledge about that, but I'll learn further.
Good communication skill is must.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about agile methodology
  • Ans. 

    Agile methodology is an iterative approach to project management and software development that emphasizes flexibility and customer collaboration.

    • Focuses on iterative development, allowing teams to adapt to changes quickly.

    • Encourages collaboration between cross-functional teams, such as developers and stakeholders.

    • Utilizes short development cycles called sprints, typically lasting 1-4 weeks.

    • Promotes continuous feedback ...

  • Answered by AI
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 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It involves an app featuring questions related to basic auditing and accounting, complete with multiple-choice options.

Round 2 - HR 

(2 Questions)

  • Q1. Journal entries, golden rules
  • Q2. Personal questions
Round 3 - One-on-one 

(2 Questions)

  • Q1. Career goal, questions relating to job role
  • Q2. Logical thinking on investment.

Interview Preparation Tips

Interview preparation tips for other job seekers - Share your career goals with confidence and explain how you plan to balance work with your personal objectives. Do not hesitate to express these thoughts for fear that it might reduce your chances of being hired.

Interview Questions & Answers

user image Anonymous

posted on 16 Apr 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Normal one to one interaction.
  • Q2. Previous experiences.
  • Q3. Willing to work in rotational shifts or not ?
  • Q4. How long work with us.

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about First American Corporation?
Ask anonymously on communities.

First American Corporation Interview FAQs

How many rounds are there in First American Corporation interview?
First American Corporation interview process usually has 2-3 rounds. The most common rounds in the First American Corporation interview process are HR, Technical and One-on-one Round.
How to prepare for First American Corporation interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at First American Corporation. The most common topics and skills that interviewers at First American Corporation expect are Back Office, Information Technology, microsoft, SDLC and Agile.
What are the top questions asked in First American Corporation interview?

Some of the top questions asked at the First American Corporation interview -

  1. What is C++ programming langua...read more
  2. What do you mean by call by value and call by referen...read more
  3. Was asked to design an algorithm to split a text description into words and cha...read more
What are the most common questions asked in First American Corporation HR round?

The most common HR questions asked in First American Corporation interview are -

  1. What are your salary expectatio...read more
  2. Why are you looking for a chan...read more
  3. Where do you see yourself in 5 yea...read more
How long is the First American Corporation interview process?

The duration of First American Corporation interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 66 interview experiences

Difficulty level

Easy 24%
Moderate 76%

Duration

Less than 2 weeks 94%
2-4 weeks 6%
View more

Interview Questions from Similar Companies

HDFC Life Interview Questions
3.9
 • 673 Interviews
Gallagher Interview Questions
3.7
 • 239 Interviews
Tata AIG Interview Questions
4.1
 • 166 Interviews
PNB MetLife Interview Questions
3.4
 • 166 Interviews
View all

First American Corporation Reviews and Ratings

based on 1.5k reviews

3.5/5

Rating in categories

3.3

Skill development

3.7

Work-life balance

3.1

Salary

3.5

Job security

3.6

Company culture

2.9

Promotions

3.3

Work satisfaction

Explore 1.5k Reviews and Ratings
Senior Process Associate

Bangalore / Bengaluru

1-4 Yrs

₹ 1.4-4.2 LPA

Senior Software Engineer 2

Bangalore / Bengaluru

7-10 Yrs

Not Disclosed

Senior Dot Net and Fullstack Developer

Bangalore / Bengaluru

6-11 Yrs

Not Disclosed

Explore more jobs
Process Associate
1.7k salaries
unlock blur

₹1.2 L/yr - ₹4.7 L/yr

Senior Process Associate
697 salaries
unlock blur

₹1.9 L/yr - ₹5.5 L/yr

Software Engineer
301 salaries
unlock blur

₹4.4 L/yr - ₹17.1 L/yr

Senior Software Engineer
287 salaries
unlock blur

₹8.4 L/yr - ₹26.5 L/yr

Senior Associate
244 salaries
unlock blur

₹1.9 L/yr - ₹5.5 L/yr

Explore more salaries
Compare First American Corporation with

HDFC Life

3.9
Compare

ICICI Prudential Life Insurance

4.0
Compare

Axis Max Life Insurance

4.1
Compare

Bajaj Allianz Life Insurance

3.9
Compare
write
Share an Interview