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 and Answers

Updated 19 Nov 2024

15 Interview questions

A Software Engineer Trainee was asked
Q. 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 Fibonacci, factorials, prime no. 5. Retur...
Ans. 

This interview question covers various topics in Java programming, including OOP concepts, inheritance, keywords, and implementing mathematical algorithms.

  • OOP concepts include encapsulation, inheritance, polymorphism, and abstraction.

  • Inheritance allows a class to inherit properties and methods from another class.

  • To prevent inheritance in Java, use the 'final' keyword before the class declaration.

  • Sealed, final, and...

A Software Engineer Trainee was asked
Q. 

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

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
A Software Engineer Trainee was asked
Q. 

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 are...

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 placem...

A Software Engineer Trainee was asked
Q. 

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.

What people are saying about GlobalLogic

View All
Got a question about GlobalLogic?
Ask anonymously on communities.
A Software Engineer Trainee was asked
Q. 

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. F...

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.

GlobalLogic Software Engineer Trainee Interview Experiences

12 interviews found

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

DSA with Programming related and aptitude MCQ

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic DSA Question
  • Q2. Resume related question
Round 3 - Behavioral 

(2 Questions)

  • Q1. Basic managerial questions
  • Q2. Introduction, Resume, Projects etc
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

The coding test consisted of 2 java coding questions, Aptitude MCQ's and Technical MCQ's. The coding questions were easy to medium level. It also consisted of a SQL query followed by a javascript question.

Round 2 - Technical 

(3 Questions)

  • Q1. The technical interview consisted of questions from both projects and Data Structure and OOPs concepts. The interviewer was friendly and motivated me.
  • Q2. When is double linked list used.?
  • Ans. 

    Double linked lists are used when there is a need to traverse the list in both directions efficiently.

    • Allows for traversal in both directions

    • Insertions and deletions can be done in constant time

    • Used in implementations of undo functionality in text editors

  • Answered by AI
  • Q3. Write a program for inheritance and polymorphism?
  • Ans. 

    Inheritance allows a class to inherit properties and methods from another class, while polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Create a base class with common properties and methods

    • Create derived classes that inherit from the base class and add their own unique properties and methods

    • Use virtual functions in the base class and override them in the derived classes ...

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

(2 Questions)

  • Q1. Discussion about projects.
  • Q2. Some Aptitude Questions
Round 4 - HR 

(2 Questions)

  • Q1. What are your strengths?
  • Q2. What are the problems faced when u were working on your project?

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep working on your DSA and Make good projects to showcase in the interview.

Skills evaluated in this interview

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

Aptitude and coding , basically there was aptitude and dsa questions

Round 2 - Technical 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science, passionate about coding and problem-solving.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Experience with programming languages like Java, Python, and C++

    • Completed internships at tech companies

    • Strong communication and teamwork skills

  • Answered by AI
  • Q2. Reverse the linked list
  • Ans. 

    Reverse a linked list

    • Iterate through the linked list and reverse the pointers

    • Use three pointers to keep track of current, previous, and next nodes

    • Update the next pointer of each node to point to the previous node

  • Answered by AI
  • Q3. Reverse the array
  • Ans. 

    Reverse the array of strings

    • Create a new array and iterate through the original array in reverse order, adding each element to the new array

    • Alternatively, you can use the reverse() method on the array itself

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - keep practice coding

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

The coding test was conducted in hackerearth platform.The questions are 4 dsa with 3 easy and 1 hard.

Round 2 - Technical 

(2 Questions)

  • Q1. Logical question - you have a 3 gallon container and a 5 gallon container, how do you measure a 4 gallon volume. basic oops questions like define polymorphism, difference between class and object. basic ds...
  • Q2. Basic oops questions like define polymorphism, difference between class and object. basic dsa question on sorting.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through basics on dsa, oops, dbms and be prepared with logical questions.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 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 - Aptitude Test 

40 MCQs of aptitude for 40 minutes. 3 coding questions(1 - easy, 2- medium, 3 - hard)

Round 3 - Technical 

(2 Questions)

  • Q1. Definitions and example code of OOPS Concepts
  • Ans. 

    OOPS Concepts are fundamental principles of Object-Oriented Programming.

    • Encapsulation - bundling of data and methods that operate on that data

    • Inheritance - ability of a class to inherit properties and methods from its parent class

    • Polymorphism - ability of objects to take on multiple forms

    • Abstraction - hiding of complex implementation details from the user

    • Example code: class Car { private String make; public void setMak...

  • Answered by AI
  • Q2. 5 Liter, 4 Liter, 3 Liter container puzzle
Round 4 - HR 

(1 Question)

  • Q1. Basic details about you

Interview Preparation Tips

Topics to prepare for GlobalLogic Software Engineer Trainee interview:
  • OOPS
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 

Questions were of medium difficulty.

Round 3 - Technical 

(1 Question)

  • Q1. Basic Questions were asked to ensure that the candidate is clear with basics.
Round 4 - Behavioral 

(1 Question)

  • Q1. Manager will try to understand your mentality and your dedication for the work.
Round 5 - HR 

(1 Question)

  • Q1. HR will ask about reallocation will and all.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you're fresher, you have to clear your basics before sitting in GL Interview.

I applied via Campus Placement and was interviewed in Oct 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Class and object, 4 pillar of OOPS, should now how to write code
  • Q2. Family background, fav subject, ask question from maths trigno.

Interview Preparation Tips

Topics to prepare for GlobalLogic Software Engineer Trainee interview:
  • OOPS
Interview preparation tips for other job seekers - Stay confident all the questions are of easy level but you should have strong concept on OOPS.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Using hackerEarth platform - MCQs and 3 coding questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Write a program to add a node to the end of the linkedlist
  • Ans. 

    Program to add a node to the end of a linked list

    • Create a new node with the data to be added

    • Traverse the linked list to reach the last node

    • Update the next pointer of the last node to point to the new node

  • Answered by AI
  • Q2. Write a program to check if a number is palindrome or not.
  • Ans. 

    Program to check if a number is palindrome or not.

    • Convert the number to a string for easier comparison

    • Reverse the string and compare it with the original string

    • If they are the same, the number is a palindrome

  • Answered by AI
  • Q3. About OOP concepts
Round 3 - HR 

(1 Question)

  • Q1. Asked casual questions

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

2 coding questions and Java and SQL network based MCQ , there is some output based MCQ (mostly on java)

Round 2 - Technical 

(2 Questions)

  • Q1. 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 Fibonacci, factorials, prime no. 5. Ret...
  • Ans. 

    This interview question covers various topics in Java programming, including OOP concepts, inheritance, keywords, and implementing mathematical algorithms.

    • OOP concepts include encapsulation, inheritance, polymorphism, and abstraction.

    • Inheritance allows a class to inherit properties and methods from another class.

    • To prevent inheritance in Java, use the 'final' keyword before the class declaration.

    • Sealed, final, and stat...

  • Answered by AI
  • Q2. 1.What is primary foreign key 2. Explain ACID properties 3. Return 3 rd maximum salary 4. One SQL query on join 5. IN In SQL 6. Let var const in JS 7. what is proto in JS 8. Explain closure in JS
  • Ans. 

    Answers to interview questions for Software Engineer Trainee

    • Primary foreign key is a column in a table that is used to link to the primary key of another table

    • ACID properties are Atomicity, Consistency, Isolation, and Durability which ensure database transactions are reliable

    • To return 3rd maximum salary, use the LIMIT and OFFSET clauses in SQL

    • SQL join is used to combine data from two or more tables based on a related c...

  • Answered by AI
Round 3 - Behavioral 

(2 Questions)

  • Q1. Tell me about yourself , and explain your projects
  • Q2. 1. Implement Fibonacci using dynamic programming 2. Strength and weakness
  • Ans. 

    Implement Fibonacci using dynamic programming and discuss strengths and weaknesses.

    • Dynamic programming uses memoization to store previously calculated values

    • Fibonacci sequence is a classic example of dynamic programming

    • Strengths: efficient, reduces redundant calculations, improves performance

    • Weaknesses: requires additional memory, may not be suitable for small problems

    • Example: fib(n) = fib(n-1) + fib(n-2), with base ca...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus in basic concepts of language and basic algorithm of DSA

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy to medium level of difficulty

Round 2 - Coding Test 

Easy to medium level of difficulty

Round 3 - HR 

(1 Question)

  • Q1. Why do you want join GL

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.

Overall Interview Experience Rating

4.4/5

based on 7 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
GlobalLogic Software Engineer Trainee Salary
based on 125 salaries
₹4.5 L/yr - ₹7.5 L/yr
37% 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
4.1k salaries
unlock blur

₹1 L/yr - ₹4 L/yr

Senior Software Engineer
3.6k salaries
unlock blur

₹4 L/yr - ₹29 L/yr

Software Engineer
3.2k salaries
unlock blur

₹4 L/yr - ₹13.4 L/yr

Analyst
3.1k salaries
unlock blur

₹1.2 L/yr - ₹5.5 L/yr

Associate Consultant
3.1k salaries
unlock blur

₹9.5 L/yr - ₹35 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
write
Share an Interview