Logo

Get AmbitionBox App

Faster and better experience!

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
    WINNERS AWAITED!
    • ABECA 2025
      WINNERS AWAITED!

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    • AmbitionBox Best Places to Work 2021

      1st Edition

For Employers
Upload Button Icon Add office photos
logo
Engaged Employer

i

This company page is being actively managed by Globant Team. If you also belong to the team, you can get access from here

Globant Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 935 Reviews

Play video Play video Video summary
  • About
  • Reviews
    935
  • Salaries
    8.1k
  • Interviews
    179
  • Jobs
    45
  • Benefits
    108
  • Photos
    9
  • Posts
    1

Filter interviews by

Globant Interview Questions and Answers

Updated 9 May 2025
Popular Designations

87 Interview questions

An IOS Developer was asked 1w ago
Q. Can we call deinit in a struct?
Ans. 

In Swift, structs do not have a deinitializer (deinit) like classes do.

  • Structs in Swift are value types, while classes are reference types.

  • Deinitializers (deinit) are only available for classes to clean up resources.

  • Example: A class can have a deinit method to release resources when an instance is deallocated.

  • Structs are automatically deallocated when they go out of scope, no need for deinit.

View all IOS Developer interview questions
An IOS Developer was asked 1w ago
Q. What is the difference between a Framework and an xcFramework?
Ans. 

Frameworks are single-platform libraries, while xcFrameworks support multiple platforms and architectures.

  • Frameworks are typically built for a single platform (iOS, macOS, etc.).

  • xcFrameworks can contain binaries for multiple platforms (iOS, macOS, tvOS, watchOS).

  • Frameworks are distributed as a single .framework bundle, while xcFrameworks are distributed as a .xcframework bundle.

  • Example: A standard Framework might ...

View all IOS Developer interview questions
A Senior Java Developer was asked 3w ago
Q. What are the SOLID principles in software development with examples?
Ans. 

SOLID principles are five design principles aimed at making software designs more understandable, flexible, and maintainable.

  • S - Single Responsibility Principle: A class should have one reason to change. Example: A User class should only handle user data, not user authentication.

  • O - Open/Closed Principle: Software entities should be open for extension but closed for modification. Example: Using interfaces to add n...

View all Senior Java Developer interview questions
A Devops Engineer was asked 4mo ago
Q. What are the differences between CI and CD?
Ans. 

CI is Continuous Integration, where code changes are integrated into a shared repository frequently. CD is Continuous Delivery/Deployment, where code changes are automatically deployed to production.

  • CI focuses on automating the integration of code changes from multiple developers in a shared repository.

  • CD focuses on automating the deployment of code changes to production environments.

  • CI ensures that code changes a...

View all Devops Engineer interview questions

What people are saying about Globant

View All
bouncychickpea
Verified Icon
2w
works at
Cognizant
Globant vs InMorphis
Hi Everyone, I am a ServiceNow Developer and have 4.8 years of experience. Currently holding 2 offers- Globant - 26 LPA Fixed (26 Total CTC) InMorphis - 26.1 LPA Fixed 2.9 Variable Pay (29 Total CTC) I'm at a decision point and would love to hear your advice: Which company should I prefer to join based on work culture, career growth, learning opportunities, and work-life balance? Your insights would be really helpful for me to make the right choice. Thank you in advance!
Got a question about Globant?
Ask anonymously on communities.
A Devops Engineer was asked 4mo ago
Q. What is Cloud Run?
Ans. 

Cloud Run is a managed compute platform that enables you to run stateless containers that are invocable via HTTP requests.

  • Allows you to run stateless containers without worrying about infrastructure

  • Automatically scales based on incoming requests

  • Supports both HTTP and gRPC requests

  • Can be deployed from various sources like Docker images or source code

View all Devops Engineer interview questions
A Devops Engineer was asked 5mo ago
Q. What is SSL termination?
Ans. 

SSL termination is the process of decrypting SSL/TLS encrypted traffic at a load balancer or proxy server before forwarding it to the backend servers.

  • SSL termination helps offload the decryption process from backend servers, improving performance.

  • It allows the load balancer or proxy server to inspect and manipulate the unencrypted traffic before sending it to the backend servers.

  • SSL termination is commonly used in...

View all Devops Engineer interview questions
A Senior .NET Developer was asked 5mo ago
Q. What is dependency injection in .NET Core?
Ans. 

Dependency injection in .NET Core allows for loosely coupled components and easier testing.

  • Dependency injection is a design pattern where components are given their dependencies rather than creating them internally.

  • In .NET Core, dependency injection is built-in and can be configured in the ConfigureServices method of the Startup class.

  • Services are registered in the ConfigureServices method and can be injected into...

View all Senior .NET Developer interview questions
Are these interview questions helpful?
A Senior Automation Test Engineer was asked 6mo ago
Q. Explain the automation framework.
Ans. 

Framework is a structured set of guidelines, tools, and practices used to develop and maintain software applications.

  • Framework provides a foundation for developing software applications by defining the structure, behavior, and interactions of components.

  • It helps in organizing code, improving code reusability, and enhancing maintainability.

  • Frameworks can be categorized into different types such as test automation f...

View all Senior Automation Test Engineer interview questions
A Senior Automation Test Engineer was asked 6mo ago
Q. Write a function to count the occurrences of each character in a given string.
Ans. 

Count occurrences of each character in a string

  • Create a map to store character counts

  • Iterate through the string and update counts in the map

  • Return the map with character counts

View all Senior Automation Test Engineer interview questions
A Software Developer was asked 6mo ago
Q. Explain the internal workings of a Hash Map.
Ans. 

Hash Map is a data structure that stores key-value pairs and uses a hash function to map keys to their corresponding values.

  • Hash Map uses a hash function to determine the index of the key-value pair in the underlying array.

  • Collisions can occur when multiple keys hash to the same index, which can be resolved using techniques like chaining or open addressing.

  • Hash Map typically has a load factor threshold to determin...

View all Software Developer interview questions
1 2 3 4 5 6 7

Globant Interview Experiences

179 interviews found

Senior Performance Test Engineer Interview Questions & Answers

user image Anonymous

posted on 7 Feb 2025

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

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(1 Question)

  • Q1. All questions related to Process and Tool level and Analysis.
  • Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. Performance testing questions
  • Add your answer
Round 3 - Client Interview 

(1 Question)

  • Q1. Loadrunner questions
  • Add your answer
Round 4 - Technical 

(1 Question)

  • Q1. Process and Tool level questions
  • Add your answer

Senior Performance Test Engineer Interview Questions asked at other Companies

Q1. How do you prepare a report and share it with stakeholders?
View answer (1)
Anonymous

Senior Software Engineer Interview Questions & Answers

user image Anonymous

posted on 26 Feb 2025

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

(1 Question)

  • Q1. JavaScript , coding questions
  • Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. Coding problem, JavaScript and nodejs question
  • Add your answer

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (3)
Anonymous

Business Analyst Interview Questions & Answers

user image Anonymous

