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 Developer Trainee Interview Questions and Answers

Updated 20 Nov 2024

GlobalLogic Software Developer Trainee Interview Experiences

3 interviews found

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

I applied via campus placement at Sathyabama University and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Coding Test 

First round consists of aptitude , Networks , OS and 2 Medium level Coding Questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. About HashMap, OOPs, SQL Queries
  • Q2. DSA medium Level question, implementation of linkedlist
Round 3 - Manegerial Round 

(2 Questions)

  • Q1. What are the tech stacks used in project?
  • Ans. 

    The tech stacks used in the project include Java, Spring Boot, Angular, and MySQL.

    • Java

    • Spring Boot

    • Angular

    • MySQL

  • Answered by AI
  • Q2. Again Sql queries, Project Explanation, Architecture of my project
Round 4 - HR 

(2 Questions)

  • Q1. Personal Info, General Questions
  • Q2. Problems faced in the project etc
  • Ans. 

    In the project, we faced challenges with integrating third-party APIs and managing dependencies.

    • Difficulty in understanding and implementing complex API documentation

    • Issues with compatibility and versioning of different APIs

    • Troubleshooting errors and bugs caused by API interactions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on OOPS concepts and SQL concepts, these helps a lot not only for this interview.
DSA is must , u should be good in arrays, string and some major concepts atleast implementation like creation of linked list and all.

Skills evaluated in this interview

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

I applied via campus placement at Birsa Institute of Technology (BIT) Sindri, Jharkhand and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

It consists of some aptitude ques, around 40 technical questions, 1 email question and 2 coding

Round 2 - Technical 

(2 Questions)

  • Q1. Based on SQL language
  • Q2. Based on Oops Language
Round 3 - Behavioral 

(2 Questions)

  • Q1. Example to show leadership qualities
  • Q2. Example to show where you have failed
  • Ans. 

    Failed to meet project deadline due to underestimating complexity

    • Underestimated time required for a project

    • Did not allocate enough resources

    • Learned to better assess project requirements and plan accordingly

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Are u ready to reallocate
  • Q2. Where do u see yourself after 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident

Software Developer Trainee Interview Questions Asked at Other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. ... read more
Q2. What is a static keyword in java? Where are the static variables ... read more
Q3. 1.Do you use social media? What is the use of it? 2.Tell us about ... read more
Q4. 2.You are given a chess board and the position of queen find the ... read more
asked in CodeAegis
Q5. 4 pills are medicine, in which 2 pills for fever and 2 pills for ... read more
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 Jan 2024. There were 4 interview rounds.

Round 1 - Coding Test 

It was bit difficult . The questions were asked mainly from the tree and graphs

Round 2 - Technical 

(1 Question)

  • Q1. The coding question that were asked were easy and they only asked from your resume .
Round 3 - Behavioral 

(1 Question)

  • Q1. In this round they mainly check your thinking ability . They asked aptitude questions.
Round 4 - HR 

(1 Question)

  • Q1. It was quite friendly and you only have to carry a good conversation with the HR

Interview Preparation Tips

Topics to prepare for GlobalLogic Software Developer Trainee interview:
  • DSA
  • C++
  • Web Designing
Interview preparation tips for other job seekers - Go through the basics of the languages and framework and for coding question go through the strivers dsa sheet

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Oct 2023. There were 3 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 

Aptitude tests assume that individuals have inherent strengths and weaknesses and have a natural inclination toward success or failure in specific areas based on their innate characteristics

The aptitude interview process can vary depending on the company and the role, but here are some common elements you might encounter.

Some companies may require you to take an aptitude test, which assesses your problem-solving, analytical, and critical thinking abilities. These tests often include numerical, verbal, and logical reasoning questions.

Round 3 - Assignment 

To write about a superhero corrector that you like.
I suggest "Batman'' is my superhero
"Very Short Story, I'm Batman!"
I was having this conversation with a woman wearing a Batman T-Shirt. Admiring her shirt, I looked at her and said, by the way, I'm "Batman".

She must have forgotten she had that shirt on because she looked down momentarily, then up at me and smiled before saying, oh yeah? But, do you have a Bat Cave?

I thought about it for a second... (1 second passes)

Looked at her in they eyes and while retaining as much male ego as I could manage said, "Ok, You're Batman", broken and dejected, I just walked away. Now, I'm "Wonderman", if anyone asks.

The end.

I had no idea there was actually a real "Wonderman..."

Interview Preparation Tips

Interview preparation tips for other job seekers - Don’t lie
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at J S S Academy of Technical Education, Bangalore and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Average to easy difficulty level.

Round 2 - Technical 

(3 Questions)

  • Q1. Java code of string manipulation
  • Ans. 

    String manipulation in Java involves various methods like substring, concat, replace, etc.

    • Use substring() to extract a part of the string

    • Use concat() to concatenate two strings

    • Use replace() to replace a specific character or substring in a string

  • Answered by AI
  • Q2. What is the Java code for various types of sorting algorithms?
  • Ans. 

    Various sorting algorithms in Java code

    • Bubble Sort: int[] arr = {5, 2, 8, 1, 3}; Arrays.sort(arr);

    • Selection Sort: int[] arr = {5, 2, 8, 1, 3}; Arrays.sort(arr);

    • Insertion Sort: int[] arr = {5, 2, 8, 1, 3}; Arrays.sort(arr);

    • Merge Sort: int[] arr = {5, 2, 8, 1, 3}; Arrays.sort(arr);

    • Quick Sort: int[] arr = {5, 2, 8, 1, 3}; Arrays.sort(arr);

  • Answered by AI
  • Q3. Sql query and topics related to joins.
Round 3 - HR 

(4 Questions)

  • Q1. About yourself and family
  • Q2. What do you know about the company?
  • Ans. 

    The company is a leading software development firm specializing in creating innovative solutions for various industries.

    • Specializes in creating innovative software solutions

    • Works with clients from various industries

    • Known for high-quality and reliable products

    • Has a strong team of software engineers and developers

  • Answered by AI
  • Q3. Can you provide examples of real-life scenarios where you handled conflicts with either a colleague or a manager?
  • Ans. 

    Handled conflicts by addressing issues directly, seeking compromise, and maintaining professionalism.

    • Addressed a disagreement with a colleague by scheduling a one-on-one meeting to discuss concerns and find common ground.

    • Resolved a conflict with a manager by actively listening to their perspective, providing feedback, and working together to find a solution.

    • Maintained professionalism during conflicts by staying calm, r...

  • Answered by AI
  • Q4. What actions would you take if your manager does not approve your product idea, and how would you attempt to persuade them?
  • Ans. 

    I would gather more data to support my idea, present a compelling case to my manager, and be open to feedback and compromise.

    • Gather data to support the idea, such as market research, user feedback, or cost-benefit analysis.

    • Prepare a well-structured presentation highlighting the potential benefits of the product idea.

    • Listen to the manager's concerns and feedback, and be open to making adjustments or compromises.

    • Seek sup...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident; they will strive to comfort you despite any feelings of hesitation and nervousness. A foundational understanding of Java or C++, along with knowledge of data structures and algorithms (DSA), will be extremely advantageous. You should illustrate your potential contributions while also recognizing your limitations. Foster a positive atmosphere.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Run time polymorphism code
  • Q2. Linked list code
  • Q3. Deep copy shallow copy differences
  • Ans. 

    Deep copy creates a new copy of an object with its own unique memory space, while shallow copy creates a new object that references the same memory locations as the original object.

    • Deep copy duplicates all nested objects, while shallow copy only duplicates the references to nested objects.

    • Deep copy ensures that changes to the copied object do not affect the original object, while shallow copy may lead to unintended sid...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. More deep questions about polymorphism code
  • Q2. Code for interchange of strings without strcpy
  • Ans. 

    Use a loop to swap characters of two strings without using strcpy function.

    • Create two arrays of characters to store the strings

    • Use a loop to iterate through each character of the strings and swap them

    • Ensure to handle cases where strings have different lengths

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please prepare oops concept and data structure well because its easy for first round but for second round its too difficult - the interviewer was so irritating and asked very stupid wuestions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Topics on electronics and C programming

Round 2 - Technical 

(4 Questions)

  • Q1. Questions on simple python programs and electronics basics
  • Q2. Question on simple linked list
  • Q3. Program for fibonacci seq
  • Ans. 

    Program to generate Fibonacci sequence

    • Start with two initial numbers, 0 and 1

    • Add the previous two numbers to get the next number in the sequence

    • Repeat this process to generate the Fibonacci sequence

    • Example: 0, 1, 1, 2, 3, 5, 8, 13, ...

  • Answered by AI
  • Q4. Questions on mosfets
Round 3 - HR 

(1 Question)

  • Q1. Why you would like to join the company, and other questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience in the interview
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(1 Question)

  • Q1. Architecture discussion around projects
Round 2 - Technical 

(1 Question)

  • Q1. Caching, auth discussion in depth

Interview Preparation Tips

Interview preparation tips for other job seekers - I've cleared both the technical rounds, still after that HR ghosted me and after following up multiple times she mentioned the vacancy was cancelled.
it was highly unprofessional of them.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain over all experience
  • Q2. Asked question on Core and advance java topic
Round 2 - Technical 

(2 Questions)

  • Q1. Some advance topic of Java
  • Q2. DSA
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Q2. Relocation
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was kind of difficult the coding part

Round 2 - Group Discussion 

They asked basic on going topic like impact of AI

Round 3 - Technical 

(3 Questions)

  • Q1. Very much complex questions on cloud, oops, python and networks
  • Q2. What is diffrent between linear and logestic regression
  • Ans. 

    Linear regression is used for predicting continuous values, while logistic regression is used for predicting binary outcomes.

    • Linear regression is used when the dependent variable is continuous and has a linear relationship with the independent variable.

    • Logistic regression is used when the dependent variable is binary or categorical and the relationship between the independent variables and the outcome is non-linear.

    • Lin...

  • Answered by AI
  • Q3. Certain questions on cloud

Interview Preparation Tips

Interview preparation tips for other job seekers - just prepare with all concepts you know from oops, os, networks and cloud

GlobalLogic Interview FAQs

How many rounds are there in GlobalLogic Software Developer Trainee interview?
GlobalLogic interview process usually has 4 rounds. The most common rounds in the GlobalLogic interview process are HR, Coding Test and Technical.
What are the top questions asked in GlobalLogic Software Developer Trainee interview?

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

  1. What are the tech stacks used in proje...read more
  2. Example to show where you have fai...read more
  3. Problems faced in the project ...read more

Tell us how to improve this page.

GlobalLogic Software Developer Trainee Interview Process

based on 4 interviews

1 Interview rounds

  • HR Round
View more
GlobalLogic Software Developer Trainee Salary
based on 6 salaries
₹5.5 L/yr - ₹8 L/yr
71% more than the average Software Developer Trainee Salary in India
View more details
Associate Analyst
3.9k salaries
unlock blur

₹1 L/yr - ₹7.2 L/yr

Senior Software Engineer
3.3k salaries
unlock blur

₹5.2 L/yr - ₹22 L/yr

Analyst
3.1k salaries
unlock blur

₹1.2 L/yr - ₹5.5 L/yr

Software Engineer
3k salaries
unlock blur

₹3 L/yr - ₹13 L/yr

Associate Consultant
2.8k salaries
unlock blur

₹9.2 L/yr - ₹34 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