Upload Button Icon Add office photos

Filter interviews by

Trie Coder Java Software Engineer Interview Questions, Process, and Tips

Updated 18 Sep 2021

Trie Coder Java Software Engineer Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed in Mar 2021. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Can we pass values during object creation?
  • Ans. 

    Yes, we can pass values during object creation using constructors.

    • Constructors are special methods that are called when an object is created.

    • They can take parameters to initialize the object's state.

    • Values passed during object creation are used to initialize instance variables.

    • Example: public class Person { String name; int age; public Person(String name, int age) { this.name = name; this.age = age; } }

    • Example usage: P

  • Answered by AI
  • Q2. Differentiate between Array and Array list in detail with example?
  • Ans. 

    Array is a fixed-size data structure while Array list is a dynamic data structure.

    • Array has a fixed size while Array list can grow dynamically.

    • Array can store only homogeneous data types while Array list can store heterogeneous data types.

    • Array is faster than Array list in terms of accessing elements.

    • Array list provides more functionality like add, remove, and search.

    • Example of Array: int[] arr = new int[5]; Example of

  • Answered by AI
  • Q3. Explain OOP concepts in Java with real time examples?
  • Ans. 

    OOP concepts in Java with real time examples

    • Encapsulation - hiding implementation details of a class. Example: private variables in a class

    • Inheritance - creating a new class from an existing class. Example: subclass extending a superclass

    • Polymorphism - ability of an object to take many forms. Example: method overloading and overriding

    • Abstraction - showing only necessary details to the user. Example: abstract classes an

  • Answered by AI
  • Q4. What are exceptions. How many times are there?
  • Ans. 

    Exceptions are errors that occur during program execution. There are two types: checked and unchecked.

    • Exceptions are objects that represent errors or exceptional conditions that occur during program execution.

    • Checked exceptions are checked at compile time and must be handled or declared in the method signature.

    • Unchecked exceptions are not checked at compile time and can be handled or left to propagate up the call stack...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - First of all we should be confident on our words while we speak and should have Good communication skills and have eye contact with interviewer, and able to explain about a project you worked during Graduation.

Skills evaluated in this interview

Interview questions from similar companies

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

There were three coding questions.

Round 2 - Technical 

(5 Questions)

  • Q1. Could you provide a thorough explanation of the project?
  • Q2. OOps Concepts and question from the technical subjects
  • Q3. Why Spring Boot
  • Q4. JWT Authentication
  • Q5. Docker and Kubernetes
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. This was for internship. The first questions were 10 questions based on guessing output of c program
  • Q2. 2 coding questions with easy to medium difficulty based on strings and mathematical knowledge
Round 2 - Interview 

(1 Question)

  • Q1. This was a virtual interview round which had basic HR type questions.
Round 3 - Hackathon 

(1 Question)

  • Q1. This was code for good hackathon
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Write an API to fetch the id and JSON from the client.
  • Ans. 

    Create an API to fetch id and JSON from the client.

    • Create a RESTful API endpoint that accepts requests from the client

    • Use a GET request to fetch the id and JSON data from the client

    • Implement error handling for invalid requests or missing data

  • Answered by AI
  • Q2. Find forth highest salary from List using java 8.
  • Ans. 

    Use Java 8 stream to find the forth highest salary from a List.

    • Use stream() method to convert the List to a stream.

    • Use distinct() method to remove duplicates.

    • Use sorted() method to sort the salaries in ascending order.

    • Use skip() method to skip the first three highest salaries.

    • Use findFirst() method to get the forth highest salary.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Microservice Architecture questions
  • Q2. Spring Boot Annotations
Round 3 - HR 

(2 Questions)

  • Q1. Salary Expectation
  • Q2. Basic HR questions

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. They grind u in javascript,typescript
  • Q2. Html css, angular
  • Q3. Deep preparation needed

Interview Preparation Tips

Interview preparation tips for other job seekers - Not an easy interview
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Project Architecture
Round 2 - Technical 

(1 Question)

  • Q1. Informatica tech questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Oct 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. Spring cloud gateway
  • Q2. JWT Token structure and details
  • Q3. Java 11 features
  • Q4. Stream related problems
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Question Related to the DP and the Graph

Round 2 - Technical 

(2 Questions)

  • Q1. Kth Max Element in a Array
  • Ans. 

    Find the Kth maximum element in an array of strings.

    • Sort the array in descending order.

    • Return the element at index K-1.

  • Answered by AI
  • Q2. Coin Change and optimization through DP
  • Ans. 

    Coin change problem can be solved using dynamic programming to find the minimum number of coins needed to make a certain amount of change.

    • Use dynamic programming to build up solutions for smaller subproblems

    • Start by initializing an array to store the minimum number of coins needed for each amount from 0 to the target amount

    • Iterate through each coin denomination and update the array with the minimum number of coins need

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Project include in your Resume
  • Q2. HR common question

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Two sum problem DSA fromleetcode

Round 2 - Technical 

(3 Questions)

  • Q1. Event Loop, how does event loop work.
  • Q2. Lib UV, explain the function of libuv
  • Ans. 

    Libuv is a multi-platform support library with a focus on asynchronous I/O.

    • Provides event loop, networking, and file system access APIs

    • Supports asynchronous operations for handling I/O events efficiently

    • Used in Node.js for handling non-blocking I/O operations

  • Answered by AI
  • Q3. Async programming in JS
  • Ans. 

    Async programming in JS allows for non-blocking operations, improving performance and user experience.

    • Use async/await to write asynchronous code in a synchronous manner

    • Promises are a common way to handle asynchronous operations

    • Callbacks can also be used for async programming, but can lead to callback hell

    • Utilize setTimeout and setInterval for delayed and repeated tasks

  • Answered by AI

Skills evaluated in this interview

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

MCQ test consisting of 70 mcqs in 75 minutes from aptitude english and cs fundamentals. If cleared next paper 2 coding qs medium level

Round 2 - Technical 

(2 Questions)

  • Q1. Two sum leetcode problem
  • Q2. What problems you faced in your project
  • Ans. 

    I faced challenges with integrating third-party APIs and debugging complex logic.

    • Difficulty in understanding and implementing third-party APIs

    • Issues with data synchronization between different systems

    • Troubleshooting complex logic errors

    • Managing dependencies and version conflicts

    • Time constraints affecting problem-solving

  • Answered by AI

Trie Coder Interview FAQs

What are the top questions asked in Trie Coder Java Software Engineer interview?

Some of the top questions asked at the Trie Coder Java Software Engineer interview -

  1. Can we pass values during object creatio...read more
  2. what are exceptions. How many times are ther...read more
  3. Explain OOP concepts in Java with real time example...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 565 Interviews
Wells Fargo Interview Questions
3.9
 • 564 Interviews
Bajaj Finserv Interview Questions
4.0
 • 512 Interviews
HSBC Group Interview Questions
4.0
 • 490 Interviews
Xyz Company Interview Questions
3.8
 • 456 Interviews
American Express Interview Questions
4.2
 • 360 Interviews
UBS Interview Questions
4.0
 • 337 Interviews
BNY Interview Questions
3.9
 • 337 Interviews
Morgan Stanley Interview Questions
3.7
 • 307 Interviews
View all
Software Developer
10 salaries
unlock blur

₹1.1 L/yr - ₹4 L/yr

Software Engineer
4 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Senior Software Developer
4 salaries
unlock blur

₹11 L/yr - ₹14 L/yr

Senior Software Engineer
4 salaries
unlock blur

₹7 L/yr - ₹22 L/yr

Quality Analyst
3 salaries
unlock blur

₹3.7 L/yr - ₹3.7 L/yr

Explore more salaries
Compare Trie Coder with

Bajaj Finserv

4.0
Compare

Wells Fargo

3.9
Compare

JPMorgan Chase & Co.

4.0
Compare

HSBC Group

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