posted on 1 Aug 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basic introduction plus reason for job change
  • Add your answer
  • Q2. Case Study about BA approach to given problem. "Client wants to build a mobile app. Suggest your approach"
  • Add your answer
  • Q3. What are key documents you have prepared throughout the SDLC of a project
  • Ans. 

    Key documents in SDLC include BRD, FRD, SRS, test cases, user manuals, and project plan.

    • Business Requirements Document (BRD) outlines the business problem and proposed solution

    • Functional Requirements Document (FRD) details the functional specifications of the system

    • Software Requirements Specification (SRS) defines the software requirements for the project

    • Test cases document outlines the test scenarios and expected resu...

  • Answered by AI
    Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Assume you want to create go to market strategy for an app to be released in Dubai given that it is already established and successful in US.
  • Ans. 

    To create a go-to-market strategy for an app in Dubai, analyze the local market, competition, cultural differences, and adjust marketing tactics accordingly.

    • Conduct market research in Dubai to understand the target audience, competition, and market trends.

    • Adapt the app to cater to the preferences and needs of the Dubai market.

    • Localize the app content, language, and features to resonate with the Dubai audience.

    • Identify ...

  • Answered by AI
    Add your answer
  • Q2. Assume you have been sent to 90's with knowledge you have today. What would you suggest a client who want to build a website for his physical product.
  • Ans. 

    I would suggest using a user-friendly design, implementing SEO strategies, and utilizing social media for marketing.

    • Focus on user-friendly design to enhance user experience

    • Implement SEO strategies to improve search engine visibility

    • Utilize social media for marketing and promotion

    • Consider implementing an online store for direct sales

    • Collect customer data for targeted marketing campaigns

  • Answered by AI
    Add your answer
Round 3 - Team Fitment 

(2 Questions)

  • Q1. How do you approach product discovery?
  • Ans. 

    I approach product discovery by conducting market research, gathering user feedback, analyzing data, and collaborating with cross-functional teams.

    • Conduct market research to understand industry trends and competitors

    • Gather user feedback through surveys, interviews, and usability testing

    • Analyze data from user interactions, A/B testing, and product metrics

    • Collaborate with cross-functional teams including designers, devel...

  • Answered by AI
    Add your answer
  • Q2. What are key aspects of product discovery and how would you apply it for a social media app.
  • Ans. 

    Key aspects of product discovery involve understanding user needs, market research, prototyping, and testing.

    • Conduct user research to understand the needs and preferences of social media app users.

    • Analyze market trends and competitor offerings to identify gaps and opportunities.

    • Create prototypes to visualize the app's features and gather feedback from stakeholders.

    • Test the prototypes with target users to validate assum...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Topics to prepare for Globant Business Analyst interview:
  • Documentation
  • Business Analysis
  • Strategic Planning
  • Agile Methodology
Interview preparation tips for other job seekers - Have a complete introduction starting from present, past and future. Be prepared for writing usecases, user stories, etc. Be confident in the answers. Good luck :)

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly 10 gm) with one box containing defective balls (each one of the defective balls weighs 9 gm). You are given an electronic weighing machine and only one chance to use it. How will you fi... read more
View answer (9)
Anonymous

Interview Questions & Answers

user image Anonymous

posted on 10 Oct 2024

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

I applied via Company Website and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Javascript related questions - Closures,Hoisting
  • Add your answer
  • Q2. React Questions - useMemo
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Sort positive integers only in an array
  • Ans. 

    Sort positive integers in an array

    • Filter out negative integers from the array

    • Use Array.sort() method to sort the remaining positive integers

    • Return the sorted array

  • Answered by AI
    Add your answer
  • Q2. React native routing
  • Add your answer
Round 3 - Client Interview 

(2 Questions)

  • Q1. MCQ based on react native
  • Add your answer
  • Q2. Api calls in react native
  • Ans. 

    API calls in React Native involve using fetch or axios to communicate with a server and retrieve data.

    • Use fetch or axios to make API calls in React Native

    • Handle the response using promises or async/await

    • Parse the data received from the API call and update the UI accordingly

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Business Analyst Interview Questions & Answers

user image Anonymous

posted on 21 Oct 2024

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

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

Round 1 - HR 

(2 Questions)

  • Q1. How much experience do you have?
  • Ans. 

    I have 5 years of experience as a Business Analyst in various industries.

    • 5 years of experience as a Business Analyst

    • Worked in various industries such as finance, healthcare, and technology

    • Experience in data analysis, requirements gathering, and process improvement

  • Answered by AI
    Add your answer
  • Q2. How much salary do you expect?
  • Add your answer
