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

Updated 8 Jun 2025

14 Interview questions

An Associate Consultant was asked 6mo ago
Q. What are the steps to connect to a database?
Ans. 

Steps to connect to a database involve specifying the database type, providing credentials, and establishing a connection.

  • Specify the type of database you want to connect to (e.g. MySQL, PostgreSQL, MongoDB).

  • Provide the necessary credentials such as username and password.

  • Establish a connection using a programming language or tool like JDBC, ODBC, or ORM frameworks.

An Associate Consultant was asked 6mo ago
Q. MySQL Query for 3rd Highest Salary Write a query to find the third highest salary from the employees table.
Ans. 

Use a subquery to find the third highest salary from the employees table in MySQL.

  • Use a subquery to select distinct salaries from the employees table.

  • Order the salaries in descending order and use LIMIT to get the third highest salary.

  • Example: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 2, 1;

Associate Consultant Interview Questions Asked at Other Companies

asked in IQVIA
Q1. There are 2 cricket teams, A and B, with 11 players each. If ever ... read more
asked in KPMG India
Q2. While working late at night, you realize that the data you've bee ... read more
asked in Capgemini
Q3. Which tools have you used in test management and defect tracking?
Q4. Reverse the String Problem Statement You are given a string STR w ... read more
asked in Mastek
Q5. If we include all Header Files in a Java Code, will it increase t ... read more
An Associate Consultant was asked
Q. What is POM and how is it implemented in a project?
Ans. 

POM stands for Page Object Model. It is a design pattern used in automation testing to create object repositories for web UI elements.

  • POM separates the UI elements and the test scripts, making the code more modular and maintainable.

  • It helps in reducing code duplication and improves code reusability.

  • POM also makes it easier to update the UI elements in case of any changes in the application.

  • Implementation of POM in...

An Associate Consultant was asked
Q. Write an SQL query to find the second highest salary from an Employee table.
Ans. 

To find the second highest salary using SQL, we can use the ORDER BY and LIMIT clauses.

  • Sort the salaries in descending order using ORDER BY clause

  • Use LIMIT clause to select the second highest salary

  • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1,1

An Associate Consultant was asked
Q. Write a program to display each character and its frequency in a given string.
Ans. 

Display the character and it's frequency in a string.

  • Iterate through the string and count the frequency of each character using a dictionary or hashmap.

  • Print the character and its frequency for each unique character in the string.

  • Handle edge cases such as empty string or non-alphabetic characters.

An Associate Consultant was asked
Q. How to trigger the Job in Jenkins and How to configure
Ans. 

To trigger a job in Jenkins, configure a build trigger and specify the source code repository.

  • Configure a build trigger such as a schedule or webhook

  • Specify the source code repository to pull code from

  • Set up any necessary build steps or scripts

  • Ensure proper permissions and credentials are set up

  • Test the job to ensure it runs successfully

An Associate Consultant was asked
Q. API testing using rest assured and types of assertion.
Ans. 

Rest assured is a Java library used for API testing. Types of assertion include status code, response body, and header.

  • Rest assured is a popular Java library used for API testing

  • It simplifies the process of sending HTTP requests and verifying the response

  • Types of assertion include status code, response body, and header

  • Status code assertion checks if the response code is as expected

  • Response body assertion checks if...

Are these interview questions helpful?
An Associate Consultant was asked
Q. What is Interface and Java 8 feature in Inter face?
Ans. 

An interface is a collection of abstract methods. Java 8 introduced default and static methods in interfaces.

  • Interface is a blueprint for classes to implement its methods

  • Java 8 introduced default methods which provide a default implementation for methods in an interface

  • Static methods can also be defined in interfaces

  • Example: interface MyInterface { void method1(); default void method2() { //default implementation ...

An Associate Consultant was asked
Q. MAP vs HASHMAP and difference between the Collection vs Collections.
Ans. 

MAP is an interface while HASHMAP is a class implementing it. Collection is an interface while Collections is a utility class.

  • MAP is used to store key-value pairs while HASHMAP is a class implementing it.

  • MAP is an interface while HASHMAP is a class implementing it.

  • Collection is used to store a group of objects while Collections is a utility class providing various methods to manipulate collections.

  • Collection is an...

An Associate Consultant was asked
Q. GIT commands and how to create project in git?
Ans. 

GIT commands and project creation in GIT

  • GIT commands: add, commit, push, pull, clone, branch, merge

  • To create a project in GIT: initialize a repository, add files, commit changes, create a remote repository, push changes to remote repository

  • Example: git init, git add ., git commit -m 'initial commit', create a repository on GitHub, git remote add origin , git push -u origin master

GlobalLogic Associate Consultant Interview Experiences

23 interviews found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Mysql query for 3rd highest salary
  • Ans. 

    Use a subquery to find the third highest salary from the employees table in MySQL.

    • Use a subquery to select distinct salaries from the employees table.

    • Order the salaries in descending order and use LIMIT to get the third highest salary.

    • Example: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 2, 1;

  • Answered by AI
  • Q2. What are the steps to connect to a database?
  • Ans. 

    Steps to connect to a database involve specifying the database type, providing credentials, and establishing a connection.

    • Specify the type of database you want to connect to (e.g. MySQL, PostgreSQL, MongoDB).

    • Provide the necessary credentials such as username and password.

    • Establish a connection using a programming language or tool like JDBC, ODBC, or ORM frameworks.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There is a considerable amount of internal politics involved, and the interview process includes the asking of unnecessary questions.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Sliding window problem
  • Ans. 

    Sliding window technique is used to solve problems involving subarrays or substrings by creating a window that can expand and contract based on certain conditions.

    • Maintain start and end indices to represent current window

    • Adjust indices based on problem constraints

    • Minimize number of elements processed for optimized performance

  • Answered by AI
  • Q2. How do you handle stress
  • Ans. 

    I handle stress by practicing mindfulness, taking breaks, and seeking support from colleagues.

    • Practice mindfulness techniques such as deep breathing or meditation

    • Take short breaks throughout the day to recharge

    • Seek support from colleagues or a mentor to talk through challenges

    • Exercise regularly to reduce stress levels

    • Maintain a healthy work-life balance

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. OOPS concept with practical examples
  • Ans. 

    OOPS concept refers to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: Animal class can inherit from Mammal class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: Using private variables in a class.

    • Polymorphism: Ability to present...

  • Answered by AI
  • Q2. ASP.NET design patterns
Round 1 - Coding Test 

Find the occurrence of char in the String. print the duplicate characters.

Round 2 - Technical 

(5 Questions)

  • Q1. What is Interface and Java 8 feature in Inter face?
  • Q2. Lambda expression for map?
  • Ans. 

    Lambda expression for map applies a function to each element of a list and returns a new list.

    • Syntax: list(map(lambda x: function(x), list_name))

    • Example: list(map(lambda x: x*2, [1, 2, 3])) returns [2, 4, 6]

    • Lambda expression can also be replaced with a named function

  • Answered by AI
  • Q3. MAP vs HASHMAP and difference between the Collection vs Collections.
  • Ans. 

    MAP is an interface while HASHMAP is a class implementing it. Collection is an interface while Collections is a utility class.

    • MAP is used to store key-value pairs while HASHMAP is a class implementing it.

    • MAP is an interface while HASHMAP is a class implementing it.

    • Collection is used to store a group of objects while Collections is a utility class providing various methods to manipulate collections.

    • Collection is an inte...

  • Answered by AI
  • Q4. How to handle dropdown using selenium?
  • Ans. 

    Dropdowns can be handled using Select class in Selenium.

    • Locate the dropdown element using any of the locators available in Selenium

    • Create an object of Select class and pass the dropdown element as argument

    • Use selectByVisibleText(), selectByValue() or selectByIndex() methods to select an option

    • Use getOptions() method to get all the options in the dropdown

    • Use isMultiple() method to check if the dropdown allows multiple s...

  • Answered by AI
  • Q5. How to handle alerts and capture the screenshots?
  • Ans. 

    Alerts can be handled using automation tools and screenshots can be captured using built-in functions or third-party libraries.

    • Use automation tools like Selenium or Appium to handle alerts in web or mobile applications respectively.

    • For capturing screenshots, use built-in functions like 'screenshot' in Selenium or third-party libraries like 'Puppeteer' in Node.js.

    • Save the screenshots with appropriate names and in a desi...

  • Answered by AI
Round 3 - Technical 

(6 Questions)

  • Q1. Scrum methodology and types of meetings.
  • Ans. 

    Scrum methodology involves various meetings such as daily stand-up, sprint planning, review, and retrospective.

    • Daily stand-up meetings are held to discuss progress and plan for the day.

    • Sprint planning meetings are held at the beginning of each sprint to plan the work to be done.

    • Sprint review meetings are held at the end of each sprint to review the work done and get feedback.

    • Retrospective meetings are held at the end o...

  • Answered by AI
  • Q2. API testing using rest assured and types of assertion.
  • Q3. GIT commands and how to create project in git?
  • Ans. 

    GIT commands and project creation in GIT

    • GIT commands: add, commit, push, pull, clone, branch, merge

    • To create a project in GIT: initialize a repository, add files, commit changes, create a remote repository, push changes to remote repository

    • Example: git init, git add ., git commit -m 'initial commit', create a repository on GitHub, git remote add origin , git push -u origin master

  • Answered by AI
  • Q4. How to trigger the Job in Jenkins and How to configure
  • Q5. Types of wait in selenium and syntax.
  • Ans. 

    Types of wait in Selenium and their syntax.

    • Implicit Wait: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS)

    • Explicit Wait: WebDriverWait wait = new WebDriverWait(driver, 10); wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("elementId")));

    • Fluent Wait: Wait wait = new FluentWait(driver).withTimeout(Duration.ofSeconds(10)).pollingEvery(Duration.ofSeconds(2)).ignoring(NoSuchElementException.clas...

  • Answered by AI
  • Q6. What is POM and implementation in project?
Round 4 - HR 

(2 Questions)

  • Q1. Discussion related to salary.
  • Q2. Related to job location

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the java concepts strongly and selenium concepts

Skills evaluated in this interview

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

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Java 8 features
  • Q2. What is spring boot.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Train platform problem statement
  • Ans. 

    Optimizing train platform allocation to minimize waiting time and congestion

    • Analyze train schedules and passenger flow to determine optimal platform allocation

    • Consider factors such as train frequency, arrival and departure times, and passenger volume

    • Implement strategies like staggered arrival times or dedicated platforms for specific train routes

    • Use simulation models to test different platform allocation scenarios

    • Monit...

  • Answered by AI
  • Q2. Basic java 8 concepts
Round 2 - Technical 

(2 Questions)

  • Q1. System design - high level on designing youtube
  • Ans. 

    Designing a high-level system for YouTube

    • Use a distributed system architecture to handle large amounts of data and traffic

    • Implement a content delivery network (CDN) to efficiently deliver video content to users worldwide

    • Utilize a recommendation algorithm to suggest personalized content to users based on their viewing history

    • Incorporate a robust user authentication and authorization system to protect user data and preve...

  • Answered by AI
  • Q2. Microservice related design questions
Round 3 - HR 

(2 Questions)

  • Q1. Basic one on one
  • Q2. Sal discussion on hike percent

Skills evaluated in this interview

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

I appeared for an interview before Sep 2022.

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 - HR 

(2 Questions)

  • Q1. General introduction
  • Q2. Salary expectations
Round 3 - Technical 

(1 Question)

  • Q1. Basics intermediate
Round 4 - Technical 

(1 Question)

  • Q1. Advance level ssis
Round 5 - HR 

(1 Question)

  • Q1. How soon u will join
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Coding Test 

2 Problem solving questions mostly related to array

Round 3 - Technical 

(2 Questions)

  • Q1. Core Java, Multithreading, Spring Boot, Microservices
  • Q2. Circuit Breaker Design Pattern
  • Ans. 

    The Circuit Breaker Design Pattern is used to handle faults and failures in distributed systems.

    • It is used to prevent cascading failures in a system.

    • It acts as a safety net by monitoring the availability of a service or resource.

    • When the service or resource fails, the circuit breaker trips and subsequent requests are short-circuited.

    • It provides a fallback mechanism to handle failures gracefully.

    • Once the service or reso...

  • Answered by AI
Round 4 - Case Study 

Manager Round case related

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with problem solving approach

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Jul 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Spring boot & React js
  • Q2. Too many questions on Spring boot
  • Q3. Few Questions on React JS
Round 3 - One-on-one 

(2 Questions)

  • Q1. Manager round basic round
  • Q2. Manager checks your language skills and general talks
Round 4 - HR 

(2 Questions)

  • Q1. Salary negotiataion.
  • Q2. Salary negotiation...

I applied via Naukri.com and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Most of are from core java java 8 spring mvc boot
  • Q2. Be confident and go for specialization.

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident and be focus on your answer no go for all things and also there is very godd hr round and lengthy one is also.

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.

GlobalLogic Interview FAQs

How many rounds are there in GlobalLogic Associate Consultant interview?
GlobalLogic interview process usually has 2-3 rounds. The most common rounds in the GlobalLogic interview process are Technical, HR and Resume Shortlist.
How to prepare for GlobalLogic Associate Consultant 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 Telecom, HTML, Wordpress, HTTP and DNS.
What are the top questions asked in GlobalLogic Associate Consultant interview?

Some of the top questions asked at the GlobalLogic Associate Consultant interview -

  1. How to trigger the Job in Jenkins and How to config...read more
  2. what is Interface and Java 8 feature in Inter fa...read more
  3. What is POM and implementation in proje...read more
What are the most common questions asked in GlobalLogic Associate Consultant HR round?

The most common HR questions asked in GlobalLogic Associate Consultant interview are -

  1. What are your salary expectatio...read more
  2. Tell me about yourse...read more
How long is the GlobalLogic Associate Consultant interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 17 interview experiences

Difficulty level

Moderate 88%
Hard 13%

Duration

Less than 2 weeks 75%
2-4 weeks 25%
View more
GlobalLogic Associate Consultant Salary
based on 3.1k salaries
₹16.1 L/yr - ₹28.8 L/yr
94% more than the average Associate Consultant Salary in India
View more details

GlobalLogic Associate Consultant Reviews and Ratings

based on 329 reviews

3.6/5

Rating in categories

3.5

Skill development

3.9

Work-life balance

3.3

Salary

3.8

Job security

3.6

Company culture

2.7

Promotions

3.4

Work satisfaction

Explore 329 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 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

3.8
Compare

DXC Technology

3.7
Compare

Sutherland Global Services

3.5
Compare

Optum Global Solutions

4.0
Compare
write
Share an Interview