AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
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
3.6

based on 5k Reviews

Play video Play video Video summary
  • About
  • Reviews
    5k
  • Salaries
    37.3k
  • Interviews
    628
  • Jobs
    28
  • Benefits
    583
  • Photos
    19
  • Posts
    2

Filter interviews by

GlobalLogic Software Engineer Interview Questions and Answers

Updated 8 Jan 2025

39 Interview questions

A Software Engineer was asked 5mo ago
Q. Write a Java program to reverse a given string (screen sharing required).
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

A Software Engineer was asked 7mo ago
Q. What is a unique key?
Ans. 

A unique key is a field or combination of fields in a database table that uniquely identifies each record in the table.

  • A unique key ensures that no two records in a table have the same values for the specified key fields.

  • It can be a single field or a combination of multiple fields.

  • Unique keys are used to enforce data integrity and prevent duplicate entries.

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
View answers (286)
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
View answers (530)
asked in Tech Mahindra
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
View answers (81)
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
View answers (22)
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
View answers (9)
View All
A Software Engineer was asked 7mo ago
Q. What are the basic questions asked in a resume?
Ans. 

Discussing resume basics for software engineering interviews, focusing on key elements and best practices.

  • Tailor your resume for each job application, highlighting relevant skills and experiences.

  • Use clear and concise language; avoid jargon that may confuse the reader.

  • Include quantifiable achievements, such as 'Improved application performance by 30%'.

  • Highlight technical skills prominently, such as programming lan...

A Software Engineer was asked 7mo ago
Q. What are the basic theoretical concepts of OOPS?
Ans. 

Object-Oriented Programming (OOP) is a programming paradigm based on the concept of objects, which can contain data and methods.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism where a new class derives properties and behavior from an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to present the sa...

A Software Engineer was asked 9mo ago
Q. Tell me about C programming.
Ans. 

C programming is a powerful, low-level language used for system programming and application development.

  • C is a procedural programming language, focusing on function and procedure calls.

  • It provides low-level access to memory through pointers, e.g., 'int *ptr = &var;'

  • C supports structured programming with control statements like 'if', 'for', and 'while'.

  • It allows for dynamic memory allocation using functions lik...

A Software Engineer was asked 10mo ago
Q. Write a SELECT query.
Ans. 

A SELECT query retrieves data from a database table based on specified criteria.

  • Basic syntax: SELECT column1, column2 FROM table_name;

  • To select all columns: SELECT * FROM table_name;

  • Using WHERE clause: SELECT * FROM table_name WHERE condition;

  • Example: SELECT name, age FROM users WHERE age > 18;

  • Using ORDER BY: SELECT * FROM products ORDER BY price DESC;

A Software Engineer was asked 10mo ago
Q. Who invented the Java programming language?
Ans. 

James Gosling, Mike Sheridan, and Patrick Naughton invented the Java language.

  • Invented by James Gosling, Mike Sheridan, and Patrick Naughton at Sun Microsystems in the early 1990s.

  • Java was originally developed to be used in consumer electronic devices like set-top boxes.

  • Released in 1995 as a core component of Sun Microsystems' Java platform.

  • Known for its platform independence, allowing code to run on any device th...

Are these interview questions helpful?
A Software Engineer was asked 11mo ago
Q. What is Java, and can you explain its core concepts?
Ans. 

Java is a high-level programming language known for its portability, security, and object-oriented features.

  • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM).

  • It is object-oriented, allowing for the creation of reusable code through classes and objects.

  • Java is known for its security features, such as sandboxing and encryption.

  • It supports multithreading, allowing for co...

A Software Engineer was asked
Q. What is state management?
Ans. 

State management refers to the handling of application state, ensuring data consistency and user experience across components.

  • State can be local (within a component) or global (shared across components).

  • Examples of state management libraries include Redux, MobX, and Context API in React.

  • State can be managed using hooks like useState and useReducer in React.

  • In mobile apps, state management can be handled using libr...

A Software Engineer was asked
Q. What are the different types of keys in SQL?
Ans. 

Different keys in SQL include primary key, foreign key, unique key, and composite key.

  • Primary key uniquely identifies each record in a table

  • Foreign key establishes a relationship between two tables

  • Unique key ensures that all values in a column are unique

  • Composite key is a combination of multiple columns to uniquely identify a record

1 2 3 4

GlobalLogic Software Engineer Interview Experiences

56 interviews found

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 17 Nov 2024

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

I applied via Campus Placement and was interviewed in Oct 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

Basic aptitudes question in online test

Round 2 - Coding Test 

Two coding Q online test

Round 3 - Technical 

