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 Associate Software Engineer Interview Questions and Answers

Updated 3 Feb 2025

7 Interview questions

An Associate Software Engineer was asked 9mo ago
Q. What is the difference between PUT and POST commands?
Ans. 

PUT is used to update or replace an existing resource, while POST is used to create a new resource.

  • PUT is idempotent, meaning multiple identical requests will have the same effect as a single request.

  • POST is not idempotent, meaning multiple identical requests may have different effects.

  • PUT requests are typically used for updating existing data, like updating a user's profile information.

  • POST requests are typically...

An Associate Software Engineer was asked
Q. Explain SQL joins in detail.
Ans. 

SQL joins are used to combine rows from two or more tables based on a related column between them.

  • Types of SQL joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

  • INNER JOIN returns rows when there is at least one match in both tables.

  • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

  • RIGHT JOIN returns all rows from the right table and the matched rows from the lef...

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
Q2. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Accenture
Q3. Write a function to determine if a given string is a valid passwo ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
asked in CGI Group
Q5. Frog Jump Problem Statement A frog is positioned on the first ste ... read more
An Associate Software Engineer was asked
Q. How do you implement the Singleton pattern?
Ans. 

Singleton is a design pattern that restricts the instantiation of a class to one object.

  • Create a private static instance variable of the class.

  • Create a private constructor to prevent instantiation from outside the class.

  • Provide a public static method to access the instance.

An Associate Software Engineer was asked
Q. What is the table tag?
Ans. 

The table tag is an HTML element used to create a table structure on a web page.

  • The table tag is used to define the start and end of a table.

  • It is typically used in conjunction with the tr (table row) and td (table data/cell) tags.

  • Tables can be used to display tabular data, such as a list of items or a grid of information.

  • Table tags can also include attributes like border, cellpadding, cellspacing, etc.

  • Example:

    Ce...

What people are saying about GlobalLogic

View All
a technical project manager
3d
Laid off & on the hunt: Need a PM/Scrum Master referral!
Hey everyone, I was laid off in Jan 2025 and have been searching for a new opportunity since then. If anyone can help with a referral or offer any assistance for Project Manager/Scrum Master roles, it would be a great help. Thanks!
Got a question about GlobalLogic?
Ask anonymously on communities.
An Associate Software Engineer was asked
Q. Explain the inner join operation.
Ans. 

Inner join is an operation that combines rows from two or more tables based on a related column between them.

  • Inner join returns only the matching rows between the tables.

  • It is performed using the JOIN keyword in SQL.

  • The common column used for joining should have the same data type in both tables.

  • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;

An Associate Software Engineer was asked 6mo ago
Q. Prime number 1 to 100 and sql query for 3rd highest salary
Ans. 

Prime numbers 1 to 100 and SQL query for 3rd highest salary.

  • Prime numbers from 1 to 100: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97

  • SQL query for 3rd highest salary: SELECT salary FROM employees ORDER BY salary DESC LIMIT 2, 1

An Associate Software Engineer was asked
Q. Image in pop up how would you redirect user to a different website without using events(using setTimeout()) finding 7th highest salary from a table in sql duplicating tables in sql immediately invoked funct...
Ans. 

Technical interview questions for Associate Software Engineer position

  • To redirect user to a different website without using events, use window.location.replace() method

  • To find 7th highest salary from a table in SQL, use subquery or join with itself

  • To duplicate tables in SQL, use CREATE TABLE AS or SELECT INTO statement

  • Immediately invoked function is a function that is executed as soon as it is defined

  • To change arr...

Are these interview questions helpful?

GlobalLogic Associate Software Engineer Interview Experiences

15 interviews found

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

(2 Questions)

  • Q1. Join operations
  • Q2. Difference in put and post command
  • Ans. 

    PUT is used to update or replace an existing resource, while POST is used to create a new resource.

    • PUT is idempotent, meaning multiple identical requests will have the same effect as a single request.

    • POST is not idempotent, meaning multiple identical requests may have different effects.

    • PUT requests are typically used for updating existing data, like updating a user's profile information.

    • POST requests are typically used...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Html, css, js, sql questions
  • Q2. Prime number 1 to 100 and sql query for 3rd highest salary
  • Ans. 

    Prime numbers 1 to 100 and SQL query for 3rd highest salary.

    • Prime numbers from 1 to 100: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97

    • SQL query for 3rd highest salary: SELECT salary FROM employees ORDER BY salary DESC LIMIT 2, 1

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Aptitude Test 

Some questions from aptitute and some from web development

