Upload Button Icon Add office photos

Filter interviews by

TransUnion Software Engineer Interview Questions and Answers

Updated 21 Sep 2023

TransUnion Software Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

2 coding qns and aptitude

Round 2 - Technical 

(2 Questions)

  • Q1. Question from resume, projects, SQL, OOPS
  • Q2. Lambda function in python
  • Ans. 

    Lambda function in Python is an anonymous function that can have any number of arguments, but can only have one expression.

    • Lambda functions are defined using the lambda keyword.

    • They are commonly used for small, one-time tasks.

    • They can take any number of arguments, but can only have one expression.

    • Example: lambda x: x*2 will return the double of x.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to work for this company

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Dsa questions related to project
  • Q2. Project based q and a
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Basics of Java OOPS
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. C++ fundamental
  • Q2. Reverse linked list
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write code of palindrome
  • Ans. 

    Code to check if a given string is a palindrome or not.

    • Create a function that takes a string as input

    • Remove all non-alphanumeric characters and convert to lowercase

    • Compare the original string with its reverse to check for palindrome

  • Answered by AI
  • Q2. How to pass data in angular from component to component
  • Ans. 

    Data can be passed in Angular from component to component using input properties, output properties, services, and state management libraries like NgRx.

    • Use @Input decorator to pass data from parent to child component

    • Use @Output decorator to emit events from child to parent component

    • Use services to share data between components

    • Use state management libraries like NgRx for complex data sharing scenarios

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(5 Questions)

  • Q1. Write a program Binary Search?
  • Ans. 

    Binary search is a divide and conquer algorithm that efficiently finds the target value within a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the middle index and compare the target value with the middle element.

    • If the target value is less than the middle element, search the left subarray. If greater, search the right subarray.

    • Repeat the process until the target value is found or the s

  • Answered by AI
  • Q2. What isCICD flow?
  • Ans. 

    CI/CD flow stands for Continuous Integration/Continuous Deployment flow, which is a software development practice where code changes are automatically built, tested, and deployed.

    • CI/CD flow involves automating the process of integrating code changes into a shared repository, running automated tests, and deploying the changes to production.

    • Continuous Integration (CI) focuses on automating the build and testing of code c...

  • Answered by AI
  • Q3. How to handle Enum feature?
  • Ans. 

    Enums are a feature in programming languages that allow you to define a set of named constants.

    • Enums can be used to improve code readability by giving meaningful names to values

    • Enums can be used in switch statements to handle different cases

    • Enums can have associated values or raw values for more flexibility

  • Answered by AI
  • Q4. Singleton handles the Syncronized ?
  • Ans. 

    Yes, Singleton handles synchronization by ensuring only one instance of a class is created and providing global access to that instance.

    • Singleton pattern restricts the instantiation of a class to one object.

    • It provides a global point of access to the instance.

    • Synchronization can be implemented in the Singleton pattern to ensure thread safety.

    • Example: Singleton pattern is commonly used in database connections to ensure

  • Answered by AI
  • Q5. What are external Libraries are used in project?
  • Ans. 

    External libraries are pre-written code that can be imported and used in a project to provide additional functionality.

    • External libraries help in reducing development time by providing ready-made solutions for common tasks.

    • Examples include React for front-end development, NumPy for scientific computing in Python, and Retrofit for making network calls in Android apps.

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Basic questions from oops, collections and springboot, basic queries.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(3 Questions)

  • Q1. Basics quotation on informatica
  • Q2. Basic questions on sql
  • Q3. Basic questions on oracle
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Mar 2023. There were 4 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 - Technical 

(3 Questions)

  • Q1. Basics about big data tools. Use case on Pyspark. How to add the new column and what is AQE benefits and Delta table optimisation tenchiques.
  • Q2. Basics about Azure resources like ADF, Azure Databricks. Explained the project architecture and sone questions on that.
  • Q3. Pyspark optimisation techniques explain and write scd type 2 sample code.
  • Ans. 

    Optimisation techniques in Pyspark and sample code for SCD type 2

    • Use broadcast variables to reduce data shuffling

    • Partition data based on key columns to improve performance

    • Use cache() or persist() to avoid recomputing data

    • Use coalesce() or repartition() to reduce the number of partitions

    • For SCD type 2, use merge() function to update or insert new records

    • Example code for SCD type 2: https://github.com/awantik/pyspark-101

  • Answered by AI
Round 3 - Techno mangerial round 

(2 Questions)

  • Q1. How huge data your are working? What are toughest problem you faced and resolved it ?
  • Ans. 

    I have worked with huge data sets in the past.

    • I have experience working with data sets ranging from a few gigabytes to several terabytes.

    • One of the toughest problems I faced was optimizing a query that was taking too long to execute.

    • I resolved it by analyzing the query plan and identifying the bottleneck, then optimizing the query accordingly.

    • Another challenge I faced was dealing with data inconsistencies, which I reso...

  • Answered by AI
  • Q2. Explain you project architecture ? Show some sample codes of the same.
  • Ans. 

    Our project architecture follows a microservices approach with containerization using Docker and orchestration with Kubernetes.

    • We have divided our application into smaller, independent services that communicate with each other through APIs.

    • Each service is containerized using Docker, allowing for easy deployment and scaling.

    • We use Kubernetes for orchestration, which automates the deployment, scaling, and management of o...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Compensation decision and clear your doubts regarding organisation.

Interview Preparation Tips

Topics to prepare for Luxoft Software Engineer interview:
  • Pyspark
  • Adf
  • databricks
  • synapse
Interview preparation tips for other job seekers - Be confident with your are answers and strong in basic big data and azure.

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Unisys user image Vaishnavi Baswaraju

posted on 11 Oct 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

All multiple choices consisting of code output based questions and logical reasoning

Round 2 - Technical 

(2 Questions)

  • Q1. All about project
  • Q2. Explain in detail about your project

TransUnion Interview FAQs

How many rounds are there in TransUnion Software Engineer interview?
TransUnion interview process usually has 4 rounds. The most common rounds in the TransUnion interview process are Aptitude Test, Technical and HR.
How to prepare for TransUnion 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 TransUnion. The most common topics and skills that interviewers at TransUnion expect are Python, SQL, Automation, Hibernate and Coding.
What are the top questions asked in TransUnion Software Engineer interview?

Some of the top questions asked at the TransUnion Software Engineer interview -

  1. Lambda function in pyt...read more
  2. Question from resume, projects, SQL, O...read more

Tell us how to improve this page.

TransUnion Software Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Fast track your campus placements

View all
TransUnion Software Engineer Salary
based on 51 salaries
₹6.4 L/yr - ₹21.4 L/yr
45% more than the average Software Engineer Salary in India
View more details

TransUnion Software Engineer Reviews and Ratings

based on 7 reviews

4.5/5

Rating in categories

4.0

Skill development

4.5

Work-life balance

4.6

Salary

4.5

Job security

4.5

Company culture

4.5

Promotions

4.3

Work satisfaction

Explore 7 Reviews and Ratings
Senior Analyst
232 salaries
unlock blur

₹8 L/yr - ₹22 L/yr

Analyst
202 salaries
unlock blur

₹5 L/yr - ₹12.9 L/yr

Developer Associate
147 salaries
unlock blur

₹5.1 L/yr - ₹15 L/yr

Developer
146 salaries
unlock blur

₹7.4 L/yr - ₹24 L/yr

Consultant
111 salaries
unlock blur

₹10 L/yr - ₹33.4 L/yr

Explore more salaries
Compare TransUnion with

CIBIL

4.2
Compare

Experian

3.9
Compare

Equifax

3.3
Compare

Crif High Mark Credit Information Services

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