Upload Button Icon Add office photos
Engaged Employer

i

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

CGI Group Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 4.4k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

CGI Group IOS Developer Interview Questions and Answers

Updated 10 Apr 2024

CGI Group IOS Developer Interview Experiences

1 interview found

IOS Developer Interview Questions & Answers

user image Asha Treesa Kurian

posted on 10 Apr 2024

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

(1 Question)

  • Q1. Based on the position
Round 2 - HR 

(1 Question)

  • Q1. About previous experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company to work with

Interview questions from similar companies

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

(1 Question)

  • Q1. Tell me about your self
  • Ans. 

    I am an experienced IOS Developer with a passion for creating innovative and user-friendly mobile applications.

    • Over 5 years of experience in IOS app development

    • Proficient in Swift and Objective-C programming languages

    • Strong understanding of mobile UI/UX design principles

    • Familiar with RESTful APIs and third-party libraries

    • Developed and launched multiple successful IOS apps, such as XYZ and ABC

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Basic ios questions
  • Q2. Difference between let and var
  • Ans. 

    let is used for constants that do not change, var is used for variables that can change

    • let is used for constants that do not change

    • var is used for variables that can change

    • let variables cannot be reassigned once they are set

    • var variables can be reassigned multiple times

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(6 Questions)

  • Q1. What is Weak & Unowned , ARC?
  • Ans. 

    Weak & Unowned references are used in ARC to prevent retain cycles in Swift programming.

    • Weak references do not increase the retain count of an object, and automatically become nil when the object is deallocated.

    • Unowned references do not keep a strong reference to the object, and can become a dangling pointer if the object is deallocated.

    • ARC (Automatic Reference Counting) is a memory management system used in Swift to a

  • Answered by AI
  • Q2. What is Autoclosure?
  • Ans. 

    Autoclosure is a feature in Swift that automatically wraps an expression in a closure.

    • Autoclosure is used to delay evaluation of an expression until it is actually needed.

    • It is commonly used with functions that take closures as arguments, allowing the caller to pass in a regular value instead of a closure.

    • Autoclosures are created by adding @autoclosure attribute before the closure's parameter type.

  • Answered by AI
  • Q3. Code snippets for optional binding, find error ?
  • Ans. 

    Optional binding in Swift helps to safely unwrap optionals and check for nil values.

    • Use if let or guard let to safely unwrap optionals and bind the value to a new constant or variable.

    • Check for nil values before using the unwrapped value to avoid runtime errors.

    • Example: if let name = optionalName { print(name) }

    • Example: guard let age = optionalAge else { return }

  • Answered by AI
  • Q4. What are Access Controls/modifiers? public vs open?
  • Ans. 

    Access controls/modifiers determine the visibility and accessibility of classes, methods, and properties in object-oriented programming.

    • public access control allows a class, method, or property to be accessed from anywhere in the code

    • open access control allows a class to be subclassed outside of the module where it is defined

    • public is commonly used in Swift for most cases, while open is used when you want to allow subc

  • Answered by AI
  • Q5. Protocol vs Closures?
  • Ans. 

    Protocols define a blueprint of methods, properties, and other requirements that a class or struct must adopt. Closures are self-contained blocks of functionality that can be passed around and used in your code.

    • Protocols define a set of methods, properties, and other requirements that a class or struct must implement.

    • Closures are self-contained blocks of functionality that can capture and store references to any consta...

  • Answered by AI
  • Q6. How you use GIT, How to manage conflicts?
  • Ans. 

    I use GIT for version control and manage conflicts by resolving them through communication and collaboration.

    • Regularly commit changes to keep track of progress

    • Pull latest changes before making any updates to avoid conflicts

    • Communicate with team members to resolve conflicts efficiently

    • Use tools like Git merge or Git rebase to resolve conflicts

    • Document resolution process for future reference

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly brush up the basic things of iOS e,g Optional, ARC, Concurrency, Access Controls, closures their type, protocol delegate pattern etc.

Skills evaluated in this interview

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

