Upload Button Icon Add office photos
Engaged Employer

i

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

GlobalLogic Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

GlobalLogic Software Engineer Interview Questions, Process, and Tips for Experienced

Updated 8 Jan 2025

Top GlobalLogic Software Engineer Interview Questions and Answers for Experienced

View all 16 questions

GlobalLogic Software Engineer Interview Experiences for Experienced

17 interviews found

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

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basics of ruby like difference between class and object, what is ORM, Some code on hash.
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 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude Test was easy to moderate.

Round 2 - Technical 

(2 Questions)

  • Q1. Difference between Compile Time Polymorphism and Runtime Polymorphism
  • Ans. 

    Compile time polymorphism is achieved through function overloading and operator overloading, while runtime polymorphism is achieved through function overriding using virtual functions.

    • Compile time polymorphism is resolved during compile time based on the number and types of arguments passed to a function.

    • Runtime polymorphism is resolved during runtime based on the actual object being referred to by a base class pointer...

  • Answered by AI
  • Q2. Write Java Program to Reverse given String. By sharing Screen.
  • Ans. 

    Java program to reverse a given string using StringBuilder

    • Create a StringBuilder object with the given string

    • Use the reverse() method of StringBuilder to reverse the string

    • Convert the reversed StringBuilder object back to a string

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. HR Ma'am gave Introduction about Company.
  • Q2. HR Ma'am asked about Salary expectation.
Round 4 - Offer Letter 

(2 Questions)

  • Q1. Asked about joining confirmation.
  • Q2. Asked about Home address for Laptop Delevery.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Core Java, less questions on real time project. More questions on basics.

Software Engineer Interview Questions Asked at Other Companies for Experienced

Q1. String Compression Problem Statement Implement a program that per ... read more
asked in HCLTech
Q2. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q3. Total time: 110 mins 1. Find missing and duplicate numbers from g ... read more
asked in HCLTech
Q4. Reverse Array Elements Given an array containing 'N' elements, th ... read more
asked in Cisco
Q5. Intersection of Linked List Problem You are provided with two sin ... read more
Interview experience
1
Bad
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 - Aptitude Test 

Mathematical and analytical reasoning questions they will ask.

Round 3 - One-on-one 

(3 Questions)

  • Q1. They will tell to code and its basic coding questions they were asking? Nothing else they will ask?
  • Q2. Why should I take you?
  • Q3. I am hardworking and keen to learn any technology

Interview Preparation Tips

Interview preparation tips for other job seekers - They will tell to code and its basic coding questions they were asking
Round 1 - Technical 

(2 Questions)

  • Q1. Asked 2 programs reverse string
  • Q2. Asked 2 programs first character captial of each word
Round 2 - Technical 

(3 Questions)

  • Q1. Asked programming questions
  • Q2. Asked programming questions1
  • Q3. Asked programming questions 2
Round 3 - Technical 

(2 Questions)

  • Q1. Asked about solid principals
  • Q2. Asked about solid principals managerial round
Round 4 - HR 

(1 Question)

  • Q1. Salary related questions Hr was very tricky

Interview Preparation Tips

Interview preparation tips for other job seekers - It was very tough and technical
Ne prepared

GlobalLogic interview questions for designations

 Senior Software Engineer

 (43)

 Associate Software Engineer

 (15)

 Software Engineer Trainee

 (12)

 Junior Software Engineer

 (1)

 Embedded Software Engineer

 (1)

 Software Development Engineer

 (1)

 Software Developer

 (21)

 Software Consultant

 (1)

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

(2 Questions)

  • Q1. What is quick sort in data structure?
  • Ans. 

    Quick sort is a sorting algorithm that uses divide and conquer approach to sort an array or list.

    • It selects a pivot element and partitions the other elements into two sub-arrays, according to whether they are less than or greater than the pivot.

    • It then recursively sorts the sub-arrays.

    • It is a very efficient sorting algorithm with an average time complexity of O(n log n).

  • Answered by AI
  • Q2. What is linked list in data structure
  • Ans. 

    A linked list is a linear data structure where each element is a separate object with a pointer to the next element.

    • Consists of nodes that contain data and a pointer to the next node

    • Can be singly linked or doubly linked

    • Allows for efficient insertion and deletion operations

    • Example: Linked list can be used to implement a stack or queue

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All over it was good and coding mandatory
For first round

Skills evaluated in this interview

Get interview-ready with Top GlobalLogic Interview Questions

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

I applied via Approached by Company and was interviewed before May 2022. There were 4 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 - Coding Test 

First round will be a assessement for 1 hour there the questions will come regarding springboot, java and dsa.Its mcq.
Then there is some db questions where we need to write a query according to given requirement and test it.
Then there is 1 coding questions where we need to pass all the test cases

Round 3 - Technical 

(3 Questions)

  • Q1. In technical round they basically ask from core java likes oops concept,multithreading, exception handling. Then they move into java8 features and oops collections. They ask some basic questions from sprin...
  • Q2. Code to find the occurence of character in a string.
  • Ans. 

    Code to find the occurrence of a character in a string.

    • Iterate through the string and check each character against the target character.

    • Use a loop to count the number of occurrences.

    • Consider using built-in functions like count() or find().

  • Answered by AI
  • Q3. Code to check the strings are anagram or not
  • Ans. 

    Code to check if two strings are anagram or not

    • An anagram is a word or phrase formed by rearranging the letters of a different word or phrase

    • To check if two strings are anagram, we can sort both strings and compare them

    • Alternatively, we can use a hash table to count the frequency of each character in both strings and compare the counts

  • Answered by AI
Round 4 - One-on-one 

(1 Question)

  • Q1. Last one is one to one round where hr will discuss the salary . Nothing important.

Interview Preparation Tips

Topics to prepare for GlobalLogic Software Engineer interview:
  • Core Java
  • Java 8
  • Collections
  • Springboot
  • Multithreading

Skills evaluated in this interview

Software Engineer Jobs at GlobalLogic

View all

I applied via Naukri.com and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. It was the first technical round in they mostly asked all the basis to advance questions related to angular, javascript, Jasmine Karma, html ,css.
Round 2 - Technical 

(1 Question)

  • Q1. It was the techno managerial round in which they just discussed about the agile methodologies
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and the hr told me about globallogic and some policies

Interview Preparation Tips

Topics to prepare for GlobalLogic Software Engineer interview:
  • Angular
  • Javascript
  • Jasmine Karma
  • Hoisting
  • Binding
  • Angular universal
Interview preparation tips for other job seekers - Just be confident and prepare the basics.

I applied via Naukri.com and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

MCQ - Java, Springboot
1 Coding question
Email writing
Speaking on a topic for a minute

Round 2 - Technical 

(2 Questions)

  • Q1. Basic Java interview questions, mostly on multithreading, exception handling, collections, OOPS
  • Q2. Expecting the output of a program, code debugging
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions - introduction, strengths and weakness, about previous job challenges

Interview Preparation Tips

Interview preparation tips for other job seekers - I applied for the job role Java developer so mainly they focused on java. Get the basics clear
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Sep 2022. There were 4 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 - Coding Test 

They asked me technical questions about my technology (java)

Round 3 - Technical 

(1 Question)

  • Q1. In this round also I faced java questions.
Round 4 - HR 

(1 Question)

  • Q1. Why are you leaving your current organisation?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Count the frequency of the charcters in a word
  • Ans. 

    To count the frequency of characters in a word, iterate through the word and store the count of each character in a data structure.

    • Create a map or dictionary to store the count of each character

    • Iterate through the word and update the count of each character in the map

    • Return the map with character frequencies

  • Answered by AI

Skills evaluated in this interview

GlobalLogic Interview FAQs

How many rounds are there in GlobalLogic Software Engineer interview for experienced candidates?
GlobalLogic interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the GlobalLogic interview process for experienced candidates are Technical, HR and One-on-one Round.
How to prepare for GlobalLogic Software Engineer interview for experienced candidates?
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 GlobalLogic. The most common topics and skills that interviewers at GlobalLogic expect are HTML, Java, Healthcare, Python and Software Engineering.
What are the top questions asked in GlobalLogic Software Engineer interview for experienced candidates?

Some of the top questions asked at the GlobalLogic Software Engineer interview for experienced candidates -

  1. What is the IDisposal? Give an example used in the applicsti...read more
  2. What is Solid Principle? Give the examples used in your applicati...read more
  3. code to find the occurence of character in a stri...read more
How long is the GlobalLogic Software Engineer interview process?

The duration of GlobalLogic Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

GlobalLogic Software Engineer Interview Process for Experienced

based on 7 interviews

3 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • HR Round
View more
GlobalLogic Software Engineer Salary
based on 3k salaries
₹3.1 L/yr - ₹12.6 L/yr
8% less than the average Software Engineer Salary in India
View more details

GlobalLogic Software Engineer Reviews and Ratings

based on 327 reviews

3.6/5

Rating in categories

3.3

Skill development

3.8

Work-life balance

3.2

Salary

3.6

Job security

3.6

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 327 Reviews and Ratings
Full-Stack Software Engineer (Nodejs ,React Js)

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Explore more jobs
Associate Analyst
4k salaries
unlock blur

₹1.2 L/yr - ₹5 L/yr

Senior Software Engineer
3.4k salaries
unlock blur

₹5.2 L/yr - ₹22.3 L/yr

Analyst
3.1k salaries
unlock blur

₹1.2 L/yr - ₹5.7 L/yr

Software Engineer
3k salaries
unlock blur

₹3 L/yr - ₹12.6 L/yr

Associate Consultant
2.9k salaries
unlock blur

₹9.2 L/yr - ₹33 L/yr

Explore more salaries
Compare GlobalLogic with

Genpact

3.8
Compare

DXC Technology

3.7
Compare

Sutherland Global Services

3.5
Compare

Optum Global Solutions

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