Upload Button Icon Add office photos
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

Filter interviews by

Globant Interview Questions, Process, and Tips

Updated 26 Mar 2025

Top Globant Interview Questions and Answers

View all 137 questions

Globant Interview Experiences

Popular Designations

175 interviews found

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

I applied via LinkedIn and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. ServiceNow ITSM , ITOM
  • Q2. All basic + scenario based + few lines of code in js
Round 2 - Technical 

(2 Questions)

  • Q1. Itsm itom ,scripting, workflows
  • Q2. Scenario based java script

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well versed with servicenow basic in itsm then comes the expertise in which module.

DOT NET Developer Interview Questions & Answers

user image Gowtham Krishna

posted on 25 Mar 2025

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

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. Basic .net questions and multithreading
  • Q2. SQL server questions

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (12)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain Android activity and fragment
  • Ans. 

    Android activity is a single screen with a user interface, while fragment is a modular section of an activity.

    • Activity represents a single screen with a user interface.

    • Fragments are modular sections of an activity that contribute to the overall user interface.

    • Activities can contain multiple fragments, allowing for more flexible and reusable UI designs.

    • Fragments can be added, removed, or replaced within an activity at r...

  • Answered by AI

Skills evaluated in this interview

Top Globant Senior Software Engineer Interview Questions and Answers

Q1. Where would you use flask and where would you use django
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Hard
Process Duration
-
Result
No response

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. From swift basic questions to design patterns
  • Q2. Project writing on scenario

Senior Software Engineer and Lead Interview Questions asked at other Companies

Q1. Explain importance of microservices and what are the realtime use cases from your experience
View answer (1)

