Upload Button Icon Add office photos

Experian

Compare button icon Compare button icon Compare

Filter interviews by

Experian Interview Questions and Answers

Updated 29 May 2025
Popular Designations

17 Interview questions

A Senior Java Developer was asked 8mo ago
Q. How do you make a class immutable?
Ans. 

To make a class immutable, ensure that its state cannot be changed after instantiation.

  • Make all fields private and final

  • Do not provide setter methods

  • Ensure that any mutable objects within the class are also made immutable

View all Senior Java Developer interview questions
A Senior Java Developer was asked 8mo ago
Q. Implement the singleton design pattern in Java.
Ans. 

Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

  • Create a private static instance of the class

  • Provide a public static method to access the instance

  • Ensure the constructor is private to prevent instantiation of multiple objects

View all Senior Java Developer interview questions
A Senior Java Developer was asked 8mo ago
Q. What is cyclomatic complexity?
Ans. 

Cyclomatic complexity is a software metric used to measure the complexity of a program.

  • It measures the number of linearly independent paths through a program's source code.

  • It helps in identifying complex code that may be difficult to maintain or test.

  • A higher cyclomatic complexity indicates a higher risk of errors and bugs in the code.

  • It is calculated using the formula: E - N + 2P, where E is the number of edges, ...

View all Senior Java Developer interview questions
A Senior Java Developer was asked 8mo ago
Q. Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use ...
Ans. 

2 sum problem in Java involves finding two numbers in an array that add up to a specific target value.

  • Use a HashMap to store the difference between the target value and each element in the array.

  • Iterate through the array and check if the current element's complement exists in the HashMap.

  • Return the indices of the two numbers that add up to the target value.

View all Senior Java Developer interview questions

What people are saying about Experian

View All
a senior software engineer
2w
Offer selection
Hi all, I have two offers, one from optum (Unitedhealth group) and another from Experian. I'm a .net full stack developer. Which is better to go ? My main focus is, making it into top tier 1 companies.
Got a question about Experian?
Ask anonymously on communities.
An Accounts Manager was asked 8mo ago
Q. How is underwriting done?
Ans. 

Underwriting involves assessing risk and determining the terms of insurance policies.

  • Underwriters evaluate the risk associated with insuring a particular individual or entity.

  • They analyze factors such as age, health, occupation, and lifestyle to determine the likelihood of a claim.

  • Underwriters also set the premium amount and coverage limits based on the risk assessment.

  • They may use actuarial tables, statistical mo...

View all Accounts Manager interview questions
An Accounts Manager was asked 8mo ago
Q. How can you detect fraud during the onboarding process?
Ans. 

Fraud in onboarding journey can be detected through various methods such as background checks, verification processes, and monitoring of suspicious activities.

  • Implement thorough background checks on new employees or clients to verify their identity and credentials.

  • Utilize verification processes such as document verification, reference checks, and identity verification to ensure the authenticity of information prov...

View all Accounts Manager interview questions
A Dot Net Lead was asked 10mo ago
Q. Write a DSA program to find a leading number in a set of numbers.
Ans. 

A leading number in a set is the first number that is greater than all numbers to its left.

  • A leading number is defined as a number that is greater than all the numbers before it in the array.

  • Example: In the array [1, 3, 2, 5, 4], the leading numbers are 1, 3, and 5.

  • To find leading numbers, iterate through the array while keeping track of the maximum number seen so far.

  • If the current number is greater than the maxi...

View all Dot Net Lead interview questions
Are these interview questions helpful?
A Senior Security Engineer was asked 11mo ago
Q. What are the best practices for integrating SAST into CI/CD?
Ans. 

Implementing SAST in CI/CD requires careful planning and integration to ensure security vulnerabilities are caught early in the development process.

  • Integrate SAST tools directly into the CI/CD pipeline to scan code automatically during the build process.

  • Set up alerts and notifications for developers to address security findings promptly.

  • Regularly update SAST tools and configurations to keep up with new vulnerabili...

View all Senior Security Engineer interview questions
A Senior Security Engineer was asked 11mo ago
Q. How would you deal with developer push back for security issues?
Ans. 

Address concerns with empathy, provide education on security risks, offer solutions, collaborate on finding a compromise.

  • Listen to their concerns and understand their perspective.

  • Educate them on the potential security risks and consequences of not addressing the issues.

  • Offer alternative solutions or workarounds that meet both security and development needs.

  • Collaborate with the developers to find a compromise that ...

View all Senior Security Engineer interview questions
A Technical Architect was asked
Q. How would you design a system to scale services?
Ans. 

Design a scalable system to handle increasing user demand efficiently.

  • Use microservices architecture to allow independent scaling of components.

  • Implement load balancers to distribute traffic evenly across servers.

  • Utilize caching mechanisms (e.g., Redis, Memcached) to reduce database load.

  • Consider database sharding to manage large datasets effectively.

  • Employ CDNs (Content Delivery Networks) to serve static content ...

View all Technical Architect interview questions

Experian Interview Experiences

23 interviews found

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

I applied via LinkedIn and was interviewed in Jun 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Java coding questions, basic Java questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Java basics questions.
  • Q2. Live coding.
Round 3 - Technical 

(2 Questions)

  • Q1. Discussion on previous experience and projects.
  • Q2. System design question
Round 4 - Technical 

(2 Questions)

  • Q1. Questions on SQL, Java advanced, personal projects, Java frameworks, UI based questions, Agile methodologies.
  • Q2. Interview discussion with the whole team.
Round 5 - HR 

(2 Questions)

  • Q1. Benefits discussion.
  • Q2. Salary discussion.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

SQL Joins and Window functions in SQL
Asked about Stored Procedures and implementations
Tableau LOD's
Tableau Parameters

Interview Preparation Tips

Topics to prepare for Experian Data Management Analyst interview:
  • SQL
  • Database
  • Tableau
  • Excel
Interview preparation tips for other job seekers - Freshen up on the most anticipated questions in SQL and Tableau. Do not skip on the key topics and expect a question or two about coding
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Code singleton design pattern in java
  • Ans. 

    Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Create a private static instance of the class

    • Provide a public static method to access the instance

    • Ensure the constructor is private to prevent instantiation of multiple objects

  • Answered by AI
  • Q2. 2 sum in java
  • Ans. 

    2 sum problem in Java involves finding two numbers in an array that add up to a specific target value.

    • Use a HashMap to store the difference between the target value and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the HashMap.

    • Return the indices of the two numbers that add up to the target value.

  • Answered by AI
  • Q3. How to make a class immutable
  • Ans. 

    To make a class immutable, ensure that its state cannot be changed after instantiation.

    • Make all fields private and final

    • Do not provide setter methods

    • Ensure that any mutable objects within the class are also made immutable

  • Answered by AI
  • Q4. Async annotation
  • Q5. Spring-starter dependencies
Round 2 - One-on-one 

(3 Questions)

  • Q1. What is cyclomacic complexity
  • Ans. 

    Cyclomatic complexity is a software metric used to measure the complexity of a program.

    • It measures the number of linearly independent paths through a program's source code.

    • It helps in identifying complex code that may be difficult to maintain or test.

    • A higher cyclomatic complexity indicates a higher risk of errors and bugs in the code.

    • It is calculated using the formula: E - N + 2P, where E is the number of edges, N is ...

  • Answered by AI
  • Q2. Simple output questions based on inheritance
  • Q3. OWASP top 10 security vulnerabilities

Interview Preparation Tips

Topics to prepare for Experian Senior Java Developer interview:
  • Collections
Interview preparation tips for other job seekers - Prepare based on role. If you apply for java developer role, focus more on java concepts than DSA

Skills evaluated in this interview

Interview Questions & Answers

user image GATLA VINAY KUMAR

posted on 18 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. API AUTOMATION using rest assured
Round 2 - Technical 

(1 Question)

  • Q1. What the role in project as SDET
Round 3 - HR 

(1 Question)

  • Q1. Expectations and Behavioral questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer with confidence

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Best practices while integrating SAST in CI/CD?
  • Ans. 

    Implementing SAST in CI/CD requires careful planning and integration to ensure security vulnerabilities are caught early in the development process.

    • Integrate SAST tools directly into the CI/CD pipeline to scan code automatically during the build process.

    • Set up alerts and notifications for developers to address security findings promptly.

    • Regularly update SAST tools and configurations to keep up with new vulnerabilities ...

  • Answered by AI
  • Q2. How would you deal with developer push back for security issues?
  • Ans. 

    Address concerns with empathy, provide education on security risks, offer solutions, collaborate on finding a compromise.

    • Listen to their concerns and understand their perspective.

    • Educate them on the potential security risks and consequences of not addressing the issues.

    • Offer alternative solutions or workarounds that meet both security and development needs.

    • Collaborate with the developers to find a compromise that ensur...

  • Answered by AI

Skills evaluated in this interview

Dot Net Lead Interview Questions & Answers

user image Anonymous

