Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Han River Technology Team. If you also belong to the team, you can get access from here

Han River Technology Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 104 Reviews

Filter interviews by

Han River Technology Java Developer Trainee Interview Questions and Answers

Updated 10 Mar 2024

Han River Technology Java Developer Trainee Interview Experiences

1 interview found

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

I applied via Indeed and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Core java basic to intermediate level.
  • Q2. Questions asked from methods, inheritance, collection framework and Exception handling topics.
Round 2 - HR 

(1 Question)

  • Q1. HR discussions about when you ll join.

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 == and .equals() in Java?
  • Ans. 

    In Java, == compares memory addresses while .equals() compares the actual content of objects.

    • == compares memory addresses of objects, while .equals() compares the actual content.

    • == is used to compare primitive data types, while .equals() is used to compare objects.

    • Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will be false, but str1.equals(str2) will be true.

  • Answered by AI
  • Q2. ==compares object references (memory location) .equals() compares the actual content or values of the objects.
  • Ans. 

    The question explains the difference between == and .equals() in Java for comparing object references and content.

    • Use == to compare object references (memory location)

    • Use .equals() to compare the actual content or values of the objects

    • Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will be false, but str1.equals(str2) will be true

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - "Stay curious keep learning."
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
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Walk-in and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself

I was interviewed in Feb 2021.

Interview Questionnaire 

2 Questions

  • Q1. Tell me something about yourself?
  • Q2. Tell me about your previous expiriece

Interview Preparation Tips

Interview preparation tips for other job seekers - well Prepare with our resume whatever you mentioned in that.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the purpose of static keyword in Java?
  • Q2. The static keyword is used to create class-level variable and methods ............etc.
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:
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 

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
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between readonly and const in C#?
  • Ans. 

    readonly variables can be assigned a value either at the time of declaration or in the constructor, while const variables must be assigned a value at the time of declaration and cannot be changed.

    • readonly variables can be assigned a value at runtime, while const variables must be assigned a value at compile time

    • readonly variables can be assigned a value in the constructor, while const variables cannot

    • const variables ar...

  • Answered by AI
  • Q2. Const is compile-time constant, while readonly is runtime constant.
  • Ans. 

    const is compile-time constant, while readonly is runtime constant.

    • const values are determined at compile time and cannot be changed during runtime

    • readonly values can be assigned a value either at the declaration or in the constructor and can be changed at runtime

    • const is used for values that are known at compile time, like mathematical constants

    • readonly is used when the value needs to be initialized at runtime, like d

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Tailor your resume to match the job description and highlight relevant skills.

I applied via Company Website and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical Reasoning, Verbal ability

Round 2 - Technical 

(1 Question)

  • Q1. Technical Questions base on languages
Round 3 - HR 

(1 Question)

  • Q1. Document Verification, About yourself and family

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview
be polite and use the right language and tone for a formal situation. listen to the questions and think before you begin your answers. ask the interviewer to repeat or explain further if you do not understand a question. use the STAR method to answer questions about your skills and experience.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between ==and .equals() in java?
  • Ans. 

    In Java, == compares memory addresses while .equals() compares the actual content of objects.

    • == compares memory addresses of objects, while .equals() compares the actual content of objects.

    • == is used to compare primitive data types, while .equals() is used to compare objects.

    • Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will be false, but str1.equals(str2) will be true.

  • Answered by AI
  • Q2. ==compares object references, while .equals() compares object values in java.
  • Ans. 

    In Java, == compares object references, while .equals() compares object values.

    • Use == to compare if two object references point to the same memory location.

    • Use .equals() to compare if two objects have the same values.

    • Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will be false, but str1.equals(str2) will be true.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay curious and keep upgrading your skills to match industry demands.

Han River Technology Interview FAQs

How many rounds are there in Han River Technology Java Developer Trainee interview?
Han River Technology interview process usually has 2 rounds. The most common rounds in the Han River Technology interview process are Technical and HR.
What are the top questions asked in Han River Technology Java Developer Trainee interview?

Some of the top questions asked at the Han River Technology Java Developer Trainee interview -

  1. Questions asked from methods, inheritance, collection framework and Exception h...read more
  2. Core java basic to intermediate lev...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Han River Technology 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

AmbitionBox Interview Questions
5.0
 • 144 Interviews
Webdew Interview Questions
4.5
 • 106 Interviews
Data Entry Interview Questions
4.0
 • 94 Interviews
HyScaler Interview Questions
4.5
 • 90 Interviews
CapitalOne Interview Questions
4.0
 • 72 Interviews
3 Minds Digital Interview Questions
4.4
 • 61 Interviews
Cogoport Interview Questions
2.8
 • 51 Interviews
View all

Han River Technology Java Developer Trainee Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

4.0

Work-Life balance

3.0

Salary & Benefits

3.0

Job Security

4.0

Company culture

3.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
QA Engineer
15 salaries
unlock blur

₹1.8 L/yr - ₹4.6 L/yr

Associate
15 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Software Developer
12 salaries
unlock blur

₹2.2 L/yr - ₹6 L/yr

Project Coordinator
8 salaries
unlock blur

₹3 L/yr - ₹4.3 L/yr

Front end Developer
8 salaries
unlock blur

₹3.4 L/yr - ₹9 L/yr

Explore more salaries
Compare Han River Technology with

Huawei Technologies

4.0
Compare

Data Entry

4.0
Compare

ABCI Infrastructures

3.5
Compare

Cogoport

2.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