Globant interview questions for popular designations

 Senior Software Engineer

 (29)

 Software Engineer

 (9)

 Devops Engineer

 (8)

 Business Analyst

 (8)

 Automation Test Engineer

 (6)

 Java Developer

 (6)

 Senior Business Analyst

 (5)

 DOT NET Developer

 (5)

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 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. General Javascript and react questions
  • Q2. 1.life cycle method 2.diff between var let const 3. Write code for to count duplicate characters from string Ect
  • Ans. 

    Answers to common interview questions for Reactjs Developer position.

    • 1. Life cycle methods in React include componentDidMount, componentDidUpdate, componentWillUnmount, etc.

    • 2. 'var' has function scope, 'let' has block scope, 'const' is a constant variable.

    • 3. Code to count duplicate characters in a string: const countDuplicates = (str) => { const count = {}; str.split('').forEach(char => { count[char] = count[char] ? co

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Microforntend, design pattern, array reduce method ect

Skills evaluated in this interview

Reactjs Developer Interview Questions asked at other Companies

Q1. Implement counter such that it has 2 buttons to increment and decrement the values and also add a input field such that, whatever input is given, the value should be to that and value should should be decreased and increased from the input ... read more
View answer (2)

Get interview-ready with Top Globant Interview Questions

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

I applied via Approached by Company

Round 1 - Technical 

(1 Question)

  • Q1. They asked me about the frameworks and overall architecture in iOS, how to implement tables, create views and auto layout.

Interview Preparation Tips

Topics to prepare for Globant IOS Developer interview:
  • IOS
  • uikit

IOS Developer Interview Questions asked at other Companies

Q1. 1 - MVC PATTERN 2- CLOUSERS & it's type 3- Google SDK like Google maps 3- How u manage the constraints of any label , stick at every corner & center of view controller, when getting data from json.
View answer (1)

Jobs at Globant

View all

Softwaretest Engineer Interview Questions & Answers

user image Deepali Sakolkar

posted on 22 Jun 2024

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

(2 Questions)

  • Q1. Java program for prime no
  • Ans. 

    Java program to check if a number is prime or not

    • Create a function to check if a number is prime or not

    • Iterate from 2 to n/2 and check if n is divisible by any number

    • If n is divisible by any number, it is not prime

    • If n is not divisible by any number, it is prime

  • Answered by AI
  • Q2. Dynamic web table element program
  • Ans. 

    A dynamic web table element program involves identifying and interacting with elements in a table that change dynamically.

    • Identify the table element using unique identifiers like class or id

    • Use Selenium WebDriver to locate and interact with the table element

    • Handle dynamic changes in the table by using dynamic XPath or CSS selectors

    • Iterate through rows and columns to extract data or perform actions

  • Answered by AI

Skills evaluated in this interview

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

UI Developer Interview Questions & Answers

user image Anonymous

posted on 22 May 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Shine

Round 1 - Technical 

(2 Questions)

  • Q1. What is closures
  • Ans. 

    Closures are functions that have access to variables from their outer scope even after the outer function has finished executing.

    • Closures allow functions to access variables from their parent function even after the parent function has returned.

    • They help in creating private variables and functions in JavaScript.

    • Closures are commonly used in event handlers and callbacks.

  • Answered by AI
  • Q2. What is call apply bind
  • Ans. 

    call, apply, and bind are methods in JavaScript used to manipulate the context of a function.

    • call() is used to invoke a function with a specified 'this' value and arguments provided individually.

    • apply() is similar to call() but arguments are passed as an array.

    • bind() is used to create a new function with a specified 'this' value and initial arguments.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Globant UI Developer interview:
  • Javascript
  • Angular

UI Developer Interview Questions asked at other Companies

Q1. Create 10 no. of Checkboxes in javascript and on-checked checkboxes count should be show at below. as you will un-check the checkbox count should also change. so means to say checked checkbox count should be print.
View answer (1)

Junior .NET Developer Interview Questions & Answers

user image Madhuri Navnath Bagal

posted on 4 Nov 2023

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

I applied via Referral and was interviewed in Oct 2023. There were 3 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 - Resume Shortlist 

(1 Question)

  • Q1. Introduction, strength, weakness which skills you have added to your resume will ask you questions on that part.
Round 3 - Technical 

(1 Question)

  • Q1. They will ask you questions on star pattern may be one coding part.

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview was very nice. They will ask you questions about c sharp basics first and then go with medium-level questions. If you are stuck anywhere at the time of answering after some time they explain to you that thing.

Junior .NET Developer Interview Questions asked at other Companies

Q1. what is StringBuffer and were is use
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Explain the automation framework you used in your project
  • Ans. 

    I used a keyword-driven automation framework in my project.

    • The framework was designed to allow testers to write test cases using keywords and reusable functions.

    • Test scripts were written in a tabular format, making it easy to understand and maintain.

    • The framework included libraries for common functions like logging, reporting, and data handling.

    • Test data was stored in external files like Excel sheets or CSV files for e...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Globant Senior Automation Engineer interview:
  • Java
  • Selenium
  • Cucumber
  • Appium

Skills evaluated in this interview

Senior Automation Engineer Interview Questions asked at other Companies

Q1. 1. Print numbers from 1 to 100 without using any loop ? 2. How do you take out duplicate values from array without using any set ? if you iterate the array and take out unique values , how do you do it for 2lakh items in less time? 3. Diffe... read more
View answer (1)

Globant Interview FAQs

How many rounds are there in Globant interview?
Globant interview process usually has 2 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, Agile, Java, 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
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 Interview Process

based on 148 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

Synechron Interview Questions
3.5
 • 364 Interviews
Movate Interview Questions
3.3
 • 258 Interviews
SS&C TECHNOLOGIES Interview Questions
3.3
 • 171 Interviews
ThoughtWorks Interview Questions
3.9
 • 147 Interviews
Sopra Steria Interview Questions
3.8
 • 127 Interviews
Luxoft Interview Questions
3.7
 • 123 Interviews
TEKsystems Interview Questions
3.3
 • 117 Interviews
View all

Globant Reviews and Ratings

based on 878 reviews

3.8/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

3.7

Salary

3.6

Job security

3.9

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 878 Reviews and Ratings
Sap Fico Functional Consultant

Indore,

Hyderabad / Secunderabad

+1

5-10 Yrs

₹ 10-20 LPA

Sap Hana Consultant

Hyderabad / Secunderabad,

Pune

+1

5-10 Yrs

₹ 10-20 LPA

Sap Business Consultant

Indore,

Hyderabad / Secunderabad

+1

5-10 Yrs

₹ 10-20 LPA

Explore more jobs
Senior Software Engineer
1.7k salaries
unlock blur

₹10 L/yr - ₹33 L/yr

Software Engineer
295 salaries
unlock blur

₹6 L/yr - ₹21 L/yr

Automation Test Engineer
242 salaries
unlock blur

₹6 L/yr - ₹25 L/yr

Technical Lead
241 salaries
unlock blur

₹16 L/yr - ₹39 L/yr

Senior Automation Test Engineer
223 salaries
unlock blur

₹10.4 L/yr - ₹29.7 L/yr

Explore more salaries
Compare Globant with

Accenture

3.8
Compare

Synechron

3.5
Compare

Movate

3.3
Compare

Sopra Steria

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview