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, Process, and Tips

Updated 13 Dec 2024

Top GlobalLogic Associate Consultant Interview Questions and Answers

View all 23 questions

GlobalLogic Associate Consultant Interview Experiences

22 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

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 figure out that the data availab ... read more
asked in Capgemini
Q3. Could you tell me, which tools do you have used in test managemen ... read more
Q4. Reverse the String Problem Statement You are given a string STR w ... read more
Q5. Find the Third Greatest Element Given an array 'ARR' of 'N' disti ... read more
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?
  • 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 } sta

  • Answered by AI
  • 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.
  • 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 the ...

  • Answered by AI
  • 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
  • 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

  • Answered by AI
  • 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?
  • 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 involve...

  • Answered by AI
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

GlobalLogic interview questions for designations

 Associate Consultant Engineering

 (4)

 Senior Consultant

 (3)

 Workday Consultant

 (1)

 QA Consultant

 (1)

 Associate Quality Assurance Consultant

 (1)

 Consultant

 (23)

 Associate Software Engineer

 (15)

 Associate Application Developer

 (1)

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

Get interview-ready with Top GlobalLogic Interview Questions

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

I was interviewed 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

Associate Consultant Jobs at GlobalLogic

View all
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:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
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 3 interview rounds.

Round 1 - Technical 

(3 Questions)

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

(2 Questions)

  • Q1. Manager round basic round
  • Q2. Manager checks your language skills and general talks
Round 3 - 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.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Apr 2022. There were 2 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. Java and basic mobile automation testing questions
  • Q2. Hashmap, inheritance, one scenario based question and logic writing , few android and IOS automation specific questions
  • Q3. Client interaction and compatibility based questions . Few questions related to API testing and framework designing.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and brush up your tech stack.
Explore some about Api.

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

GlobalLogic Associate Consultant Interview Process

based on 16 interviews

4 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • Personal Interview1 Round
  • HR Round
View more
GlobalLogic Associate Consultant Salary
based on 2.8k salaries
₹9.2 L/yr - ₹33.9 L/yr
88% more than the average Associate Consultant Salary in India
View more details

GlobalLogic Associate Consultant Reviews and Ratings

based on 296 reviews

3.7/5

Rating in categories

3.6

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 296 Reviews and Ratings
Associate consultant -(Lead)

Hyderabad / Secunderabad

5-10 Yrs

₹ 10-29 LPA

Explore more jobs
Associate Analyst
3.9k salaries
unlock blur

₹1 L/yr - ₹7.2 L/yr

Senior Software Engineer
3.3k salaries
unlock blur

₹5.3 L/yr - ₹22 L/yr

Analyst
3.1k salaries
unlock blur

₹1 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 - ₹33.9 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