Upload Button Icon Add office photos

Filter interviews by

Global Logica Software Technologies Java Developer Interview Questions and Answers

Updated 26 Jul 2024

Global Logica Software Technologies Java Developer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Springboot , jpa, core java
  • Q2. Microservices, java coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on Java fundamentals

Interview questions from similar companies

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

(1 Question)

  • Q1. They asked some core Java Concepts,String,Java 8,SpringBoot Architecture,Stream API code
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is the contract between hashCode and equals method?
  • Ans. 

    The contract between hashCode and equals method is that if two objects are equal according to the equals method, then their hash codes must also be equal.

    • hashCode and equals method must be consistent - if two objects are equal according to equals method, their hash codes must be equal

    • If two objects have the same hash code, they may or may not be equal according to equals method

    • Overriding equals method in a class requir...

  • Answered by AI
  • Q2. Features introduced in Java 8
  • Ans. 

    Java 8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods in interfaces.

    • Lambda expressions allow you to pass functions as arguments.

    • Functional interfaces have a single abstract method and can be used with lambda expressions.

    • Streams provide a way to work with sequences of elements.

    • Default methods allow interfaces to have method implementations.

  • Answered by AI
  • Q3. What are the ways to start a thread
  • Ans. 

    Ways to start a thread in Java

    • Extending the Thread class and overriding the run() method

    • Implementing the Runnable interface and passing it to a Thread object

    • Using a thread pool from the Executors class

  • Answered by AI
  • Q4. What will happen if you start a thread which is already running
  • Ans. 

    The thread will continue running as it is already active

    • The thread will not be started again if it is already running

    • Attempting to start a thread that is already running will not have any effect

    • The thread will continue its execution without any interruption

  • Answered by AI
  • Q5. Explain about the join and sleep method
  • Ans. 

    Join method is used to wait for a thread to finish its execution, while sleep method is used to pause the execution of a thread for a specified amount of time.

    • Join method is used to wait for a thread to finish its execution before moving on to the next task.

    • Sleep method is used to pause the execution of a thread for a specified amount of time, allowing other threads to run.

    • Example: thread1.join() will wait for thread1 ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just listen to a lot of mock interview or original interview videos to get a hang of how an interview will be and even to check your knowledge and recall the things which you have learned.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Micro service disadvantage
  • Ans. 

    Microservices can introduce complexity, communication overhead, and potential performance issues.

    • Increased complexity due to managing multiple services

    • Communication overhead between services

    • Potential performance issues due to network latency

    • Difficulty in maintaining consistency across services

  • Answered by AI
  • Q2. @functionalinterface can we extend or not, map & flatmap
  • Ans. 

    No, @FunctionalInterface cannot be extended. Map and flatMap are default methods in the interface and cannot be overridden.

    • No, @FunctionalInterface cannot be extended as it is a single abstract method interface.

    • Map and flatMap are default methods in the interface and cannot be overridden.

    • Example: public interface MyInterface { void myMethod(); default void myDefaultMethod() { // implementation } }

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Multivalued map
  • Q2. Basic core java
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 Mar 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

30 multiple choice questions

Round 2 - Coding Test 

Two coding questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Oops questions like main principles of oops
Round 4 - One-on-one 

(1 Question)

  • Q1. Deep in project
Round 5 - HR 

(1 Question)

  • Q1. Self intro, family background,some hr questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Kadane's Algorithm
  • Ans. 

    Kadane's Algorithm is used to find the maximum subarray sum in an array.

    • Iterate through the array and keep track of the maximum sum ending at each index.

    • If the sum at any index becomes negative, reset the sum to 0.

    • Return the maximum sum found.

    • Example: For array [-2, 1, -3, 4, -1, 2, 1, -5, 4], the maximum subarray sum is 6 (from index 3 to 6).

  • Answered by AI
  • Q2. Reverse a linkedin list
  • Ans. 

    Reverse a linked list by changing the pointers direction

    • Iterate through the linked list and change the direction of pointers

    • Use three pointers - current, previous, and next to reverse the list

    • Update the head of the list to the last node after reversing

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design Instagram
Round 3 - Fitment Round 

(1 Question)

  • Q1. Normal intro and hr related questions

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Explain your Project. What features you have made Git related questions like code merge pull Jira tool Java questions mostly from collectiions Springboot related question Then some design pattern.

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice experience
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 Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

Java progaming, coding

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Few programs to write and execute

Round 3 - Technical 

(2 Questions)

  • Q1. All about microservices and spring boot
  • Q2. Hibernate related they asked many questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep working smart

Global Logica Software Technologies Interview FAQs

How many rounds are there in Global Logica Software Technologies Java Developer interview?
Global Logica Software Technologies interview process usually has 1 rounds. The most common rounds in the Global Logica Software Technologies interview process are Technical.
What are the top questions asked in Global Logica Software Technologies Java Developer interview?

Some of the top questions asked at the Global Logica Software Technologies Java Developer interview -

  1. Springboot , jpa, core j...read more
  2. Microservices, java cod...read more

Tell us how to improve this page.

Global Logica Software Technologies Java Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Global Logica Software Technologies Java Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Associate Analyst
58 salaries
unlock blur

₹1 L/yr - ₹4 L/yr

Software Engineer
18 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Analyst
14 salaries
unlock blur

₹1.8 L/yr - ₹3.5 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹6.5 L/yr - ₹15 L/yr

Software Developer
7 salaries
unlock blur

₹3.6 L/yr - ₹12.1 L/yr

Explore more salaries
Compare Global Logica Software Technologies with

Xoriant

4.1
Compare

NeoSOFT

4.0
Compare

FirstCry

3.7
Compare

Iris Software

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