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

Clear (1)

GlobalLogic Software Developer Interview Questions, Process, and Tips

Updated 10 Dec 2024

Top GlobalLogic Software Developer Interview Questions and Answers

  • Q1. Find Terms of Series Problem Ayush is tasked with determining the first 'X' terms of the series defined by 3 * N + 2, ensuring that no term is a multiple of 4. Input: Th ...read more
  • Q2. Reverse Array Elements Given an array containing 'N' elements, the task is to reverse the order of all array elements and display the reversed array. Explanation: The el ...read more
  • Q3. Tiling Problem Statement Given a board with 2 rows and N columns, and an infinite supply of 2x1 tiles, determine the number of distinct ways to completely cover the boar ...read more
View all 17 questions

GlobalLogic Software Developer Interview Experiences

21 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

SQL , CODING QUESTION PYTHON

Round 2 - Technical 

(2 Questions)

  • Q1. BASIC SQL QUESTIOS
  • Q2. OOPS 4 PILLARS INHERITANCE ETC
Round 3 - HR 

(2 Questions)

  • Q1. TELL ME ABOUT YOURSELF
  • Ans. 

    I am a software developer with 5 years of experience in Java, Python, and SQL.

    • 5 years of experience in Java, Python, and SQL

    • Strong problem-solving skills

    • Experience working in Agile development environment

    • Familiarity with version control systems like Git

    • Passionate about learning new technologies

  • Answered by AI
  • Q2. WHAT DO YOU KNOW ABOUT YOUR COMPANY
  • Ans. 

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

    • Company has a strong reputation for delivering high-quality software products

    • Specializes in creating custom solutions for clients in different industries

    • Known for innovative and cutting-edge technology solutions

    • Has a diverse portfolio of successful projects

    • Company values teamwork and collaboration in thei

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Easy to medium aptitude

Round 2 - Group Discussion 

GD on recent topics "ISRO"

Round 3 - Technical 

(1 Question)

  • Q1. Write a code for finding length of string
  • Ans. 

    Code to find the length of a string in an array of strings

    • Iterate through each string in the array and use the length property to find the length of each string

    • Store the length of each string in a separate array or print it out directly

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. How well do you work in a team
  • Ans. 

    I work well in a team, collaborating effectively and communicating openly with team members.

    • I have experience working in cross-functional teams on various projects

    • I actively participate in team meetings and discussions

    • I am able to listen to others' ideas and provide constructive feedback

    • I am adaptable and willing to take on different roles within the team as needed

  • Answered by AI

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself ?
  • Ans. 

    I am a passionate software developer with experience in building web applications using various technologies.

    • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

    • Proficient in backend development with Node.js and databases like MongoDB and MySQL

    • Familiar with version control systems like Git and deployment tools like Docker

    • Strong problem-solving skills and ability ...

  • Answered by AI
  • Q2. Write a program for fibonacchi series?
  • Ans. 

    Program to generate Fibonacci series using iterative approach.

    • Initialize variables for first two numbers in series

    • Use a loop to calculate and print next numbers in series

    • Repeat until desired number of terms is reached

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image Ankit Asthana

posted on 29 Nov 2024

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

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

Time complexity and space complexity

GlobalLogic interview questions for designations

 Senior Software Developer

 (5)

 Software Developer Trainee

 (3)

 Software Developer fresher

 (1)

 Python Software Developer

 (1)

 Software Engineer

 (56)

 Java Developer

 (3)

 PHP Developer

 (2)

 Senior Developer

 (2)

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

I was interviewed in Apr 2024.

Round 1 - Coding Test 

Stacks,queues,linked lists, graphs

Round 2 - Technical 

(2 Questions)

  • Q1. Stacks, queues, linked lists, graphs
  • Q2. Sorting, searching, swapping, machine learning

Get interview-ready with Top GlobalLogic Interview Questions

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Will AI replace humans ?

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Whats your experience in Elk ? Why ELK

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between comparator and comparison
  • Ans. 

    Comparator is an interface used to compare objects, while comparison is the act of comparing two or more objects.

    • Comparator is an interface in Java used to define custom sorting logic for objects.

    • Comparison is the process of evaluating the similarities and differences between two or more objects.

    • Comparator is used in sorting algorithms like Collections.sort() to define the sorting order.

    • Comparison is a general term use...

  • Answered by AI
  • Q2. Implement run time polymorphism
  • Ans. 

    Run time polymorphism is achieved in object-oriented programming by using virtual functions and pointers.

    • Use base class with virtual functions

    • Create derived classes that override the virtual functions

    • Use pointers of base class type to store objects of derived classes

    • Call the virtual functions through the base class pointers to achieve polymorphism

  • Answered by AI
  • Q3. What is stack with an example
  • Ans. 

    A stack is a data structure that follows the Last In First Out (LIFO) principle.

    • Elements are added and removed from the top of the stack.

    • Common operations include push (add element) and pop (remove element).

    • Example: Undo functionality in a text editor.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare oops for global logic ans some basic coding questions

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. All aboutmy experience
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java and spring boot basic questions
Round 2 - HR 

(1 Question)

  • Q1. Questions related to my previous project
Contribute & help others!
anonymous
You can choose to be anonymous

GlobalLogic Interview FAQs

How many rounds are there in GlobalLogic Software Developer 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 Developer 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 Software Development, Javascript, Java, C++ and HTML.
What are the top questions asked in GlobalLogic Software Developer interview?

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

  1. what is java ? why globalogiv ...read more
  2. write a code for finding length of str...read more
  3. what is stack with an exam...read more
How long is the GlobalLogic Software Developer interview process?

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

Recently Viewed

DESIGNATION

INTERVIEWS

Mediterranean Shipping Company

No Interviews

SALARIES

Optum Global Solutions

INTERVIEWS

Abbott

No Interviews

REVIEWS

Zessta Software Services

No Reviews

REVIEWS

Arcon TechSolutions

No Reviews

INTERVIEWS

Synechron

No Interviews

DESIGNATION

DESIGNATION

DESIGNATION

Tell us how to improve this page.

GlobalLogic Software Developer Interview Process

based on 18 interviews

3 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • HR Round
View more
GlobalLogic Software Developer Salary
based on 450 salaries
₹3 L/yr - ₹14 L/yr
At par with the average Software Developer Salary in India
View more details

GlobalLogic Software Developer Reviews and Ratings

based on 61 reviews

3.8/5

Rating in categories

3.6

Skill development

4.0

Work-life balance

3.0

Salary

3.8

Job security

3.9

Company culture

2.6

Promotions

3.6

Work satisfaction

Explore 61 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent