Upload Button Icon Add office photos

Filter interviews by

Truelancer Senior Java Developer Interview Questions and Answers

Updated 5 May 2023

Truelancer Senior Java Developer Interview Experiences

1 interview found

Senior Java Developer Interview Questions & Answers

user image Venkata Rammohan

posted on 5 May 2023

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

I applied via Job Portal and was interviewed in Apr 2023. There were 2 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 - One-on-one 

(4 Questions)

  • Q1. It is based on my experience on Java& other tech stack.Two were SQL,on Core Java, Hibernate, Spring security, Spring MVC, Spring data JPA, Coding using lambda,streams, Spring Boot, Spring based microservic...
  • Q2. One was a Client round as well. Very fast response and offer.
  • Q3. Manager round with the account manager. Every round was of 30-45 minutes.
  • Q4. Difference between caching levels, interfaces from JPA & Hibernate.
  • Ans. 

    Caching levels, interfaces from JPA & Hibernate differences

    • Caching levels are first level and second level cache in Hibernate

    • JPA interfaces are EntityManager, Query, CriteriaQuery, CriteriaBuilder

    • Hibernate interfaces are Session, Query, Criteria, CriteriaBuilder

    • JPA is a specification while Hibernate is an implementation of JPA

    • Hibernate provides additional features like HQL, Criteria API, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on your resume first,basics of all skills mentioned in your profile as you may get coding questions as well which is a deciding factor.

Interview questions from similar companies

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

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

Round 1 - Coding Test 

2 coding questions, Java

Round 2 - Assignment 

Create a website, 7 days

Interview Preparation Tips

Topics to prepare for Toptal Software Developer interview:
  • Java
  • Javascript
  • OOP
Interview preparation tips for other job seekers - Be yourself
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Coding Test 

General leet code questions

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

- simple basic ios questions

Round 2 - Technical 

(1 Question)

  • Q1. Asked DSA array questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well DSA and code
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Kadance algorithm and find the middle of the linklist

Round 2 - Coding Test 

More on java and Python based coding questions

Round 3 - HR 

(4 Questions)

  • Q1. Behavioural questions were asked
  • Q2. What are your expectations from this job
  • Q3. What are your plans ahead
  • Q4. Where do you see yourself in 5 years ahead

Interview Preparation Tips

Interview preparation tips for other job seekers - Do good practise of DSA
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Learn fundamentals, masted dsa and oop. after create 2 professional projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear the fundamentals
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Computer Fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Flatten a binary tree
  • Ans. 

    Flatten a binary tree by converting it into a linked list in-place.

    • Use a recursive approach to flatten the binary tree.

    • Traverse the tree in a pre-order manner and keep track of the previous node.

    • Set the left child of each node to null and the right child to the next node in the linked list.

    • Example: Input: 1 -> 2 -> 5 -> 3 -> 4 -> null, Output: 1 -> null -> 2 -> null -> 3 -> null -> 4 -> null -> 5 -> null

  • Answered by AI

Skills evaluated in this interview

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

Leecode medium level question

Round 2 - Coding Test 

Leetcode Hard level Question

Round 3 - Technical 

(1 Question)

  • Q1. This is cto round asked some interview questions

I appeared for an interview in Mar 2022.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

Formal Introduction.
Asked About Projects.
Difference between SQL and NoSQL. Pros and Cons. Where should we use SQL and NoSQL.
Given a problem, I have to make a SQL Database structure and then interviewer told me to convert it into NoSQL.
asked coding questions

  • Q1. 

    Search In Rotated Sorted Array Problem Statement

    Given a sorted array of distinct integers that has been rotated clockwise by an unknown amount, you need to search for a specified integer in the array. Fo...

  • Ans. 

    Implement a search function to find a specified integer in a rotated sorted array.

    • Implement a binary search algorithm to find the target integer in the rotated sorted array.

    • Handle the cases where the target integer may lie in the left or right half of the rotation.

    • Keep track of the mid element and adjust the search range based on the rotation.

    • Return the index of the target integer if found, else return -1.

  • Answered by AI
  • Q2. 

    Zigzag Binary Tree Traversal Problem

    Given a binary tree, compute the zigzag level order traversal of the node values in the tree. The zigzag traversal requires traversing levels from left to right, then ...

  • Ans. 

    Zigzag level order traversal of a binary tree is computed by alternating between left to right and right to left traversal at each level.

    • Use a queue to perform level order traversal of the binary tree.

    • Maintain a flag to switch between left to right and right to left traversal at each level.

    • Store the node values in a list while traversing and alternate the order based on the flag.

    • Example: For input 1 2 3 4 -1 5 6 -1 7 -...

  • Answered by AI

Interview Preparation Tips

Eligibility criterianaPark+ interview preparation:Topics to prepare for the interview - OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 5 MonthInterview preparation tips for other job seekers

Tip 1 : Prepare well for subjects
Tip 2 : Prepare for system design
Tip 3 : Practice coding

Application resume tips for other job seekers

Tip 1 : Don't lie on resume
Tip 2 : Just write in format that is catchy

Final outcome of the interviewRejected

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain hoisting in js
  • Ans. 

    Hoisting in JavaScript is the behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted to the top of their scope, but not their assignments.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q2. Explain closures in js
  • Ans. 

    Closures in JavaScript allow functions to access variables from their outer scope even after the outer function has finished executing.

    • Closures are created when a function is defined within another function and the inner function has access to the outer function's variables.

    • Closures can be used to create private variables and functions in JavaScript.

    • Closures can also be used to maintain state in asynchronous operations

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Javascript polyfills

Skills evaluated in this interview

Truelancer Interview FAQs

How many rounds are there in Truelancer Senior Java Developer interview?
Truelancer interview process usually has 2 rounds. The most common rounds in the Truelancer interview process are Resume Shortlist and One-on-one Round.
How to prepare for Truelancer Senior Java 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 Truelancer. The most common topics and skills that interviewers at Truelancer expect are Java, Spring, Spring Boot, Hibernate and J2Ee.
What are the top questions asked in Truelancer Senior Java Developer interview?

Some of the top questions asked at the Truelancer Senior Java Developer interview -

  1. Difference between caching levels, interfaces from JPA & Hiberna...read more
  2. It is based on my experience on Java& other tech stack.Two were SQL,on Core Jav...read more
  3. One was a Client round as well. Very fast response and off...read more

Tell us how to improve this page.

Truelancer Senior Java Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

MagicPin Interview Questions
2.6
 • 50 Interviews
Park Plus Interview Questions
2.9
 • 36 Interviews
Tokopedia Interview Questions
4.1
 • 25 Interviews
Meritto Interview Questions
3.6
 • 22 Interviews
Furlenco Interview Questions
3.4
 • 21 Interviews
JUSPAY Interview Questions
3.1
 • 21 Interviews
Fraazo Interview Questions
3.4
 • 20 Interviews
Droom Interview Questions
3.7
 • 19 Interviews
Melorra Interview Questions
3.2
 • 19 Interviews
View all
Java Developer
8 salaries
unlock blur

₹4.5 L/yr - ₹5.9 L/yr

Technical Recruiter
6 salaries
unlock blur

₹2.5 L/yr - ₹4.5 L/yr

Business Development Executive
6 salaries
unlock blur

₹2.7 L/yr - ₹4 L/yr

Software Engineer
4 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Full Stack Developer
4 salaries
unlock blur

₹7 L/yr - ₹8 L/yr

Explore more salaries
Compare Truelancer with

Upwork

4.4
Compare

Fiverr Inc.

4.2
Compare

Gurit India

4.1
Compare

99designs

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