(2 Questions)

  • Q1. Resume bsic Q asked
  • Add your answer
  • Q2. Oops question basic theory
  • Ans. 

    Object-Oriented Programming (OOP) is a programming paradigm based on the concept of objects, which can contain data and methods.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

    • Inheritance: Mechanism where a new class derives properties and behavior from an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

    • Polymorphism: Ability to present the same in...

  • Answered by AI
    Add your answer
Round 4 - One-on-one 

(2 Questions)

  • Q1. One coding question asked to solve on paper of arrays
  • Ans. 

    Solve an array of strings problem by manipulating or analyzing the data effectively.

    • Identify the problem: Determine what needs to be done with the array of strings, e.g., sorting, filtering, or searching.

    • Use built-in functions: Leverage functions like sort(), filter(), or map() for efficient operations.

    • Consider edge cases: Handle empty arrays or strings, and ensure your solution works for all possible inputs.

    • Example: F...

  • Answered by AI
    Add your answer
  • Q2. Basic questions from resume
  • Add your answer
Round 5 - HR 

(2 Questions)

  • Q1. Relocating related questions
  • Add your answer
  • Q2. Why u want to join global logic
  • Ans. 

    I want to join Global Logic because of their reputation for cutting-edge technology solutions and collaborative work environment.

    • Global Logic is known for their innovative technology solutions

    • I am impressed by the collaborative work environment at Global Logic

    • I believe Global Logic offers great opportunities for professional growth and development

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident and little bit coding
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 4 Sep 2024

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 5 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. About c++ programming basics
  • Add your answer
  • Q2. About database management system
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. About c++ program basics
  • Add your answer
  • Q2. About dbms basics
  • Add your answer
Round 3 - Technical 

(2 Questions)

  • Q1. C programming questions on basics
  • Add your answer
  • Q2. And data base management system questions
  • Add your answer
Round 4 - Technical 

(2 Questions)

  • Q1. Same abot c programming
  • Ans. 

    C programming is a powerful, low-level language used for system programming and application development.

    • C is a procedural programming language, focusing on function and procedure calls.

    • It provides low-level access to memory through pointers, e.g., 'int *ptr = &var;'

    • C supports structured programming with control statements like 'if', 'for', and 'while'.

    • It allows for dynamic memory allocation using functions like 'ma...

  • Answered by AI
    Add your answer
  • Q2. And then basics on dbms
  • Add your answer
Round 5 - HR 

(2 Questions)

  • Q1. About global logic company
  • Add your answer
  • Q2. And relocate questions
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 16 Dec 2024

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Question based on hasmap, spring boot

Round 2 - Technical 

(2 Questions)

  • Q1. Oops , java based questions
  • Add your answer
  • Q2. Mcq based , tricky exception handling questions
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go there, so toxic and worst work environment.
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 4 Nov 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website

Round 1 - Coding Test 

3 Leetocde type problems which were in easy category.

Round 2 - Technical 

(1 Question)

  • Q1. Questions about SQL and python
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Focus on finding if candidate is culture fit.
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 2 Oct 2024

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.
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 20 Sep 2024

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

(2 Questions)

  • Q1. What is diff b/w HTML5 vs HTML?
  • Ans. 

    HTML5 is the latest version of HTML with new features and improvements.

    • HTML5 supports new elements like <header>, <footer>, <nav>, <article>, <section> etc.

    • HTML5 introduces new APIs like Geolocation API, Drag and Drop API, Canvas API, Web Storage API, etc.

    • HTML5 supports multimedia elements like <audio> and <video> without the need for plugins.

    • HTML5 has improved semantics, acces...

  • Answered by AI
    Add your answer
  • Q2. JS questions related to async , promise , etc.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - There were two rounds of interview 1) Technical interview round - where i was asked to solve op based problem of js , and 2 basic array problems , therotical questions of HTML,CSSS,REACT etc.

Skills evaluated in this interview

Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 24 Aug 2024

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Some childish question was given to us.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Write any select query
  • Add your answer
  • Q2. Who has invented java language.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Not to join this company. They have fool managers like Rajat Uppal & Dikshit Arora who ruin your career. GL is a good company but can terminate you with no reason. They have good comfort zone. This company is for non - tech candidates only. In tech profile also u will going to get non- tech work only. No skills No process.

Skills evaluated in this interview

Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 8 Nov 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Oct 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. 4 pillers of oops
  • Add your answer
  • Q2. About your projects what you mentioned
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Dec 2024

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was apti+coding with One twenty minutes time. It had english questions also.

Round 2 - Technical 

(2 Questions)

  • Q1. Asked about dsa and oops
  • Add your answer
  • Q2. About programming language and projects
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Asked about future and why i want to join
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 26 Dec 2024

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

I applied via Approached by Company and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Assignment 

There was an assignment on technical skills that included SQL and Python at an easy to medium level.

Round 2 - Technical 

(1 Question)

  • Q1. It includes python coding questions and sql join questions.
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Basic Discussion
  • Add your answer
Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about GlobalLogic?
Ask anonymously on communities.
More about working at GlobalLogic
  • HQ - San Jose, California, United States (USA)
  • IT Services & Consulting
  • 10k-50k Employees (India)

GlobalLogic Interview FAQs

How many rounds are there in GlobalLogic Software Engineer interview?
GlobalLogic interview process usually has 2-3 rounds. The most common rounds in the GlobalLogic interview process are Technical, HR and Coding Test.
How to prepare for GlobalLogic Software Engineer 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 HTML, Java, Healthcare, Software Engineering and Python.
What are the top questions asked in GlobalLogic Software Engineer interview?

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

  1. What is the IDisposal? Give an example used in the applicsti...read more
  2. How you will handle Exceptions in Spring Bo...read more
  3. What is Solid Principle? Give the examples used in your applicati...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 Interviews By Designations

  • GlobalLogic Associate Analyst Interview Questions
  • GlobalLogic Software Engineer Interview Questions
  • GlobalLogic Senior Software Engineer Interview Questions
  • GlobalLogic Analyst Interview Questions
  • GlobalLogic Software Developer Interview Questions
  • GlobalLogic Associate Consultant Interview Questions
  • GlobalLogic Consultant Interview Questions
  • GlobalLogic Associate Software Engineer Interview Questions
  • Show more
  • GlobalLogic Software Engineer Trainee Interview Questions
  • GlobalLogic Senior Test Engineer Interview Questions

Interview Questions for Popular Designations

  • Software Developer Interview Questions
  • Senior Software Engineer Interview Questions
  • Senior Engineer Interview Questions
  • System Engineer Interview Questions
  • Associate Software Engineer Interview Questions
  • Project Engineer Interview Questions
  • Lead Engineer Interview Questions
  • Software Development Engineer Interview Questions
  • Show more
  • Lead Software Engineer Interview Questions
  • Senior Developer Interview Questions

Overall Interview Experience Rating

3.9/5

based on 49 interview experiences

Difficulty level

Easy 27%
Moderate 73%

Duration

Less than 2 weeks 76%
2-4 weeks 21%
4-6 weeks 3%
View more

Top Skills for GlobalLogic Software Engineer

Software Development Interview Questions & Answers
250 Questions
Java Interview Questions & Answers
250 Questions

Software Engineer Interview Questions from Similar Companies

CGI Group
CGI Group Software Engineer Interview Questions
4.0
 • 82 Interviews
EPAM Systems
EPAM Systems Software Engineer Interview Questions
3.7
 • 47 Interviews
Virtusa Consulting Services
Virtusa Consulting Services Software Engineer Interview Questions
3.7
 • 44 Interviews
Optum Global Solutions
Optum Global Solutions Software Engineer Interview Questions
4.0
 • 43 Interviews
DXC Technology
DXC Technology Software Engineer Interview Questions
3.7
 • 39 Interviews
Societe Generale Global Solution Centre
Societe Generale Global Solution Centre Software Engineer Interview Questions
3.7
 • 37 Interviews
Nagarro
Nagarro Software Engineer Interview Questions
4.0
 • 29 Interviews
Bosch Global Software Technologies
Bosch Global Software Technologies Software Engineer Interview Questions
3.8
 • 24 Interviews
 UST
UST Software Engineer Interview Questions
3.8
 • 23 Interviews
Quest Global
Quest Global Software Engineer Interview Questions
3.6
 • 19 Interviews
View all
GlobalLogic Software Engineer Salary
based on 3.2k salaries
₹4 L/yr - ₹13.4 L/yr
10% less than the average Software Engineer Salary in India
View more details

GlobalLogic Software Engineer Reviews and Ratings

based on 341 reviews

3.6/5

Rating in categories

3.4

Skill development

3.8

Work-life balance

3.1

Salary

3.6

Job security

3.6

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 341 Reviews and Ratings
GlobalLogic Salaries in India
Associate Analyst
4.1k salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Senior Software Engineer
3.6k salaries
unlock blur

₹4 L/yr - ₹29 L/yr

Analyst
3.2k salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Software Engineer
3.2k salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Associate Consultant
3.1k salaries
unlock blur

₹16.1 L/yr - ₹28.8 L/yr

Explore more salaries
Compare GlobalLogic with
Genpact

Genpact

3.8
Compare
DXC Technology

DXC Technology

3.7
Compare
Sutherland Global Services

Sutherland Global Services

3.5
Compare
Optum Global Solutions

Optum Global Solutions

4.0
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • GlobalLogic Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter