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
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Java principals
  • Q2. Basic problem solvings
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Experience in ReactJS
  • Ans. 

    I have 2 years of experience in ReactJS, including building interactive user interfaces and integrating with backend services.

    • Developed a responsive web application using ReactJS, Redux, and Material-UI

    • Implemented RESTful APIs to fetch and update data in the application

    • Utilized React Router for client-side routing and navigation

    • Worked on optimizing performance by using memoization and lazy loading techniques

  • Answered by AI
  • Q2. Experience in Spring Boot

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Sal queries simeple data structure question finding largest number in am array.
  • Q2. Solid principal

Interview Preparation Tips

Interview preparation tips for other job seekers - Simply waste of time they asked me 3-4 questions and didn't responded .
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Java principals
  • Q2. Basic problem solvings
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It will be a basic maths questions.

Round 2 - Group Discussion 

As a general topic of trend in world.

Round 3 - Coding Test 

To be known for programming knowledge about us.

Round 4 - Technical 

(2 Questions)

  • Q1. Programming oridanited
  • Q2. Skill knowledge questions
Round 5 - HR 

(2 Questions)

  • Q1. Tell me about your self.
  • Q2. Family background .

Interview Preparation Tips

Interview preparation tips for other job seekers - pls don't stress the candidate to suffer as high .
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Experience in ReactJS
  • Ans. 

    I have 2 years of experience in ReactJS, including building interactive user interfaces and integrating with backend services.

    • Developed a responsive web application using ReactJS, Redux, and Material-UI

    • Implemented RESTful APIs to fetch and update data in the application

    • Utilized React Router for client-side routing and navigation

    • Worked on optimizing performance by using memoization and lazy loading techniques

  • Answered by AI
  • Q2. Experience in Spring Boot

Skills evaluated in this interview

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. Longest Palindromic Subsequence

    You have been given a string ‘A’ consisting of lower case English letters. Your task is to find the length of the longest palindromic subsequence in ‘A’.

    A subsequence is ...

  • Ans. Recursive Approach

    The main idea behind this approach is to use recursion. The idea is to compare the first character of the string A[i..j] with its last character. There are two possibilities:

    1. If the first character of the string is the same as the last character, we include first and last characters in the palindrome and do a recursive call for the remaining substring A[i + 1, j - 1].
    2. If the last character of the string...
  • Answered by CodingNinjas
  • Q2. Word Pattern

    You have been given two strings 'S' and ‘T’. Your task is to find if ‘S’ follows the same pattern as ‘T’.

    Here follow means a full match, i.e. there is a bijection between a letter o...

  • Ans. Hashmap

    We will use two hashmaps ‘charToWord’ and ‘wordToChar’ to track which character of ‘T’ maps to which word of ‘S’ and which word of ‘S’ maps to which character of ‘T’,  respectively.

     

    Here is the algorithm:

    1. We initialise two hashmaps ‘charToWord’ and ‘wordToChar’.
    2. We scan each character-word pair
      1. If the character is not present in ‘charToWord’ 
        1. If the word is already present in ‘wordToChar’ 
          1. Return ...
  • Answered by CodingNinjas
Round 2 - Video Call 

(3 Questions)

Round duration - 40 Minutes
Round difficulty - Easy

  • Q1. Level Order Traversal

    You have been given a Binary Tree of integers. You are supposed to return the level order traversal of the given tree.

    For example:
    For the given binary tree
    

    The level order tra...

  • Ans. Breadth First Search

    In the level order traversal, we will be using queue data structure which has the property FIRST IN FIRST OUT that’s why which nodes come first in current level the children of that node will also come first for the next level. So, we visit all the nodes one by one of the current level and push into the queue so that when we will be complete with the current level, then we can start exploring nodes ...

  • Answered by CodingNinjas
  • Q2. Next Greater Node In Linked List

    Ninjas are often known for their superhuman strength and valour. In a given set of linked ninja villages of different clans, their strongest ninjas want to know whether the...

  • Ans. Brute Force

    We will iterate through the given linked list of elements (nodes) with the help of two nested loops. Where we will check for every node whether there exists a next node with a value bigger than the value of current node and subsequently build the ‘ans’ list (array) and return it.

     

    The algorithm will be-

     

    1. We will run a loop for the starting node (head) of the given linked list.
    2. From every node we will ...
  • Answered by CodingNinjas
  • Q3. Technical Questions

    What is the difference between MongoDB and MySQL? 

    If you remove an object attribute, is it deleted from the database?

    Why is Node.js Single-threaded?

    What is piping in Node.js?

    What is...

