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 Trainee Interview Questions, Process, and Tips

Updated 19 Nov 2024

Top GlobalLogic Software Engineer Trainee Interview Questions and Answers

  • Q1. Slot Game Problem Statement You are given a slot machine with four slots, each containing one of the colors Red (R), Yellow (Y), Green (G), or Blue (B). You must guess t ...read more
  • Q2. 1. What is oops concepts 2. Explain inheritance with example and how to prevent inheritance in Java?. 3. What is sealed, final, static keywords in Java 4. Implement Fibon ...read more
  • Q3. Left Rotations of an Array Given an array of size N and Q queries, each query requires left rotating the original array by a specified number of elements. Return the mod ...read more
View all 15 questions

GlobalLogic Software Engineer Trainee Interview Experiences

12 interviews found

I applied via Walk-in and was interviewed before Dec 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Code : string reversal
  • Ans. 

    Code to reverse a given string.

    • Iterate through the string from end to start and append each character to a new string.

    • Use built-in functions like reverse() in Python or StringBuilder.reverse() in Java.

    • Convert the string to an array, reverse the array, and then convert it back to a string.

  • Answered by AI
  • Q2. SQL Queries
  • Q3. OOPS Concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Core Java deeply

Skills evaluated in this interview

I was interviewed before May 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

3 coding question. 2 medium, 1 hard

  • Q1. 

    Left Rotations of an Array

    Given an array of size N and Q queries, each query requires left rotating the original array by a specified number of elements. Return the modified array for each query.

    Input:

    ...
  • Ans. 

    Rotate an array left by a specified number of elements for each query.

    • Parse input: read number of test cases, array size, queries, and array elements

    • For each query, left rotate the array by the specified number of elements

    • Return the modified array for each query

  • Answered by AI
  • Q2. 

    Slot Game Problem Statement

    You are given a slot machine with four slots, each containing one of the colors Red (R), Yellow (Y), Green (G), or Blue (B). You must guess the colors without prior knowledge. ...

  • Ans. 

    Calculate total score based on guessing colors in a slot machine.

    • Iterate through each slot in the original and guess strings to compare colors.

    • Count perfect hits when color matches in correct slot, and pseudo-hits when color matches in different slot.

    • Calculate total score by adding perfect hits and pseudo-hits.

    • Handle edge cases like invalid input strings or exceeding constraints.

  • Answered by AI
  • Q3. 

    N Queens Problem

    Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

    Explanation:

    A queen can attack another queen if they ar...

  • Ans. 

    The N Queens Problem involves finding all possible placements of N queens on an N x N chessboard where no two queens threaten each other.

    • Understand the constraints of the problem: N represents the size of the chessboard and the number of queens, and queens can attack each other if they are in the same row, column, or diagonal.

    • Implement a backtracking algorithm to explore all possible configurations of queen placements ...

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Medium

The interviewer was supportive and he asked me various questions. He asked me a question similar to N Sum. Asked me to optimise it as much as possible. Had discussion over topics such related to oops, Java, Java script, data structures, DBMS, Trees, graphs, some named algorithm, merge sort etc

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Given an array and a target sum, find pairs of elements that add up to the target sum.

    • Iterate through the array and for each element, check if the complement (target sum - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list.

    • Sort the result list based on the first element of each pair, and then the second element if the first elements are equal.

  • Answered by AI
Round 3 - Face to Face 

Round duration - 30 Minutes
Round difficulty - Medium

It was a managerial round to test candidates presence of mind. Puzzles and mathematical problems were asked. Some situation based questions were also asked in this round.

Round 4 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interviewer asked me about SDLC, agile etc and situation based questions to know how would I respond in various situations.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Institute of Engineering and Technology (IET). I applied for the job as Trainee Software Engineer in NoidaEligibility criteria70+ percent.Global Logic interview preparation:Topics to prepare for the interview - Data Structures, Algorithm, DBMS, OOPS, Android, CPPTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Be confident and have a positive attitude when appearing as a fresher. You should be able to communicate your ideas.
Tip 2 : Be a good listener. Ask questions for clarification of the problem. Discuss your approach.
Tip 3 : Have a good understanding of DS and algo, should be able to code.

Application resume tips for other job seekers

Tip 1 : Add those things you should be able to talk about.
Tip 2 : Keep it clean and catchy.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Engineer Trainee Interview Questions Asked at Other Companies

asked in HSBC Group
Q1. Palindromic Linked List Problem Statement Given a singly linked l ... read more
asked in HSBC Group
Q2. Search in a 2D Matrix Given a 2D matrix MAT of size M x N, where ... read more
asked in GlobalLogic
Q3. Slot Game Problem Statement You are given a slot machine with fou ... read more
Q4. 1. Explain oops and its 4 pillars 2. Explain polymorphism with re ... read more
asked in HSBC Group
Q5. Maximum Level Sum in a Binary Tree Given a Binary Tree with integ ... read more

GlobalLogic Interview FAQs

How many rounds are there in GlobalLogic Software Engineer Trainee interview?
GlobalLogic interview process usually has 3-4 rounds. The most common rounds in the GlobalLogic interview process are Technical, Aptitude Test and HR.
How to prepare for GlobalLogic Software Engineer Trainee 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 GlobalLogic. The most common topics and skills that interviewers at GlobalLogic expect are ASP.Net, Algorithms, C#, Data Structures and OOP.
What are the top questions asked in GlobalLogic Software Engineer Trainee interview?

Some of the top questions asked at the GlobalLogic Software Engineer Trainee interview -

  1. 1. What is oops concepts 2. Explain inheritance with example and how to preven...read more
  2. 1.What is primary foreign key 2. Explain ACID properties 3. Return 3 rd maximum...read more
  3. 1. Implement Fibonacci using dynamic programming 2. Strength and weakn...read more

Tell us how to improve this page.

GlobalLogic Software Engineer Trainee Interview Process

based on 7 interviews

4 Interview rounds

  • Aptitude Test Round
  • Technical Round - 1
  • Technical Round - 2
  • HR Round
View more
GlobalLogic Software Engineer Trainee Salary
based on 112 salaries
₹4.5 L/yr - ₹7.3 L/yr
31% more than the average Software Engineer Trainee Salary in India
View more details

GlobalLogic Software Engineer Trainee Reviews and Ratings

based on 14 reviews

3.6/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

3.1

Salary

3.5

Job security

3.5

Company culture

2.8

Promotions

3.4

Work satisfaction

Explore 14 Reviews and Ratings
Associate Analyst
3.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
3.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
3.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
2.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare GlobalLogic with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

HCLTech

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