Upload Button Icon Add office photos

Filter interviews by

Trivium eSolutions Java Developer Interview Questions and Answers

Updated 28 Sep 2022

Trivium eSolutions Java Developer Interview Experiences

1 interview found

Java Developer Interview Questions & Answers

user image Amarnadh Reddy

posted on 28 Sep 2022

I applied via Recruitment Consulltant and was interviewed in Aug 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. System design of application using spring boot
  • Ans. 

    System design of application using Spring Boot

    • Identify the requirements and constraints of the system

    • Choose appropriate architecture pattern (e.g. MVC, Microservices)

    • Design the data model and database schema

    • Implement the business logic using Spring Boot

    • Configure the application properties and dependencies

    • Test and deploy the application

  • Answered by AI
  • Q2. System design of e challan system for traffic violations
  • Ans. 

    Designing an e-challan system for traffic violations

    • Identify the stakeholders and their roles

    • Define the data model and database schema

    • Design the user interface for traffic police and violators

    • Implement payment gateway integration

    • Ensure system security and data privacy

    • Integrate with existing traffic management systems

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on system design
What is the way to solve and why u choose the approach, in depth pros and cons of the approach.

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is the difference between abstract class and an interface in Java?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, member variables, and methods, while interface cannot.

    • A class can implement multiple interfaces but can only extend one abstract class.

    • Abstract classes are used to define a common behavior among subclasses, while interfaces are used to define a contract for classes to impl...

  • Answered by AI
  • Q2. An abstract class can have method implements and abstract method, while an interface only contains abstract method (before Java 8) . Abstract classes support single inheritance, whereas interfaces support ...
  • Ans. 

    Abstract classes can have both implemented and abstract methods, while interfaces can only have abstract methods. Abstract classes support single inheritance, interfaces support multiple inheritance.

    • Abstract classes can have both implemented and abstract methods, providing more flexibility in design.

    • Interfaces can only have abstract methods, promoting a more strict contract for implementing classes.

    • Abstract classes sup...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Questions on string and arrays both are moderate level questions on hacherrank type for 20 marks

Round 2 - Technical 

(2 Questions)

  • Q1. Constructor chaining
  • Q2. Hasmap and treemap
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

There were 5 questions and we need to solve 4 questions in java. Mostly Array and string based.

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Approached by Company and was interviewed in Mar 2023. There were 3 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 

(3 Questions)

  • Q1. What is java ?
  • Ans. 

    Java is a high-level programming language known for its portability, security, and object-oriented features.

    • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM).

    • It is object-oriented, allowing for modular and reusable code.

    • Java is known for its security features, such as sandboxing and encryption.

    • Popular frameworks and libraries like Spring and Hibernate are commonly used in

  • Answered by AI
  • Q2. Opps concepts collections
  • Q3. Data structures
Round 3 - One-on-one 

(2 Questions)

  • Q1. Opps and collections
  • Q2. Must know about collections

Interview Preparation Tips

Interview preparation tips for other job seekers - learn and practice bacic concepts

Skills evaluated in this interview

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

I applied via campus placement at National Institute of Technology (NIT), Warangal and was interviewed in Jul 2022. There were 3 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 - Aptitude Test 

Their are 30 questions which one has to done in 30 mins

Round 3 - Technical 

(2 Questions)

  • Q1. Q1) About the project you have done
  • Q2. Q2) some technical questions related to core Java

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your projects well enough so that you are answerable to each question asked
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the diffrence between == and .equals() in java?
  • Q2. == : Compares refrences (memory addresses) of objects. .equals() : Compares to content (value) of objects.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Oops Concepts ,Absrtraction,Polymorphism
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write a short java program to check if a number is prime.
  • Ans. 

    Java program to check if a number is prime

    • Create a function that takes an integer as input

    • Check if the number is less than 2, return false

    • Iterate from 2 to the square root of the number, check for divisibility

    • If the number is divisible by any number, return false

    • Otherwise, return true

  • Answered by AI
  • Q2. A prime number is a number greater than 1.....etc
  • Ans. 

    A prime number is a number greater than 1 that can only be divided by 1 and itself.

    • Prime numbers are integers greater than 1

    • They have only two factors: 1 and the number itself

    • Examples of prime numbers: 2, 3, 5, 7, 11, 13

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

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

Round 1 - Coding Test 

Q.1 Pattern
1
*2*
**3**
Q. 2
write code to get sub array with max sum from given array.

Round 2 - Technical 

(1 Question)

  • Q1. Introduction Project Deatails Oops Concept Collection Exception Handling Abstract Class Functional Interface Spring Framework

Interview Preparation Tips

Topics to prepare for Thinkitive Technologies Java Developer interview:
  • Java
  • Advanced Java
  • SQL
  • Data Structures

Trivium eSolutions Interview FAQs

How many rounds are there in Trivium eSolutions Java Developer interview?
Trivium eSolutions interview process usually has 2 rounds. The most common rounds in the Trivium eSolutions interview process are Resume Shortlist and One-on-one Round.
What are the top questions asked in Trivium eSolutions Java Developer interview?

Some of the top questions asked at the Trivium eSolutions Java Developer interview -

  1. System design of e challan system for traffic violati...read more
  2. system design of application using spring b...read more

Tell us how to improve this page.

Trivium eSolutions Java Developer Salary
based on 5 salaries
₹4.5 L/yr - ₹4.8 L/yr
20% less than the average Java Developer Salary in India
View more details
Senior Software Engineer
26 salaries
unlock blur

₹7 L/yr - ₹20 L/yr

Software Engineer
19 salaries
unlock blur

₹6 L/yr - ₹10.1 L/yr

Senior Test Engineer
10 salaries
unlock blur

₹6.4 L/yr - ₹16 L/yr

Software Developer
7 salaries
unlock blur

₹7 L/yr - ₹16 L/yr

Senior Software Engineer 1
7 salaries
unlock blur

₹8.3 L/yr - ₹17.3 L/yr

Explore more salaries
Compare Trivium eSolutions with

Accel Frontline

3.9
Compare

Northcorp Software

4.4
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

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