Round 3 - HR 

(1 Question)

Round duration - 15 Minutes
Round difficulty - Easy

  • Q1. Basic HR Questions

    What do you know about mastercard?
    Are you free to relocate after lockdown ends?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Full Stack Engineer in PuneEligibility criteriaAbove 7 CGPA, Resume shortlisting on the basis of projectsMasterCard interview preparation:Topics to prepare for the interview - Data Structure, Algorithms, JavaScript, HTML/CSS, ReactTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Be consistent, practice regularly whatever you read/study.
Tip 2 : Apply what you learn through code.

Application resume tips for other job seekers

Tip 1 : Have some projects on your resume.
Tip 2 : If you have an internship or training explain it in a proper way like what are the techniques you learned during your training.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Jul 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

This was a coding round conducted from 12 PM to 2 PM and it was not proctored but we could not switch the tabs. There were 2 coding questions each of 100 marks. The MCQ had HTML,CSS, JS, SQL, Coding and aptitutude questions.

  • Q1. N Queens

    You are given an integer 'N'. For a given 'N' x 'N' chessboard, find a way to place 'N' queens such that no queen can attack any other queen on the chessboard.

    A ...

  • Ans. Backtracking
    1. Instead of checking all the places on the chessboard, we can use backtracking and place queen row-wise or column-wise.
    2. Suppose we place queens row-wise, and we start with the very first row. Place the queen and move to the next row until either there is a solution or there are no viable cells left.
    3. As we backtrack, check to place the queen in the different columns of the same row.
    4. When we can place a queen at ...
  • Answered by CodingNinjas
  • Q2. Rearrange String

    You are given a string “S”. Your task is to rearrange the characters of a string “S”, such that it does not contain any two adjacent characters which are the same.

    If it is possible to r...

  • Ans. Brute force

    In this approach, we will generate all the possible rearrangements of the string and check if the current string in our rearrangement does not have any two adjacent characters that are the same. If we can find any string which satisfies our criteria then we will return that string else we will return “not possible”.

     

    We can implement the above approach by – 

    1. Generate all permutations of a string.
    2. For ...
  • Answered by CodingNinjas
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

There were two interviewers. They started by asking me to introduce myself and asked me to explain any one of my projects in my resume and after that, they asked me about the ML algorithms used in my project and about the difficulties faced. What is NaN property in JavaScript? This took around 10 minutes. They also asked 2 coding questions.
It was conducted at 10 AM on CodePair and MS Teams. Interviewers were friendly.

  • Q1. Group Anagrams Together

    You have been given an array/list of strings 'STR_LIST'. You are supposed to return the strings as groups of anagrams such that strings belonging to a particular group are a...

  • Ans. Sorting based Approach

    The idea behind this approach is that two or more than two strings are anagrams if and only if their sorted strings are equal. So we will use a HashMap, let’s say “anagramGroup”, where each key is a sorted string, and the key will be mapping to the list of indices from the given list of strings that form a group of anagrams. This means that if we sort the strings at those indices, we will get the ...

  • Answered by CodingNinjas
  • Q2. Friends Pairing Problem

    You are given an integer ‘N’, which denotes there are ‘N’ friends. You are supposed to form some pairs them satisfying the following conditions:

    1. Each friend can be paired with ...

  • Ans. Bruteforce

    The idea is to solve the problem using recursion and break down the problem into different subproblems.

    Let’s define NUMBER_OF_WAYS(N) as the total number of ways ‘N’ friends can be paired up or remain single.

    The N-th person has two choices - either remain single or pair up with one of the other ‘N - 1’ friends.

    If he remains single, then the number of possible pairings are NUMBER_OF_WAYS(N - 1) as there are (N...

  • Answered by CodingNinjas
Round 3 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

There were 2 questions based on data structures, the round started from 1.15 PM .Some SQL questions like What is a Subquery? What are its types? What are UNION, MINUS and INTERSECT commands?

  • Q1. Vertical Order Traversal

    The Ultimate Ninja Ankush is a straightforward, no-nonsense guy and loves binary Trees, and he has given you a binary tree, and you have to return the vertical order traversal of t...

  • Ans. Efficient Approach

    The intuition is to find the breadth of the tree first so that we can beforehand know the maximum horizontal distance and minimum horizontal distance of a node from the root node. We can use the absolute value of minimum horizontal distance as an offset. Now we can use an array/list visited to store the visited nodes where ith element will store the node at (i - offset”) distance horizontally from the...

  • Answered by CodingNinjas
  • Q2. Divide Two Integers

    You are given two integers ‘dividend’ and ‘divisor’. You are required is to divide the integers without using multiplication, division and modular operators. Your task is to return the ...

  • Ans. Using Subtraction

    We can subtract the divisor from the dividend until the dividend is greater than the divisor. The quotient will be equal to the number of total subtractions performed.

     

    Below is the detailed algorithm:

     

    1. Store the ‘IS_DIVIDEND_NEGATIVE = false’ and ‘IS_DIVISOR_NEGATIVE = false’.
    2. Check if the ‘DIVIDEND’ and ‘DIVISOR’ are positive or negative and update the values of ‘IS_DIVIDEND_NEGATIVE’ and ...
  • Answered by CodingNinjas
Round 4 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

The round was at 7.30 PM and I was asked to introduce myself and we had basic talk on where I live and my interests. I asked about the work culture and about the role at the end.

  • Q1. Puzzle

    He showed a puzzle where n-balloons were there and I had to burst maximum balloons using an arrow.

  • Ans. 

    This was basically finding a maximum number of points in a line. I coded that but he wanted an improved solution. He told me to assume the positions of balloons in a matrix where 1 represents if the balloon is present and vice versa. Then I had to find which row or column or diagonal had the maximum number of 1’s. Later he asked me if I had some questions.

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from VIT University. I applied for the job as Fullstack Developer in ChennaiEligibility criteriaPercentage Criteria in X and XII: 85% or 8.5 CGPA, Pursuing Degree: 85% or 8.5 CGPA, No Standing ArrearsPaypal interview preparation:Topics to prepare for the interview - Trees, Graphs, Dynamic Programming, Arrays, StacksTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 400 questions of leetcode topics wise.
Tip 2 : Participate in hackathons.
Tip 3 : Have 2 good projects atleast and be very good in project concepts.

Application resume tips for other job seekers

Tip 1 : Have good projects in your resume and have clear idea of what you have done in those.
Tip 2 : Mention languages, frameworks, subjects only when you have proper hold on them, don't mention things you don't know properly.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. React questions How do you organize code in react (components, containers, separation of logic) ? MVC patterns UI design Finding local maxima in series of numbers
  • Q2. Basics of HTML, CSS, Javascript css transform properties implement redux publish subscribe model
  • Q3. Singleton pattern Few algorithmic questions Anagram problems Design patterns
  • Q4. JSON.stringify implementation Problem solving methodology Array - sorting and finding maxium related problem middlewares in node js

Interview Preparation Tips

Round: Test
Experience: Hacker rank testing round

The questions were based on dynamic programming


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
230 salaries
unlock blur

₹7.1 L/yr - ₹21.6 L/yr

Analyst
198 salaries
unlock blur

₹5 L/yr - ₹13.5 L/yr

Developer Associate
145 salaries
unlock blur

₹5.9 L/yr - ₹15 L/yr

Developer
141 salaries
unlock blur

₹7.4 L/yr - ₹25 L/yr

Consultant
105 salaries
unlock blur

₹10 L/yr - ₹36 L/yr

Explore more salaries
Compare TransUnion with

CIBIL

4.3
Compare

Experian

3.9
Compare

Equifax

3.3
Compare

Crif High Mark Credit Information Services

3.4
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