Upload Button Icon Add office photos

Filter interviews by

TransUnion Java Full Stack Developer Interview Questions, Process, and Tips

Updated 1 Mar 2024

TransUnion Java Full Stack Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. Java vs Javascript , Meaning of Synchronization in Java , Multihreading in Js
  • Ans. 

    Java is a backend language, Javascript is a frontend language. Synchronization in Java ensures only one thread can access a resource at a time. JavaScript is single-threaded but can handle asynchronous operations using callbacks, promises, and async/await.

    • Java is a backend language used for server-side development, while JavaScript is a frontend language used for client-side scripting.

    • Synchronization in Java is a techn...

  • Answered by AI
  • Q2. Write a pojo class to display the Employee Details,Pojo vs Bean
  • Ans. 

    A Pojo class is a simple Java class that contains only private fields, public getters and setters, and no-arg constructor.

    • Create private fields for employee details like name, id, salary, etc.

    • Generate public getters and setters for each field.

    • Include a no-arg constructor in the class.

    • Example: public class Employee { private String name; private int id; public String getName() { return name; } public void setName(String...

  • Answered by AI
  • Q3. How to to compare two objects with same class (equals & Hashcode methods)
  • Ans. 

    To compare two objects with the same class, override the equals and hashCode methods in the class.

    • Override the equals method to compare the fields of the objects for equality.

    • Override the hashCode method to generate a unique hash code based on the object's fields.

    • Ensure that the equals and hashCode methods are consistent with each other.

    • Example: public class Person { private String name; private int age; }

  • Answered by AI
  • Q4. Springboot questions basics like How to connect to 2 databases at a time How to change the table name in entity class(@Table)
  • Q5. JPA Repository inbuilt methods
  • Ans. 

    JPA Repository provides inbuilt methods for common database operations in Spring applications.

    • JPA Repository provides methods like save(), findById(), findAll(), deleteById(), etc.

    • These methods help in performing CRUD operations on entities without writing custom queries.

    • For example, userRepository.save(user) saves a user entity to the database.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Speed and distance, boat and stream

Round 2 - Technical 

(1 Question)

  • Q1. What is the difference between the DELETE and TRUNCATE commands in SQL?
  • Ans. 

    DELETE command removes specific rows from a table, while TRUNCATE command removes all rows from a table.

    • DELETE command is used to remove specific rows from a table based on a condition.

    • TRUNCATE command is used to remove all rows from a table, resetting auto-increment values.

    • DELETE command is slower as it logs individual row deletions, while TRUNCATE is faster as it does not log individual deletions.

    • DELETE can be rolled...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Why do you want to leave your current workplace?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Based on your tech skills mentioned in your resume
Round 2 - HR 

(1 Question)

  • Q1. About the company and compensation

Interview Preparation Tips

Interview preparation tips for other job seekers - A very good company you can learn and grow faster
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

30 mins round and 1 coding question

Round 2 - Assignment 

Development of a feature

Interview Preparation Tips

Interview preparation tips for other job seekers - company is having helpful people
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Speed and distance, boat and stream

Round 2 - Technical 

(1 Question)

  • Q1. What is the difference between the DELETE and TRUNCATE commands in SQL?
  • Ans. 

    DELETE command removes specific rows from a table, while TRUNCATE command removes all rows from a table.

    • DELETE command is used to remove specific rows from a table based on a condition.

    • TRUNCATE command is used to remove all rows from a table, resetting auto-increment values.

    • DELETE command is slower as it logs individual row deletions, while TRUNCATE is faster as it does not log individual deletions.

    • DELETE can be rolled...

  • Answered by AI

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Design pattern
  • Q2. Throw ,throw ex, throw new exception differences
  • Q3. Difference between ref and out
  • Ans. 

    Ref and out are both used to pass arguments by reference in C#. Ref is bidirectional while out is unidirectional.

    • Ref is used to pass a variable by reference and can be read and modified within the method.

    • Out is used to pass a variable by reference and must be assigned a value within the method.

    • Ref can be used to pass a variable as an argument to a method and return a value.

    • Out is used to return multiple values from a m...

  • Answered by AI
  • Q4. Action and func
  • Q5. Can we use async without await
  • Ans. 

    Yes, async can be used without await.

    • Async functions return a promise, which can be handled without using await.

    • Using async without await can be useful for error handling or logging.

    • However, it is important to handle the promise returned by the async function.

  • Answered by AI
  • Q6. Property vs variable
  • Ans. 

    A property is a value associated with an object, while a variable is a named storage location for a value.

    • Properties are accessed using dot notation or bracket notation

    • Variables are declared using keywords like var, let, or const

    • Properties are defined within an object literal or added to an object dynamically

    • Variables can be reassigned to different values

    • Example: object.property vs var variableName

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare well on technical part

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Data structure and Algorithm leetcode medium type question
  • Q2. Multi Threading and collection framework in java
  • Ans. 

    Multi-threading allows concurrent execution of multiple threads. Collection framework provides a set of interfaces and classes for storing and manipulating data.

    • Multi-threading improves performance by utilizing multiple cores of CPU

    • Collection framework provides interfaces like List, Set, Map for storing data

    • Java provides synchronized collections for thread-safe operations

    • ConcurrentHashMap is a thread-safe implementatio

  • Answered by AI

Skills evaluated in this interview

TransUnion Interview FAQs

How many rounds are there in TransUnion Java Full Stack Developer interview?
TransUnion interview process usually has 1 rounds. The most common rounds in the TransUnion interview process are One-on-one Round.
How to prepare for TransUnion Java Full Stack Developer 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 Java, HTML, Javascript, Linux and Microservices.
What are the top questions asked in TransUnion Java Full Stack Developer interview?

Some of the top questions asked at the TransUnion Java Full Stack Developer interview -

  1. How to to compare two objects with same class (equals & Hashcode metho...read more
  2. Write a pojo class to display the Employee Details,Pojo vs B...read more
  3. Java vs Javascript , Meaning of Synchronization in Java , Multihreading in...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 752 Interviews
FIS Interview Questions
3.9
 • 470 Interviews
PayPal Interview Questions
3.9
 • 206 Interviews
Fiserv Interview Questions
3.2
 • 166 Interviews
Visa Interview Questions
3.6
 • 135 Interviews
MasterCard Interview Questions
4.0
 • 130 Interviews
CAMS Interview Questions
3.7
 • 109 Interviews
View all

Fast track your campus placements

View all
Senior Analyst
227 salaries
unlock blur

₹7.5 L/yr - ₹23 L/yr

Analyst
201 salaries
unlock blur

₹5 L/yr - ₹12.5 L/yr

Developer
157 salaries
unlock blur

₹9.1 L/yr - ₹28.6 L/yr

Developer Associate
149 salaries
unlock blur

₹5.9 L/yr - ₹15 L/yr

Consultant
107 salaries
unlock blur

₹10 L/yr - ₹33.4 L/yr

Explore more salaries
Compare TransUnion with

CIBIL

4.3
Compare

Experian

3.9
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