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

Clear (1)

Globant Senior IOS Developer Interview Questions and Answers

Updated 20 Sep 2024

Globant Senior IOS Developer Interview Experiences

2 interviews found

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
  • Q2. Discussion about design patterns
  • Q3. OOPS discussion
  • Q4. Concurrency discussion

Interview Preparation Tips

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

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. 1.Explain delegate and protocol 2.Explain Mvc 3.Explain arc
  • Ans. 

    Answers to questions related to IOS development concepts.

    • Delegate and protocol are used for communication between objects in IOS. Delegate is a design pattern that allows one object to send messages to another object when a specific event occurs. Protocol is a set of methods that a class can implement to provide a specific behavior.

    • MVC is a design pattern used in IOS development. It separates the application into three...

  • Answered by AI
  • Q2. Explain mvc design pattern
  • Ans. 

    MVC is a design pattern that separates an application into three interconnected components: Model, View, and Controller.

    • Model represents the data and business logic of the application

    • View is responsible for displaying the data to the user

    • Controller acts as an intermediary between the Model and View, handling user input and updating the Model and View accordingly

    • MVC promotes separation of concerns and modularity, making...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best for interview. Be confident and tell your answers

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 p ... read more
Q2. What are the differences between classes and structs, and when sh ... read more
Q3. What are the key principles of memory management in iOS app devel ... read more
asked in Paytm
Q4. What is the effective approach to display 'n' number of images in ... read more
asked in SmartServ
Q5. System Design for a food delivery application like Zomato

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is MVVM and how to bind data using MVVM
  • Ans. 

    MVVM is a design pattern that separates the UI from the business logic by introducing a middle layer called ViewModel.

    • Model-View-ViewModel design pattern

    • ViewModel acts as a link between the Model and View

    • Data binding is used to connect the ViewModel to the View

    • Updates in the ViewModel automatically reflect in the View

  • Answered by AI
  • Q2. What is SSL pinning
  • Ans. 

    SSL pinning is a security measure used to prevent man-in-the-middle attacks by associating a specific SSL certificate with a particular app.

    • SSL pinning involves hardcoding the expected SSL certificate or public key within the mobile app.

    • This helps verify the server's identity and prevent attackers from intercepting and decrypting communication.

    • SSL pinning can be implemented using libraries like TrustKit or manually by ...

  • Answered by AI

Skills evaluated in this interview

Round 1 - One-on-one 

(3 Questions)

  • Q1. Scenario based questions
  • Q2. Basics of swift programing language
  • Q3. IOS basic questions and scenario based

Interview Preparation Tips

Interview preparation tips for other job seekers - Whatever you have written in resume, just be thorough with that
Round 1 - One-on-one 

(3 Questions)

  • Q1. Scenario based questions
  • Q2. Basics of swift programing language
  • Q3. IOS basic questions and scenario based

Interview Preparation Tips

Interview preparation tips for other job seekers - Whatever you have written in resume, just be thorough with that
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. IOS & Swift Basics
  • Q2. 1 Coding question( String/ Array) Level
  • Q3. Write Delegation example, They will show the code and ask whats wrong in the code & whats the o/p of the code. expect questions like Closure Capture List, InOut parameter
Round 2 - Technical 

(2 Questions)

  • Q1. This round was not based on iOS for me. Question was related to my past projects based on my resume.
  • Q2. More focous on architectures and design patterns like MVC, MVVM, Viper, Solid, Clean coding
Round 3 - HR 

(1 Question)

  • Q1. Whats your expected Salary?
  • Ans. 

    My expected salary range is $100,000 - $120,000 per year based on my experience and skills.

    • Based on my 5+ years of experience in IOS development, I am looking for a competitive salary in the range of $100,000 - $120,000 per year.

    • I have a strong track record of delivering high-quality IOS applications and believe my skills warrant a salary in this range.

    • I am open to negotiation based on the overall compensation package

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - - Focus more on iOS and Swift basics
- Array & String Level DSA is enough
- Study Architecture & Design pattern
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Factorial program
  • Q2. Array program , replace with the given index
  • Ans. 

    Replace a string in an array at a given index

    • Create an array of strings

    • Use the index provided to replace the string at that index

    • Ensure the index is within the bounds of the array

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Classes vs struct, GCD vs Operation queue advanced
  • Ans. 

    Classes are reference types, structs are value types. GCD is low-level API, Operation queue is high-level API for concurrency.

    • Classes are reference types, stored on the heap. Structs are value types, stored on the stack.

    • GCD is a low-level API for managing concurrent operations. Operation queue is a high-level API built on top of GCD.

    • GCD provides a simple and efficient API for dispatching tasks to a queue. Operation que...

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

(1 Question)

  • Q1. Advanced iOS questions, code snippet solving approach
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and company profile

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't forget basics

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Nov 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. 1. OOPS basic concepts 2. Swift and objective c basic 3. Questions on your project
  • Q2. 4. If you could have one superpower at work, what would you want?

Interview Preparation Tips

Topics to prepare for TCS Senior IOS Developer interview:
  • Apple Docs
Interview preparation tips for other job seekers - Keep your resume crisp and to the point. Revise all basics of oops, swift.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Swift Basics, MultiThreading
Contribute & help others!
anonymous
You can choose to be anonymous

Globant Interview FAQs

How many rounds are there in Globant Senior IOS Developer interview?
Globant interview process usually has 1-2 rounds. The most common rounds in the Globant interview process are Resume Shortlist, Technical and One-on-one Round.
How to prepare for Globant Senior IOS Developer 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 Swift, MVP, MVVM, GIT and Digital Electronics.
What are the top questions asked in Globant Senior IOS Developer interview?

Some of the top questions asked at the Globant Senior IOS Developer interview -

  1. 1.Explain delegate and protocol 2.Explain Mvc 3.Explain ...read more
  2. Structs vs Clas...read more
  3. Explain mvc design patt...read more

Recently Viewed

INTERVIEWS

Thales

No Interviews

INTERVIEWS

Thales

No Interviews

SALARIES

Emerson Electric Co.

SALARIES

ABB

SALARIES

ABB

JOBS

Schneider Electric

No Jobs

SALARIES

Lakshmi Machine Works

SALARIES

Kirloskar Oil Engines

INTERVIEWS

Revv

No Interviews

SALARIES

ABB

Tell us how to improve this page.

Globant Senior IOS Developer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more
Globant Senior IOS Developer Salary
based on 33 salaries
₹11 L/yr - ₹28 L/yr
74% more than the average Senior IOS Developer Salary in India
View more details

Globant Senior IOS Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
1.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
294 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Automation Test Engineer
254 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
236 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Automation Test Engineer
210 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Globant with

Accenture

3.8
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

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