Round 2 - Technical 

(3 Questions)

  • Q1. Html css js sql
  • Q2. What is table tag
  • Ans. 

    The table tag is an HTML element used to create a table structure on a web page.

    • The table tag is used to define the start and end of a table.

    • It is typically used in conjunction with the tr (table row) and td (table data/cell) tags.

    • Tables can be used to display tabular data, such as a list of items or a grid of information.

    • Table tags can also include attributes like border, cellpadding, cellspacing, etc.

    • Example:

      Cell 1C...

  • Answered by AI
  • Q3. Give inner join operation
  • Ans. 

    Inner join is an operation that combines rows from two or more tables based on a related column between them.

    • Inner join returns only the matching rows between the tables.

    • It is performed using the JOIN keyword in SQL.

    • The common column used for joining should have the same data type in both tables.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;

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

(1 Question)

  • Q1. Coding round for some js

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for everything

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Java basic questions with design patterns
  • Q2. How to implement Singleton
  • Ans. 

    Singleton is a design pattern that restricts the instantiation of a class to one object.

    • Create a private static instance variable of the class.

    • Create a private constructor to prevent instantiation from outside the class.

    • Provide a public static method to access the instance.

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. What are the technical challenges you faced in recent time and how you solved it
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Good good nothing difficult

Round 2 - Aptitude Test 

Moderate level you can try with your knowledge

Round 3 - One-on-one 

(1 Question)

  • Q1. Java javascript python
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SQL joins in Detail ?
  • Ans. 

    SQL joins are used to combine rows from two or more tables based on a related column between them.

    • Types of SQL joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left tab...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basis javascript, html and css
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Aptitude Test 

Standard Service Provider

Round 2 - Coding Test 

Provide two coding questions, one at a low difficulty level and the other at a medium difficulty level.

Round 3 - HR 

(3 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. In which branch did you pursue your engineering degree?
  • Ans. 

    I pursued my engineering degree in the Computer Science branch.

    • I specialized in computer programming and software development.

    • I took courses in algorithms, data structures, and software engineering.

    • I completed projects in web development, mobile app development, and database management.

  • Answered by AI
  • Q3. What are your location preferences for work?
  • Ans. 

    I am open to working in any location, but I prefer areas with a strong tech industry presence.

    • Open to any location

    • Prefer areas with strong tech industry presence

  • Answered by AI

I applied via Company Website and was interviewed in Jul 2022. There were 2 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 - Technical 

(3 Questions)

  • Q1. As per Python and Java technical questions and
  • Q2. HR round : tell me about yourself? How do you feel about working night and weekend ?
  • Q3. Why should I hire you? Are ready to relocate

Interview Preparation Tips

Topics to prepare for GlobalLogic Associate Software Engineer interview:
  • Python and Java
Interview preparation tips for other job seekers - Would you please help me with some information about vacancies related to my subject may i know if there this a job opportunity available in your organization.

GlobalLogic Interview FAQs

How many rounds are there in GlobalLogic Associate Software Engineer interview?
GlobalLogic interview process usually has 2-3 rounds. The most common rounds in the GlobalLogic interview process are Technical, One-on-one Round and Aptitude Test.
How to prepare for GlobalLogic Associate 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 Javascript, SQL, HTML, Software Engineering and CSS.
What are the top questions asked in GlobalLogic Associate Software Engineer interview?

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

  1. image in pop up how would you redirect user to a different website without usin...read more
  2. prime number 1 to 100 and sql query for 3rd highest sal...read more
  3. difference in put and post comm...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 15 interview experiences

Difficulty level

Easy 20%
Moderate 80%

Duration

Less than 2 weeks 50%
2-4 weeks 25%
6-8 weeks 25%
View more
GlobalLogic Associate Software Engineer Salary
based on 547 salaries
₹3.7 L/yr - ₹7 L/yr
11% less than the average Associate Software Engineer Salary in India
View more details

GlobalLogic Associate Software Engineer Reviews and Ratings

based on 57 reviews

3.3/5

Rating in categories

3.1

Skill development

3.7

Work-life balance

2.8

Salary

3.6

Job security

3.4

Company culture

2.4

Promotions

3.1

Work satisfaction

Explore 57 Reviews and Ratings
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.1 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 - ₹30 L/yr

Analyst
3.1k salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Explore more salaries
Compare GlobalLogic with

Genpact

3.7
Compare

DXC Technology

3.7
Compare

Sutherland Global Services

3.5
Compare

Optum Global Solutions

4.0
Compare
write
Share an Interview