Round 2 - Technical 

(3 Questions)

  • Q1. What are upstream & downstream impacts?
  • Ans. 

    Upstream impacts refer to effects that occur earlier in a process, while downstream impacts refer to effects that occur later.

    • Upstream impacts are changes or events that happen at the beginning of a process or supply chain.

    • Downstream impacts are changes or events that happen as a result of actions taken earlier in the process.

    • Examples of upstream impacts include changes in raw material prices, supplier disruptions, or ...

  • Answered by AI
    Add your answer
  • Q2. Ways in which projects can be prioritised?
  • Ans. 

    Projects can be prioritised based on strategic alignment, resource availability, ROI, and stakeholder impact.

    • Consider strategic alignment with organizational goals and objectives

    • Assess resource availability including budget, time, and expertise

    • Evaluate potential ROI and benefits of each project

    • Take into account stakeholder impact and urgency of the project

    • Use prioritization frameworks like MoSCoW method or Value vs. Co...

  • Answered by AI
    Add your answer
  • Q3. Ways in which manual entry data can be streamlined?
  • Ans. 

    Manual entry data can be streamlined through automation, validation checks, standardization, and user training.

    • Implement automation tools to reduce manual data entry tasks

    • Use validation checks to ensure data accuracy and completeness

    • Standardize data entry formats and fields to improve consistency

    • Provide user training on efficient data entry practices

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not apply & stay away from Shipra Rastogi who will yell at you even before you join, imagine joining the company & harassment that will follow? 😀

Skills evaluated in this interview

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly 10 gm) with one box containing defective balls (each one of the defective balls weighs 9 gm). You are given an electronic weighing machine and only one chance to use it. How will you fi... read more
View answer (9)
Anonymous

Reactjs Developer Interview Questions & Answers

user image Anonymous

posted on 17 Sep 2024

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

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Small Javascript coding questions
  • Add your answer
  • Q2. Basic html and css questions
  • Add your answer
  • Q3. Questions about last companies project
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. JS coding questions, output based questions
  • Add your answer
  • Q2. 2 html questions
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on JS

Reactjs Developer Interview Questions asked at other Companies

Q1. Implement a counter with increment and decrement buttons. Include an input field to set the counter's initial value, and ensure increment/decrement operations are based on this input value.
View answer (2)
Anonymous

Senior Devops Engineer Interview Questions & Answers

user image Anonymous

posted on 2 Feb 2025

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

I appeared for an interview in Aug 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Related to current Job and work
  • Add your answer
  • Q2. Related to current CTC
  • Add your answer
Round 2 - Technical 

(4 Questions)

  • Q1. Docker questions
  • Add your answer
  • Q2. Kubernetes questions
  • Add your answer
  • Q3. Terraform questions
  • Add your answer
  • Q4. AWS account
  • Add your answer
Round 3 - One-on-one 

(2 Questions)

  • Q1. Docker kubernetes AWS terraform
  • Add your answer
  • Q2. Personal questions related to how I work and all
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident do you homework

Senior Devops Engineer Interview Questions asked at other Companies

Q1. What are Terraform life cycles ? and how do we use them ?
View answer (3)
Anonymous

Associate Test Engineer Interview Questions & Answers

user image Anonymous

posted on 2 Oct 2024

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

I applied via LinkedIn and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. API Automation, and java question
  • Add your answer
  • Q2. Selenium Webdriver
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Rest API HTTP methods
  • Ans. 

    REST API HTTP methods are used to perform CRUD operations on resources.

    • GET - Retrieve data from a server

    • POST - Create new data on a server

    • PUT - Update existing data on a server

    • DELETE - Remove data from a server

  • Answered by AI
    Add your answer
  • Q2. Cucumber BDD framework explained
  • Ans. 

    Cucumber BDD framework is a tool used for writing and executing automated acceptance tests in a human-readable format.

    • Uses Gherkin syntax to write test scenarios in plain English

    • Promotes collaboration between technical and non-technical team members

    • Supports behavior-driven development (BDD) principles

    • Integrates with various programming languages and testing frameworks

    • Generates easy-to-read test reports

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - good

Skills evaluated in this interview

Associate Test Engineer Interview Questions asked at other Companies

Q1. Coding based on string concept Find the middle node of linkedlist Sort algo used in Arrays.sort() method Explain hashing Difference between findElement and findElements Writing xpath for any dynamic element.
View answer (1)
Anonymous

Software Engineer Interview Questions & Answers

user image Priyanka Vitthal chakkar

posted on 5 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the inheritance?
  • View 1 more answer
  • Q2. What are the types of joins in mysql
  • View 1 more answer
Round 2 - One-on-one 

(2 Questions)

  • Q1. How to handle multiple api's
  • Ans. 

    Use a centralized API gateway to manage and route requests to multiple APIs efficiently.

    • Implement a centralized API gateway to handle incoming requests and route them to the appropriate API based on the endpoint.

    • Utilize API management tools like Apigee, Kong, or AWS API Gateway to manage and monitor multiple APIs.

    • Consider implementing a caching layer to improve performance and reduce the number of requests to external ...

  • Answered by AI
    Add your answer
  • Q2. What does strstr function do?
  • Ans. 

    strstr function searches for a substring within a string and returns a pointer to the first occurrence of the substring.

    • Used in C programming language

    • Syntax: char *strstr(const char *haystack, const char *needle)

    • Example: char *str = strstr("hello world", "world")

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Four people need to cross a bridge at night with only one torch that can only illuminate two people at a time. Person A takes 1 minute, B takes 2 minutes, C takes 7 minutes, and D takes 10 minutes to cross. When two people cross together, t... read more
View answer (240)
Anonymous

Senior IOS Developer Interview Questions & Answers

user image Anonymous

posted on 20 Sep 2024

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

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. Structs vs Classes
  • Ans. 

    Structs are value types and passed by value, while classes are reference types and passed by reference.

    • Structs are used for small, simple data types like coordinates or colors.

    • Classes are used for more complex data types that require inheritance or reference semantics.

    • Structs are copied when passed around, while classes are passed by reference.

    • Structs are stack allocated, while classes are heap allocated.

  • Answered by AI
    Add your answer
  • Q2. Discussion about design patterns
  • Add your answer
  • Q3. OOPS discussion
  • Add your answer
  • Q4. Concurrency discussion
  • Add your answer

Interview Preparation Tips

Topics to prepare for Globant Senior IOS Developer interview:
  • IOS
  • swift
  • swiftui
  • Design Patterns

Skills evaluated in this interview

Senior IOS Developer Interview Questions asked at other Companies

Q1. What are the differences between the MVC and MVVM architectural patterns, and in what scenarios should each be used?
View answer (1)
Anonymous
More about working at Globant
  • IT Services & Consulting
  • 1k-5k Employees (India)

Globant Interview FAQs

How many rounds are there in Globant interview?
Globant interview process usually has 2-3 rounds. The most common rounds in the Globant interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Globant 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 Globant. The most common topics and skills that interviewers at Globant expect are Javascript, Java, Agile, Python and SQL.
What are the top questions asked in Globant interview?

Some of the top questions asked at the Globant interview -

  1. How to remove repeated words from output in string without using predefined met...read more
  2. How to navigate to other tab in selenium? How to do work on different fra...read more
  3. 1.Difference Between Const,Var,Char. 2.Oop's concept with example 3.JavaScript ...read more
What are the most common questions asked in Globant HR round?

The most common HR questions asked in Globant interview are -

  1. What are your strengths and weakness...read more
  2. What are your salary expectatio...read more
  3. Share details of your previous j...read more
How long is the Globant interview process?

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

Tell us how to improve this page.

Globant Interviews By Designations

  • Globant Senior Software Engineer Interview Questions
  • Globant Software Engineer Interview Questions
  • Globant Devops Engineer Interview Questions
  • Globant Business Analyst Interview Questions
  • Globant Automation Test Engineer Interview Questions
  • Globant Java Developer Interview Questions
  • Globant Senior Business Analyst Interview Questions
  • Globant DOT NET Developer Interview Questions
  • Show more
  • Globant Senior Android Developer Interview Questions
  • Globant Software Developer Interview Questions

Interview Questions for Popular Designations

  • Senior Software Engineer Interview Questions
  • Software Engineer Interview Questions
  • Business Analyst Interview Questions
  • Devops Engineer Interview Questions
  • Automation Test Engineer Interview Questions
  • Java Developer Interview Questions
  • Senior Android Developer Interview Questions
  • DOT NET Developer Interview Questions
  • Show more
  • Senior Business Analyst Interview Questions
  • Senior Engineer Interview Questions

Overall Interview Experience Rating

4.2/5

based on 153 interview experiences

Difficulty level

Easy 5%
Moderate 82%
Hard 12%

Duration

Less than 2 weeks 74%
2-4 weeks 23%
4-6 weeks 3%
View more

Interview Questions from Similar Companies

Synechron
Synechron Interview Questions
3.5
 • 371 Interviews
Movate
Movate Interview Questions
3.3
 • 265 Interviews
SS&C TECHNOLOGIES
SS&C TECHNOLOGIES Interview Questions
3.3
 • 177 Interviews
ThoughtWorks
ThoughtWorks Interview Questions
3.9
 • 153 Interviews
HTC Global Services
HTC Global Services Interview Questions
3.5
 • 142 Interviews
Collabera Technologies
Collabera Technologies Interview Questions
3.5
 • 136 Interviews
NCR Corporation
NCR Corporation Interview Questions
3.7
 • 133 Interviews
Sopra Steria
Sopra Steria Interview Questions
3.8
 • 133 Interviews
Luxoft
Luxoft Interview Questions
3.7
 • 126 Interviews
TEKsystems
TEKsystems Interview Questions
3.3
 • 120 Interviews
View all

Globant Reviews and Ratings

based on 935 reviews

3.8/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

3.7

Salary

3.5

Job security

3.9

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 935 Reviews and Ratings
Jobs at Globant
Globant
Java Architect

Pune

10-18 Yrs

₹ 25-40 LPA

Globant
Data Scientist

Hyderabad / Secunderabad,

Pune

+1

5-9 Yrs

Not Disclosed

Globant
Site Reliability Engineer

Hyderabad / Secunderabad,

Pune

+1

6-11 Yrs

Not Disclosed

Explore more jobs
Globant Salaries in India
Senior Software Engineer
1.8k salaries
unlock blur

₹10 L/yr - ₹33 L/yr

Software Engineer
313 salaries
unlock blur

₹5.5 L/yr - ₹21 L/yr

Automation Test Engineer
259 salaries
unlock blur

₹7.3 L/yr - ₹25.3 L/yr

Technical Lead
251 salaries
unlock blur

₹15.9 L/yr - ₹39 L/yr

Senior Automation Test Engineer
213 salaries
unlock blur

₹9.5 L/yr - ₹28.6 L/yr

Explore more salaries
Compare Globant with
Accenture

Accenture

3.8
Compare
Synechron

Synechron

3.5
Compare
Movate

Movate

3.3
Compare
Sopra Steria

Sopra Steria

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

Helping over 1 Crore job seekers every month in choosing their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

6 Lakh+

Interviews

1 Crore+

Users/Month

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 2026
  • ABECA 2025 winners awaited tag
  • ABECA 2024
  • AmbitionBox Best Places to Work 2022
  • AmbitionBox Best Places to Work 2021
  • Invite employees to rate
AmbitionBox
  • About Us
  • 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