posted on 10 Sep 2024

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Authentication flow
  • Q2. Authorization Flow
  • Q3. 1 DSA question to find a leading number in a set of numbers
  • Ans. 

    A leading number in a set is the first number that is greater than all numbers to its left.

    • A leading number is defined as a number that is greater than all the numbers before it in the array.

    • Example: In the array [1, 3, 2, 5, 4], the leading numbers are 1, 3, and 5.

    • To find leading numbers, iterate through the array while keeping track of the maximum number seen so far.

    • If the current number is greater than the maximum, ...

  • Answered by AI
  • Q4. Repository pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Please go through the .net concepts well.
Be prepared to tell the past projects you worked on well.

Interview Questions & Answers

user image Anonymous

posted on 30 Sep 2024

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

It was mixed Aptitude and Programming question

Round 2 - One-on-one 

(2 Questions)

  • Q1. Programming Question
  • Q2. Java Interview Question
Interview experience
2
Poor
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via LinkedIn and was interviewed in Jul 2023. 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 - Coding Test 

1. One question regarding the MaxPartitions for a given array, if array is [4, 3, 2, 6 , 5, 10, 9] => upon sorting it appears like [2, 3, 4, 5, 6, 7, 9, 10] ..Max slices are [2,3,4] [5, 6] [9, 10] so slice count is 3

2. Another one Max integer upon removal 5 digit

Round 3 - Technical 

(1 Question)

  • Q1. Two technical rounds happened 1. One technical round : It was all about the Architecture , Design patterns on Microservices like CircuitBreaker etc and also security concepts, 2. Another technical round...

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview of 2 hours each which is more than expected time and Interviewers were unable to judge properly or efficiently and On the last day was told that you are not right fitment, Actually the role is for Desktop applications and interviewers are expecting to have all the design experience, Felt so disappointed as Hiring manager was not interested to proceed and Status of the Interview was not shared properly it was positive but not proceeding further it was mixed up
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. System Design question relating scale the services
  • Ans. 

    Design a scalable system to handle increasing user demand efficiently.

    • Use microservices architecture to allow independent scaling of components.

    • Implement load balancers to distribute traffic evenly across servers.

    • Utilize caching mechanisms (e.g., Redis, Memcached) to reduce database load.

    • Consider database sharding to manage large datasets effectively.

    • Employ CDNs (Content Delivery Networks) to serve static content close...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Package. Skillset Reason for leaving
Round 2 - One-on-one 

(1 Question)

  • Q1. About current job, reason for leaving
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic introduction and some technical questions

Experian Interview FAQs

How many rounds are there in Experian interview?
Experian interview process usually has 2 rounds. The most common rounds in the Experian interview process are Technical, One-on-one Round and HR.
How to prepare for Experian 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 Experian. The most common topics and skills that interviewers at Experian expect are Agile, Python, SQL, Automation and Linux.
What are the top questions asked in Experian interview?

Some of the top questions asked at the Experian interview -

  1. How would you deal with developer push back for security issu...read more
  2. Find duplicates in a string and count repeated lette...read more
  3. what is Angular Intercept...read more
How long is the Experian interview process?

The duration of Experian 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

3.8/5

based on 21 interview experiences

Difficulty level

Easy 8%
Moderate 75%
Hard 17%

Duration

Less than 2 weeks 54%
2-4 weeks 31%
4-6 weeks 8%
More than 8 weeks 8%
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.2
 • 804 Interviews
FIS Interview Questions
3.9
 • 504 Interviews
PayPal Interview Questions
3.8
 • 225 Interviews
Fiserv Interview Questions
2.9
 • 181 Interviews
Visa Interview Questions
3.5
 • 146 Interviews
MasterCard Interview Questions
3.9
 • 145 Interviews
Revolut Interview Questions
2.6
 • 104 Interviews
TransUnion Interview Questions
3.9
 • 93 Interviews
CapitalOne Interview Questions
3.7
 • 81 Interviews
View all

Experian Reviews and Ratings

based on 137 reviews

3.7/5

Rating in categories

3.6

Skill development

3.8

Work-life balance

3.9

Salary

3.6

Job security

3.8

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 137 Reviews and Ratings
Explore more jobs
Senior Software Engineer
127 salaries
unlock blur

₹22 L/yr - ₹35.6 L/yr

Software Engineer
76 salaries
unlock blur

₹14 L/yr - ₹26 L/yr

IT Analyst ITA
37 salaries
unlock blur

₹15.9 L/yr - ₹21 L/yr

Senior Consultant
32 salaries
unlock blur

₹32.2 L/yr - ₹50 L/yr

Staff Engineer
28 salaries
unlock blur

₹29.4 L/yr - ₹46 L/yr

Explore more salaries
Compare Experian with

Paytm

3.2
Compare

FIS

3.9
Compare

Fiserv

2.9
Compare

Broadridge Financial Solutions

3.9
Compare
write
Share an Interview