Upload Button Icon Add office photos

Filter interviews by

Experian Senior Software Engineer Interview Questions and Answers

Updated 28 Dec 2024

Experian Senior Software Engineer Interview Experiences

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

Senior Software Engineer Jobs at Experian

View all

Interview questions from similar companies

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

Coding round with 3 different programs, where we need to pass test cases

Round 2 - Technical 

(2 Questions)

  • Q1. Basic Javascript questions
  • Q2. Advanced javascript questions
Round 3 - Technical 

(2 Questions)

  • Q1. Advanced javascript questions
  • Q2. Project related questions
Round 4 - Behavioral 

(2 Questions)

  • Q1. Understanding project and your role
  • Q2. Understanding your impact on current project
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Referral and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Data structures and algo. 2 ques were asked in hackerrank

Round 2 - One-on-one 

(1 Question)

  • Q1. Questions related to System design
Round 3 - One-on-one 

(1 Question)

  • Q1. Basic question related to Spring and Java
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. What are SSL certificates?
  • Ans. 

    SSL certificates are digital certificates that authenticate the identity of a website and encrypt information sent to the server.

    • SSL certificates ensure secure communication between a user's browser and a website's server.

    • They use encryption to protect sensitive data such as login credentials, credit card information, etc.

    • SSL certificates are issued by Certificate Authorities (CAs) and contain information about the web...

  • Answered by AI
  • Q2. What are the ways to secure REST API?
  • Ans. 

    Securing REST API involves using authentication, authorization, encryption, and input validation.

    • Use authentication methods like OAuth, JWT, or API keys to verify the identity of clients.

    • Implement authorization to control access to resources based on user roles and permissions.

    • Encrypt data transmission using HTTPS to protect sensitive information from being intercepted.

    • Validate and sanitize input data to prevent inject

  • Answered by AI
  • Q3. What if your application is down for 1 hour in one site in prod?
  • Ans. 

    I would investigate the root cause, work on fixing the issue, and implement measures to prevent it from happening again.

    • Investigate the root cause of the downtime, such as network issues, server failures, or software bugs

    • Work on fixing the issue promptly to minimize impact on users and business operations

    • Implement measures to prevent similar downtime in the future, such as redundancy, monitoring, and failover mechanism

  • Answered by AI
  • Q4. How do you make sure a throttling system process dropped messages from a slow downstream service?
  • Ans. 

    Implement a throttling system to handle dropped messages from a slow downstream service.

    • Implement a queue to store messages from the downstream service.

    • Set a maximum queue size and drop messages when the queue is full.

    • Use a timestamp to track when messages were received and process them in order.

    • Implement a retry mechanism to reprocess dropped messages after a certain time.

    • Monitor the queue size and processing speed to

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Given two sorted arrays, a (m elements, size m+n) and b (n elements, size n) merge both the arrays into the first array a.
  • Ans. 

    Merge two sorted arrays into the first array

    • Start from the end of both arrays and compare elements

    • Place the larger element at the end of the first array

    • Continue this process until all elements are merged

  • Answered by AI
  • Q2. Given a monolith architecture, how would you scale it to handle 3x the traffic and also improve response time on API's during peak hours by using cache
  • Ans. 

    To scale a monolith architecture and improve response time, use horizontal scaling and implement caching.

    • Implement horizontal scaling by adding more instances of the monolith application behind a load balancer

    • Use a distributed cache to store frequently accessed data and reduce database queries

    • Implement caching at different levels such as application-level caching, database query caching, and HTTP response caching

    • Use a ...

  • Answered by AI
  • Q3. Class design for a cache implementation, implement get(), put(), initialization methods
  • Ans. 

    Design a cache class with get(), put(), and initialization methods.

    • Define a class with a data structure to store key-value pairs.

    • Implement a get() method to retrieve a value from the cache based on a given key.

    • Implement a put() method to add or update a key-value pair in the cache.

    • Implement an initialization method to set the initial capacity and eviction policy of the cache.

    • Consider using a hash map or a linked list t...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Visa Senior Software Engineer interview:
  • Arrays
  • Trees

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Feb 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Coding assessment in Code signal which is vedio proctored

Round 2 - Technical 

(1 Question)

  • Q1. Design a loan application system
  • Ans. 

    Design a loan application system

    • Collect applicant information such as personal details, employment history, and financial information

    • Include a credit check process to assess applicant's creditworthiness

    • Implement a system for loan approval/rejection based on set criteria

    • Provide options for different types of loans and repayment plans

    • Ensure security measures are in place to protect applicant's sensitive information

  • Answered by AI
Round 3 - Coding Test 

Bank account creation, deposit money, withdraw money

Round 4 - HR 

(1 Question)

  • Q1. Question around work experience and how a particular scenario or situation is handled
Round 5 - Case Study 

Suggest system cost optimization based on given data set

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is java multithreading
  • Ans. 

    Java multithreading is a feature that allows concurrent execution of multiple threads within a single process.

    • Multithreading in Java allows multiple threads to run concurrently within a single process.

    • Each thread has its own stack and executes independently, but shares the same memory space.

    • Java provides built-in support for multithreading through the java.lang.Thread class and java.lang.Runnable interface.

    • Multithreadi...

  • Answered by AI
  • Q2. Explain exception hierarchy
  • Ans. 

    Exception hierarchy is a way to organize and categorize different types of exceptions in a software system.

    • Exceptions are organized in a tree-like structure with a base class at the top and more specific exception classes below.

    • Base class usually is 'Exception' or 'Throwable', with more specific classes like 'IOException', 'NullPointerException', etc.

    • Subclasses can provide more specific information about the cause of t...

  • Answered by AI

Skills evaluated in this interview

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 was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. C++ 11, 14 Deep dive, Multi-threading etc

I applied via Walk-in and was interviewed in May 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Java basics questions and java basic answers waste interview maximum element in an array array merged opps concepts basic puzzels.
  • Q2. Opps concepts basic programs

Interview Preparation Tips

Interview preparation tips for other job seekers - donot join this company one of the worst company everseen

I applied via Approached by Company and was interviewed in Jun 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. All scenario based questions. Performance optimizaition of an API, Data Structure based questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well. It will be all your work wise interview. They will not ask what is on google if you have actually worked on such things only then you will be able to answer.

Experian Interview FAQs

How many rounds are there in Experian Senior Software Engineer interview?
Experian interview process usually has 5 rounds. The most common rounds in the Experian interview process are Technical, Coding Test and HR.
How to prepare for Experian Senior Software Engineer 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, SQL, Python, Unit Testing and Javascript.
What are the top questions asked in Experian Senior Software Engineer interview?

Some of the top questions asked at the Experian Senior Software Engineer interview -

  1. Questions on SQL, Java advanced, personal projects, Java frameworks, UI based q...read more
  2. Java basics questio...read more
  3. System design quest...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Experian interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Experian Senior Software Engineer Salary
based on 76 salaries
₹18 L/yr - ₹41 L/yr
89% more than the average Senior Software Engineer Salary in India
View more details

Experian Senior Software Engineer Reviews and Ratings

based on 7 reviews

3.7/5

Rating in categories

3.8

Skill development

4.0

Work-Life balance

4.0

Salary & Benefits

4.0

Job Security

4.0

Company culture

2.9

Promotions/Appraisal

3.2

Work Satisfaction

Explore 7 Reviews and Ratings
Senior Software Engineer (Backend .net)

Hyderabad / Secunderabad

2-5 Yrs

Not Disclosed

Senior Software Engineer - FrontEnd

Hyderabad / Secunderabad

2-6 Yrs

Not Disclosed

Senior Software Engineer - Java

Hyderabad / Secunderabad

2-6 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
76 salaries
unlock blur

₹18 L/yr - ₹41 L/yr

Software Engineer
54 salaries
unlock blur

₹11 L/yr - ₹23.3 L/yr

Business Analyst
28 salaries
unlock blur

₹7 L/yr - ₹26.6 L/yr

Sales Manager
21 salaries
unlock blur

₹11.6 L/yr - ₹28 L/yr

Staff Engineer
21 salaries
unlock blur

₹28 L/yr - ₹42.3 L/yr

Explore more salaries
Compare Experian with

CIBIL

4.3
Compare

Credit Information Bureau

3.8
Compare

Equifax

3.4
Compare

Crif High Mark Credit Information Services

3.3
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview