Upload Button Icon Add office photos

Filter interviews by

ZED Digital IOS Developer Interview Questions and Answers

Updated 23 Oct 2023

ZED Digital IOS Developer Interview Experiences

1 interview found

IOS Developer Interview Questions & Answers

user image PavunRaj P

posted on 23 Oct 2023

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

The given machine task

Round 2 - One-on-one 

(1 Question)

  • Q1. Ask about technical experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't join the worst company

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about ZED Digital?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is optional, difference between struct and class?
  • Ans. 

    Optional is a type in Swift that can hold a value or be nil. Struct and class are both used to define custom data types.

    • Optional is denoted by a question mark (?) and is used to handle nil values.

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

    • Structs have a default memberwise initializer, while classes do not.

    • Classes can inherit from other classes, while s...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study the basics, and the interview depends on client requirement.

Skills evaluated in this interview

IOS Developer Interview Questions Asked at Other Companies

asked in Movius Corp
Q1. What will be the output of the following Swift code: \n\nstruct s ... read more
Q2. 1 - MVC PATTERN 2- CLOUSERS & it's type 3- Google SDK like Go ... read more
asked in Movius Corp
Q3. What is the difference between the Liskov Substitution Principle ... read more
asked in Movius Corp
Q4. What is the time complexity for finding the longest common prefix ... read more
asked in Cognizant
Q5. What is optional, difference between struct and class?

I applied via Company Website and was interviewed in Jul 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. All basics of swift. Enums optionals closures protocols etc
  • Q2. Best feature you like of swift
  • Q3. App live all steps
  • Q4. Certificates information

Interview Preparation Tips

Interview preparation tips for other job seekers - They will ask you everything about swift

Interview Questionnaire 

2 Questions

  • Q1. Struct vs Class
  • Ans. 

    Struct is value type while Class is reference type in Swift. Structs are passed by value while Classes are passed by reference.

    • Structs are ideal for small data types like coordinates, colors, etc.

    • Classes are ideal for larger data types like view controllers, network managers, etc.

    • Structs are immutable by default while Classes are mutable.

    • Structs cannot inherit from other types while Classes can.

    • Structs are stack alloca...

  • Answered by AI
  • Q2. MultiThreading Related Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong basic knowledge required

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. Basic of Swift and Objective C
Round 2 - One-on-one 

(1 Question)

  • Q1. Pure Technical Asking about your Project
Round 3 - HR 

(1 Question)

  • Q1. Salary Descussion with HR and normal HR Question

Interview Preparation Tips

Interview preparation tips for other job seekers - Make you technical strong and prepare DS Question as well
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
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Asked basic iOS Developer interview questions
Are these interview questions helpful?

I applied via Company Website

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 

(2 Questions)

  • Q1. I interned here in my second-year summer. I got selected on the basis of resume shortlisting.
  • Q2. There was no technical round

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare a good and impressive resume and also prepare dsa.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

Find second greatest number from an array of duplicate items.

Interview Preparation Tips

Interview preparation tips for other job seekers - Remove duplicate -> Sort the array -> 2nd greatest will be arr[arr.count - 2]
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Arc in swift...
  • Ans. 

    ARC (Automatic Reference Counting) in Swift is a memory management system used to automatically manage memory allocation and deallocation.

    • ARC keeps track of how many references there are to an object and automatically deallocates it when there are no more references.

    • Use strong reference cycles can lead to memory leaks, so use weak or unowned references to break the cycle.

    • ARC is the default memory management system in S...

  • Answered by AI
  • Q2. Automstic referenc counting
  • Ans. 

    Automatic Reference Counting (ARC) manages memory in iOS apps, ensuring efficient resource use and preventing memory leaks.

    • ARC automatically tracks and manages the app's memory usage.

    • Objects are deallocated when there are no strong references to them.

    • Use 'weak' references to avoid retain cycles, e.g., delegate properties.

    • Example: 'var delegate: MyDelegate?' is a weak reference.

    • ARC simplifies memory management compared ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Mvvm in swift....
  • Ans. 

    MVVM (Model-View-ViewModel) is an architectural design pattern commonly used in iOS development to separate concerns and improve code maintainability.

    • MVVM separates the user interface (View) from the business logic (ViewModel) and data (Model).

    • ViewModel acts as an intermediary between the View and the Model, handling user interactions and updating the data.

    • Swift provides tools like Combine framework for reactive progra...

  • Answered by AI
  • Q2. Model view viewmodel

Skills evaluated in this interview

ZED Digital Interview FAQs

How many rounds are there in ZED Digital IOS Developer interview?
ZED Digital interview process usually has 3 rounds. The most common rounds in the ZED Digital interview process are Resume Shortlist, Coding Test and One-on-one Round.
How to prepare for ZED Digital 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 ZED Digital. The most common topics and skills that interviewers at ZED Digital expect are IOS.

Tell us how to improve this page.

Overall Interview Experience Rating

1/5

based on 1 interview experience

ZED Digital IOS Developer Salary
based on 4 salaries
₹3.6 L/yr - ₹5 L/yr
39% less than the average IOS Developer Salary in India
View more details

ZED Digital IOS Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
IOS Developer
4 salaries
unlock blur

₹3.6 L/yr - ₹5 L/yr

Backend Developer
3 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Android App Developer
3 salaries
unlock blur

₹5 L/yr - ₹7 L/yr

Android Developer
3 salaries
unlock blur

₹4.5 L/yr - ₹5 L/yr

Android Software Developer
3 salaries
unlock blur

₹3.5 L/yr - ₹4.5 L/yr

Explore more salaries
Compare ZED Digital with

TCS

3.6
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview