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
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

There were 3 to 4 questions related to the camera that needed to be solved within the given time.

Round 2 - One-on-one 

(4 Questions)

  • Q1. Postmortem of Hashmap
  • Ans. 

    Hashmap postmortem involves analyzing performance, memory usage, collisions, and resizing.

    • Analyze performance: Check for time complexity of operations like get, put, and remove.

    • Memory usage: Evaluate memory footprint and potential memory leaks.

    • Collisions: Investigate collision resolution strategies like separate chaining or open addressing.

    • Resizing: Examine load factor and rehashing process for efficient resizing.

    • Examp...

  • Answered by AI
  • Q2. Locking mechanism in multithreading
  • Ans. 

    Locking mechanism in multithreading is used to control access to shared resources by multiple threads.

    • Locks are used to prevent multiple threads from accessing shared resources simultaneously

    • Types of locks include synchronized blocks, ReentrantLock, and ReadWriteLock

    • Locks help prevent race conditions and ensure data consistency in multithreaded applications

  • Answered by AI
  • Q3. Find highest salaried emp from each dept
  • Ans. 

    Use SQL query to group by department and find employee with highest salary in each department

    • Write a SQL query to group by department and select max salary for each department

    • Join the result with employee table to get employee details

    • Example: SELECT dept, emp_name, MAX(salary) FROM employees GROUP BY dept

  • Answered by AI
  • Q4. Sorting algorithms

Interview Preparation Tips

Topics to prepare for Wissen Technology Java Developer interview:
  • Java fundamentals
  • DS
  • Multithreading
  • SQL
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
-

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 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
68 salaries
unlock blur

₹1.6 L/yr - ₹3 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
11 salaries
unlock blur

₹5.3 L/yr - ₹18 L/yr

Associate Consultant
9 salaries
unlock blur

₹15.3 L/yr - ₹22.7 L/yr

Explore more salaries
Compare Global Logica Software Technologies with

Xoriant

4.2
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