Upload Button Icon Add office photos

Filter interviews by

Astroved.com Java Developer Interview Questions and Answers

Updated 22 May 2024

Astroved.com Java Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. What is jvm uses
  • Ans. 

    JVM (Java Virtual Machine) is used to run Java applications by converting Java bytecode into machine code.

    • Interpreting Java bytecode

    • Optimizing performance

    • Garbage collection

    • Platform independence

  • Answered by AI
  • Q3. What is Garbage collection
  • Ans. 

    Garbage collection is a process in Java where the JVM automatically manages memory by deallocating objects that are no longer needed.

    • Garbage collection helps prevent memory leaks by reclaiming memory occupied by objects that are no longer in use.

    • It runs in the background and identifies objects that are no longer reachable by the application.

    • There are different types of garbage collectors in Java, such as Serial, Parall...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare good

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via AmbitionBox and was interviewed in Sep 2023. There were 7 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 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. First of all thank you for giving this opportunity. My self madhumitha I am from narasaraopet I completed by btech in krishnaveni engineering college for womens,kesanupalli in the year 2022 I completed my...
Round 3 - Group Discussion 

Explain about one topic

Round 4 - Technical 

(1 Question)

  • Q1. A technical round round is a job interview round that tests the candidates technical skills with respect to the concerned job requirements
Round 5 - The 

(1 Question)

  • Q1. About our family
Round 6 - One-on-one 

(1 Question)

  • Q1. Managerial round can cover a diverse range of discussion topics.
Round 7 - Selection round 

(1 Question)

  • Q1. Selection process is to select right candidates with the required qualifications and capabilities to fill the vacancy in the organisation

Interview Preparation Tips

Topics to prepare for AmbitionBox Java Developer interview:
  • Core Java
  • Software Testing
  • Manual Testing
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was good , 2 questions are there to code.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Cs fundamental, Projects, coding.
  • Q2. A simple coding question of string using map
Round 3 - Technical 

(2 Questions)

  • Q1. What is React router. what does it do.
  • Ans. 

    React Router is a popular routing library for React applications.

    • React Router is used for handling navigation in React applications.

    • It allows defining multiple routes in the application and rendering different components based on the URL.

    • React Router provides components like BrowserRouter, Route, Switch, and Link for routing.

    • Example: will render the About component when the URL

  • Answered by AI
  • Q2. Questions based on react basics.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be patience you will do it easily.

Skills evaluated in this interview

Software Developer Interview Questions & Answers

Spyne user image Purushottam Mandal_94

posted on 5 Dec 2024

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

BE Assignment containing how to make a simple backend task

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

I applied via Referral and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Machine Coding of Google Calendar

Round 2 - Coding Test 

Machine Coding of MP3 Player

Round 3 - One-on-one 

(1 Question)

  • Q1. Find Duplicates problem
  • Ans. 

    Find duplicates in an array of strings

    • Iterate through the array and store each element in a hash set

    • If an element is already in the hash set, it is a duplicate

    • Return a list of all duplicates found

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Why Simpl? and compensation
  • Ans. 

    Simpl offers a collaborative and innovative work environment with competitive compensation.

    • Simpl values teamwork and creativity in software development

    • Competitive compensation package offered to attract top talent

    • Opportunities for growth and learning through challenging projects

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Assignment 

It was an assignment where we were instructed to create a screen that fetches data from the backend and renders it with the functionality of bookmarking.

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. Basic resume based questions
  • Q2. Explain your internship experience
Round 3 - HR 

(1 Question)

  • Q1. Basic resume based questions

I was interviewed in Dec 2016.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself tell me about your internship My interview was unstructured(i.e based on your reply interviewer was asking Questions)

Interview Preparation Tips

Round: Test
Experience: Questions were very difficult and solving one Question gets you shortlisted for interview
I don't remember the Questions
Duration: 1 hour 30 minutes
Total Questions: 2

Skills: Internship Work, Inter Person Communication Skills
College Name: IIT Roorkee
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jan 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

First I will give the altitude test

Round 3 - Coding Test 

My coding knowledge is good and my coding speed is fast

Interview Preparation Tips

Interview preparation tips for other job seekers - I am fresher I have knowledge of java spring boot, Angular,css, HTML, MySQL
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Assignment 

A simple Google form assignment to shortlist candidates

Round 2 - Technical 

(2 Questions)

  • Q1. ML related questions
  • Q2. Find duplicates in array
  • Ans. 

    Use a hash set to find duplicates in an array of strings.

    • Create a hash set to store unique elements.

    • Iterate through the array and check if each element is already in the hash set.

    • If it is, then it is a duplicate.

    • Example: ['apple', 'banana', 'apple', 'orange'] should return 'apple' as a duplicate.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Eazy process

Skills evaluated in this interview

Astroved.com Interview FAQs

How many rounds are there in Astroved.com Java Developer interview?
Astroved.com interview process usually has 1 rounds. The most common rounds in the Astroved.com interview process are HR.
What are the top questions asked in Astroved.com Java Developer interview?

Some of the top questions asked at the Astroved.com Java Developer interview -

  1. What is Garbage collect...read more
  2. What is jvm u...read more

Tell us how to improve this page.

Astroved.com Java Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

AmbitionBox Interview Questions
4.9
 • 153 Interviews
Cogoport Interview Questions
2.8
 • 52 Interviews
Treebo Hotels Interview Questions
3.4
 • 22 Interviews
AstroTalk Interview Questions
3.4
 • 17 Interviews
Simpl Interview Questions
2.9
 • 17 Interviews
KrazyBee Interview Questions
3.7
 • 14 Interviews
EazyDiner Interview Questions
3.2
 • 14 Interviews
View all
Software Engineer
8 salaries
unlock blur

₹3.6 L/yr - ₹5.4 L/yr

Junior Software Engineer
8 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Junior Software Developer
7 salaries
unlock blur

₹2.2 L/yr - ₹2.8 L/yr

Web Designer
7 salaries
unlock blur

₹1.8 L/yr - ₹4.4 L/yr

Senior Customer Support Executive
6 salaries
unlock blur

₹3.6 L/yr - ₹4.6 L/yr

Explore more salaries
Compare Astroved.com with

Future Point

3.8
Compare

Clickastro

5.0
Compare

Indastro

5.0
Compare

AstroTalk

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