Upload Button Icon Add office photos
Engaged Employer

i

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

Globant Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Globant Java Developer Interview Questions and Answers

Updated 15 Jan 2025

Globant Java Developer Interview Experiences

6 interviews found

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

(2 Questions)

  • Q1. Goals for the future
  • Ans. 

    To become a senior Java developer and contribute to innovative projects in a collaborative team environment.

    • Continue learning new technologies and best practices in Java development

    • Work on challenging projects to enhance problem-solving skills

    • Collaborate with team members to share knowledge and improve code quality

  • Answered by AI
  • Q2. How do you think you can impact our company
  • Ans. 

    I believe my strong Java skills and problem-solving abilities can positively impact the company by improving efficiency and developing innovative solutions.

    • I have experience in developing efficient and scalable Java applications, which can help streamline processes within the company.

    • I am skilled in identifying and solving complex technical issues, which can contribute to the overall success of projects.

    • I am proactive ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Try, catch, finally...
  • Q2. HTTP families (400,200,500)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Problem solving array based, recursion, String, Collections, Stream API
  • Q2. Java OOP, Spring, Microservices, Hibernate
Round 2 - Technical 

(1 Question)

  • Q1. Problem solving, Streams API, HashMap internal working, Microservices
Round 3 - HR 

(1 Question)

  • Q1. Salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - If your current CTC is good or expecting more than 10% hike, you shouldn't apply for this company. I was asked about my CTC before resume shortlisting. Still, after technical rounds are done, the HR Ms. Gunjan Jain (Pune team) rejected me in HR. Very unprofessional, HR was not receiving calls. Complete waste of time.

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
asked in Deloitte
Q4. Convert BST to Greater Sum Tree Given a Binary Search Tree (BST) ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are the questions to be expected at GK round for spring boot developer role
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Just asking about my experience and testing my english level
Round 2 - Technical 

(1 Question)

  • Q1. Java Core, Spring Boot, SQL, No-SQL, AWS and CI/CD

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be prepared with the general concepts fresh, it's not to difficult if you studied

Globant interview questions for designations

 Senior Java Developer

 (1)

 Salesforce Developer

 (2)

 Software Developer

 (2)

 IOS Developer

 (2)

 Database Developer

 (1)

 UI Developer

 (1)

 Senior Developer

 (1)

 BI Developer

 (1)

Java Developer Interview Questions & Answers

user image Sharad Singh

posted on 4 Apr 2022

I applied via Naukri.com and was interviewed in Oct 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Questions were asked mainly on java 8 1.streams,map,filter,sort 2.Some exception handling 3.Do u know docker,kubernetes 4.findBy method in java 8 streams 5.Features added in java 8

Interview Preparation Tips

Interview preparation tips for other job seekers - Have your basics cleared and should know java 8

Interview Questionnaire 

1 Question

  • Q1. Richardson maturity model

Interview questions from similar companies

I appeared for an interview before Mar 2016.

Interview Preparation Tips

Round: Test
Experience: 1. output of simple static variable programs
2. hashmap program
3. spring annotations
4.wrapper classes
5. validation script for email
Tips: go through the basics
Total Questions: 6

I applied via Approached by Company and was interviewed in Oct 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 - Technical 

(2 Questions)

  • Q1. Basic Questions about Springboot
  • Q2. Basic Questions about Java8

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't worry about interview, Friendly HR and Panel Members.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Aptitude Test 

General Aptitude round based on numbers,verbal,time

Round 2 - Coding Test 

Any language u can use but need to solve 5 problems

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 Jan 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 

(4 Questions)

  • Q1. What is checked unchecked exceptions?
  • Ans. 

    Checked exceptions are exceptions that must be declared in a method's signature or handled using try-catch blocks.

    • Checked exceptions are checked at compile-time.

    • They are typically used for exceptional conditions that can be reasonably recovered from.

    • Examples of checked exceptions in Java include IOException, SQLException, and ClassNotFoundException.

  • Answered by AI
  • Q2. How to remove duplicated form from array list?
  • Ans. 

    To remove duplicates from an ArrayList of strings, use a HashSet to store unique elements.

    • Create a HashSet and add all elements from the ArrayList to it.

    • Create a new ArrayList and add all elements from the HashSet to it.

    • The new ArrayList will contain only unique elements.

  • Answered by AI
  • Q3. How hashset and hashmap work internally?
  • Ans. 

    HashSet and HashMap are both data structures in Java that use hashing to store and retrieve elements.

    • HashSet uses HashMap internally to store its elements as keys with a dummy value.

    • HashMap uses an array of linked lists called buckets to store key-value pairs.

    • Both HashSet and HashMap use the hashCode() method to calculate the hash value of keys.

    • HashSet uses the hash value to determine the bucket where an element should...

  • Answered by AI
  • Q4. Find sum of all odd numbers in a list using stream?
  • Ans. 

    Using Java stream, find the sum of all odd numbers in a list.

    • Use the filter() method to filter out the odd numbers from the list.

    • Use the mapToInt() method to convert the filtered numbers to integers.

    • Use the sum() method to calculate the sum of the filtered odd numbers.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for core java and java 8 questions and mysql

Skills evaluated in this interview

Globant Interview FAQs

How many rounds are there in Globant Java Developer interview?
Globant interview process usually has 1-2 rounds. The most common rounds in the Globant interview process are Technical, HR and One-on-one Round.
How to prepare for Globant Java Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Globant. The most common topics and skills that interviewers at Globant expect are Microservices, Java, Spring Boot, Hibernate and Kafka.
What are the top questions asked in Globant Java Developer interview?

Some of the top questions asked at the Globant Java Developer interview -

  1. Questions were asked mainly on java 8 1.streams,map,filter,sort 2.Some exceptio...read more
  2. What are the questions to be expected at GK round for spring boot developer r...read more
  3. Problem solving array based, recursion, String, Collections, Stream ...read more

Tell us how to improve this page.

Globant Java Developer Interview Process

based on 4 interviews

1 Interview rounds

  • Technical Round
View more
Globant Java Developer Salary
based on 51 salaries
₹3 L/yr - ₹8.4 L/yr
10% less than the average Java Developer Salary in India
View more details

Globant Java Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

5.0

Salary

4.0

Job security

5.0

Company culture

5.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
1.7k salaries
unlock blur

₹10 L/yr - ₹33 L/yr

Software Engineer
292 salaries
unlock blur

₹6 L/yr - ₹21 L/yr

Automation Test Engineer
240 salaries
unlock blur

₹6.1 L/yr - ₹25 L/yr

Technical Lead
236 salaries
unlock blur

₹16.6 L/yr - ₹39 L/yr

Senior Automation Test Engineer
217 salaries
unlock blur

₹9.5 L/yr - ₹28.6 L/yr

Explore more salaries
Compare Globant with

Accenture

3.8
Compare

Synechron

3.5
Compare

Movate

3.3
Compare

Sopra Steria

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