(5 Questions)

  • Q1. Encription and decription in swift
  • Ans. 

    Encryption and decryption in Swift involves using cryptographic algorithms to encode and decode data securely.

    • Use common encryption algorithms like AES or RSA for encryption.

    • Implement encryption using libraries like CommonCrypto or CryptoSwift.

    • Store encryption keys securely and use secure protocols for data transmission.

    • Example: Encrypting a string using AES encryption in Swift.

  • Answered by AI
  • Q2. Keychain access in swift
  • Ans. 

    Keychain access in Swift allows secure storage of sensitive information like passwords, tokens, etc.

    • Use Keychain Services API to securely store and retrieve sensitive data.

    • Keychain items are stored securely in the device's keychain and are encrypted.

    • Access keychain items using unique identifiers called keys.

    • Use Keychain Swift library for easier implementation.

  • Answered by AI
  • Q3. Class vs struct
  • Ans. 

    Classes are reference types, while structs are value types in Swift.

    • Classes are reference types, meaning they point to the same instance in memory when assigned to a new variable.

    • Structs are value types, meaning they create a new copy when assigned to a new variable.

    • Use classes for complex data structures or when you need inheritance, use structs for simple data types or when you want value semantics.

    • Example: class Per...

  • Answered by AI
  • Q4. If let and guard let
  • Q5. Grand central dispatch in swift
  • Ans. 

    Grand Central Dispatch (GCD) is a technology in Swift for managing concurrent operations.

    • GCD allows developers to perform tasks concurrently without having to manage threads manually.

    • It provides a high-level API for managing tasks and executing them on different queues.

    • Developers can use GCD to perform tasks in the background, update the UI on the main thread, and more.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Auto closures and Escaping closures
  • Q2. Cardinality and string reverse coding
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Objective C vs swift
  • Ans. 

    Objective-C is the older language used for iOS development, while Swift is the newer, more modern language.

    • Objective-C is a superset of C with Smalltalk-style messaging syntax.

    • Swift is more concise and easier to read than Objective-C.

    • Swift is safer due to its optionals and type interference features.

    • Objective-C has been around longer and has a larger codebase, but Swift is becoming more popular.

    • Many developers prefer S...

  • Answered by AI
  • Q2. Autolayouts and content

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference betweenClass And Struct
  • Ans. 

    Classes are reference types, while structs are value types in Swift.

    • Classes are reference types, meaning they point to the same memory location when assigned to a new variable.

    • Structs are value types, meaning they create a new copy when assigned to a new variable.

    • Classes support inheritance, while structs do not.

    • Classes can have deinitializers, while structs cannot.

    • Classes can be typecasted, while structs cannot.

  • Answered by AI
  • Q2. Static Key work
Round 2 - Coding Test 

Find the index of the first occurrence in string

Round 3 - HR 

(2 Questions)

  • Q1. Salary Expectation
  • Q2. Any leave plans in next six months
  • Ans. 

    Yes, I have planned a vacation in the next six months.

    • I have scheduled a week-long trip to Europe in September.

    • I also plan to take a few days off around Christmas to visit family.

    • I have informed my team in advance and ensured that my work will not be affected.

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is closure? Life cycle of escaping closure?
  • Ans. 

    A closure is a self-contained block of code that can be passed around and used in your code. An escaping closure is a closure that is called after the function it was passed to has returned.

    • Closure is a block of code that can be passed around and used in your code.

    • Escaping closure is called after the function it was passed to has returned.

    • Example: Using a completion handler in a network request to handle the response a

  • Answered by AI
  • Q2. What is multi threading?
  • Ans. 

    Multi threading is the ability of a CPU to execute multiple threads concurrently, allowing for improved performance and responsiveness in applications.

    • Allows for parallel execution of tasks, improving performance

    • Enables applications to remain responsive while performing intensive tasks

    • Can lead to synchronization issues if not managed properly

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Capgemini IOS Developer interview:
  • Closure
  • IOS
  • Design Patterns
  • Multithreading
Interview preparation tips for other job seekers - Prepare well of closure concepts, Multi threading, classes/structures, data structures, Design Patterns questions

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic questions related to Swift like closure, optionals, gcd, operations. Questions related to sdks like firebase, push notifications
Round 2 - One-on-one 

(1 Question)

  • Q1. It was about the projects, methodologies used, architecture, roles and responsibilities in team.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Singletone, multithreading, oops

Interview Preparation Tips

Interview preparation tips for other job seekers - basic iOS concepts, design pattern, simple code

CGI Group Interview FAQs

How many rounds are there in CGI Group IOS Developer interview?
CGI Group interview process usually has 2 rounds. The most common rounds in the CGI Group interview process are Technical and HR.
How to prepare for CGI Group 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 CGI Group. The most common topics and skills that interviewers at CGI Group expect are JSON, XML, Agile, Android and Application Development.

Tell us how to improve this page.

CGI Group IOS Developer Salary
based on 4 salaries
₹3.8 L/yr - ₹18 L/yr
10% more than the average IOS Developer Salary in India
View more details

CGI Group 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
Software Engineer
8.1k salaries
unlock blur

₹2.7 L/yr - ₹12 L/yr

Senior Software Engineer
7.2k salaries
unlock blur

₹6.1 L/yr - ₹22.5 L/yr

Lead Analyst
3.1k salaries
unlock blur

₹10 L/yr - ₹29.5 L/yr

Associate Software Engineer
1.8k salaries
unlock blur

₹2.5 L/yr - ₹6.6 L/yr

Senior Test Engineer
1.2k salaries
unlock blur

₹6 L/yr - ₹20.2 L/yr

Explore more salaries
Compare CGI Group with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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