Upload Button Icon Add office photos

Filter interviews by

Startup Java Developer Trainee Interview Questions and Answers

Updated 27 Jul 2024

Startup Java Developer Trainee Interview Experiences

1 interview found

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

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

Round 1 - Coding Test 

C++:

#
#
Class Demo
{
int n;
Public:
Void accept()
{
Cout<<"Enter number";
Cin>>n;
if(n>10)
{
Cout<<" It is greater than 10";
}
if(n<10)
{
Cout<<"It is not greater than 10";
}
}
};

Void main ()
{
Clrscr( ) ;
Demo D
D. accept () ;
getch () ;
}

Round 2 - Coding Test 

Class Test Calculator
{
Public Static void main (String [] args) {
Calculator C1=new Calculator ();
C1:Addition (10, 20) ;
C1:Multiplication (10, 20) ;
C1:Subtraction (10, 20) ;
C1:Division (10, 20);
}
}

Round 3 - Group Discussion 

My self: Aditya Manik Gidhane
I Study in Complete : BSc (computer science)

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I applied via Company Website and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Simple questions asked related to web forms

Interview Preparation Tips

Interview preparation tips for other job seekers - As soon as the interviewer joined, there was so much noise in the background that I couldn't understand what they were asking. It was so loud that I could hardly hear anything. This is not a professional way to conduct interview. The interview lasted hardly 10 minutes and it was very awkward for me. I couldn't even understand what I was saying, and I couldn't hear what they were saying either.
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
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(6 Questions)

  • Q1. Stringbuilder and string buffer diff
  • Q2. Where we store the object of string
  • Ans. 

    Objects of String are stored in the String Pool in Java.

    • String objects are stored in the String Pool, a special memory area in Java heap memory.

    • String literals are automatically stored in the String Pool.

    • String objects created using the new keyword are not stored in the String Pool.

    • String.intern() method can be used to store a String object in the String Pool.

  • Answered by AI
  • Q3. What is bean in springboot
  • Ans. 

    A bean in Spring Boot is a Java object that is instantiated, assembled, and managed by the Spring IoC container.

    • Beans are defined in the Spring configuration file or using annotations like @Component, @Service, @Repository, etc.

    • Beans are singleton by default but can be scoped as prototype, request, session, etc.

    • Beans are injected into other beans using dependency injection.

    • Example: @Component annotation is used to defi

  • Answered by AI
  • Q4. What is query parameters and path param
  • Ans. 

    Query parameters are used to pass data to a web server through the URL, while path parameters are part of the URL itself.

    • Query parameters are key-value pairs added to the end of a URL after a '?'

    • Path parameters are variables within the URL path itself, denoted by curly braces {}

    • Example of query parameter: www.example.com/api/users?id=123

    • Example of path parameter: www.example.com/api/users/{userId}

  • Answered by AI
  • Q5. Code snippet related to exception
  • Q6. Diff between exception and error
  • Ans. 

    Exceptions are recoverable errors that can be handled in code, while errors are unrecoverable issues that usually result in program termination.

    • Exceptions are checked at compile time, while errors are unchecked.

    • Exceptions are subclasses of Throwable, while errors are subclasses of Error.

    • Examples of exceptions include FileNotFoundException, NullPointerException, while examples of errors include OutOfMemoryError, StackOv

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Quick sort - keep order same
  • Q2. Reverse string with spaces but keep the space position intact
  • Ans. 

    Reverse a string while keeping the position of spaces intact

    • Split the string into an array of characters

    • Iterate through the array and reverse the characters while keeping track of space positions

    • Join the array back into a string

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study DSA properly and java basics - immutable class cases
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(4 Questions)

  • Q1. Ask to write code for equal and hashcode in notepad
  • Q2. Type of Collections and its internal working
  • Ans. 

    Java collections are data structures that store and manipulate groups of objects.

    • Types of collections include List, Set, Map, Queue, etc.

    • Internal workings involve data structures like arrays, linked lists, hash tables, etc.

    • Collections framework provides interfaces and classes for working with collections.

  • Answered by AI
  • Q3. Count number of occurrence of string from Array
  • Ans. 

    Count occurrences of a specific string in an array of strings.

    • Iterate through the array and use a HashMap to store the count of each string.

    • Use the string as key and increment the count each time it is encountered.

    • Return the count of the specific string at the end.

  • Answered by AI
  • Q4. Write a code using stream
  • Ans. 

    Using stream to filter a list of strings

    • Use the filter method to apply a predicate to each element in the stream

    • Convert the stream back to a list using the collect method

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Due to network and power issue interview and processed

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Transactions in spring
  • Ans. 

    Transactions in Spring framework help manage database transactions in a consistent and reliable manner.

    • Spring provides support for declarative transaction management using @Transactional annotation

    • Transactions can be managed programmatically using TransactionTemplate

    • Spring supports both programmatic and declarative transaction management

    • Transactions ensure ACID properties (Atomicity, Consistency, Isolation, Durability)

  • Answered by AI
  • Q2. Static va virtual

Skills evaluated in this interview

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

3 coding questions were given and to be solved only in java

DOT NET Developer Interview Questions & Answers

HSBC Group user image Lakshmi Chiru Meghana Behara

posted on 30 Oct 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed in Sep 2023. 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 - Technical 

(2 Questions)

  • Q1. Basics of dotnet
  • Q2. Basic questions in MVC

I applied via Referral and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Eager , Lazy Singleton Design Pattern. 2. Java 8 Stream , Functions (Predicate , Supplier , Consumer ) , Comparator Chaining 3. Designing Pattern -> Count Like / Seen any Post of Instagram , Reduce N/W...

Interview Preparation Tips

Interview preparation tips for other job seekers - Average Question , Stick to the Basic Concepts .

Please confirm with HR if they are really interested to hire candidate , In my case i felt they were not really interested to hire .

Startup Interview FAQs

How many rounds are there in Startup Java Developer Trainee interview?
Startup interview process usually has 3 rounds. The most common rounds in the Startup interview process are Coding Test and Group Discussion.

Tell us how to improve this page.

People are getting interviews through

based on 1 Startup interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.2k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 753 Interviews
HSBC Group Interview Questions
4.0
 • 487 Interviews
Swiggy Interview Questions
3.8
 • 423 Interviews
American Express Interview Questions
4.2
 • 356 Interviews
BigBasket Interview Questions
3.9
 • 345 Interviews
UBS Interview Questions
4.0
 • 333 Interviews
BNY Interview Questions
4.0
 • 328 Interviews
Zomato Interview Questions
3.8
 • 314 Interviews
View all
Software Developer
40 salaries
unlock blur

₹2.2 L/yr - ₹10.7 L/yr

Software Engineer
27 salaries
unlock blur

₹2.9 L/yr - ₹9.7 L/yr

Consultant
16 salaries
unlock blur

₹7.9 L/yr - ₹35.1 L/yr

Front end Developer
14 salaries
unlock blur

₹1.7 L/yr - ₹8 L/yr

Product Manager
13 salaries
unlock blur

₹7.2 L/yr - ₹24 L/yr

Explore more salaries
Compare Startup with

Flipkart

4.0
Compare

Ola Cabs

3.4
Compare

Paytm

3.3
Compare

Swiggy

3.8
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