Upload Button Icon Add office photos
Engaged Employer

i

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

Depex Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Depex Technologies IOS Developer Interview Questions and Answers

Updated 9 Sep 2021

Depex Technologies IOS Developer Interview Experiences

1 interview found

I applied via Company Website and was interviewed before Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Push notifications , Logics , Payment Gateways , Swift4 , POS , Devops with ios etc..

Interview Preparation Tips

Interview preparation tips for other job seekers - Not easy to get answers from google, if you have really knowledge you are in otherwise you know

Interview questions from similar companies

IOS Developer Interview Questions & Answers

Mphasis user image Khushbu Kushwah

posted on 1 Jul 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Some basic Questions related to iOS concepts.
  • Q2. Multithreading and multitasking.
Round 2 - Technical 

(2 Questions)

  • Q1. Advanced iOS Questions.
  • Q2. API Calling, Json Parsing

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn Basic Concepts first.
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
-
Process Duration
-
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. App life cycle and app states?
  • Q2. Difference between MVVM and MVC
  • Ans. 

    MVVM focuses on separation of concerns by introducing a ViewModel layer, while MVC combines the responsibilities of the Model and Controller.

    • MVC stands for Model-View-Controller, where the Model represents the data, the View displays the data, and the Controller handles user input and updates the Model.

    • MVVM stands for Model-View-ViewModel, where the ViewModel acts as an intermediary between the View and the Model, hand...

  • Answered by AI

Skills evaluated in this interview

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

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 experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Diff b/w diff and guard
  • Ans. 

    diff is used to compare two collections and return the differences, while guard is used for early exit in a function if a condition is not met.

    • diff is a method used in Swift to compare two collections and return the differences.

    • guard is a keyword used in Swift to provide an early exit from a function if a condition is not met.

    • Example: let array1 = [1, 2, 3, 4], array2 = [3, 4, 5, 6]; let result = array1.diff(array2) //...

  • Answered by AI
  • Q2. What is GCD and Multitreadung
  • Ans. 

    GCD stands for Grand Central Dispatch, a technology used in iOS for managing concurrent operations. Multithreading is the ability of a CPU to execute multiple threads concurrently.

    • GCD is used for managing tasks asynchronously and efficiently utilizing system resources.

    • Multithreading allows multiple tasks to run concurrently, improving performance and responsiveness of an application.

    • Example: Using GCD to download image...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. SwiftUI related, Combine Related, Decodable, Actor, Testing Related
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Technical 

(14 Questions)

  • Q1. What is serialisation in API
  • Ans. 

    Serialisation in API is the process of converting data into a format that can be easily transmitted over a network.

    • Serialisation is used to convert complex data structures into a format that can be easily transmitted over a network.

    • It involves converting objects or data structures into a stream of bytes that can be sent over a network.

    • JSON and XML are commonly used formats for serialising data in APIs.

    • Serialisation is ...

  • Answered by AI
  • Q2. What is codable
  • Ans. 

    Codable is a protocol in Swift that allows for easy encoding and decoding of data types to and from external representations.

    • Codable protocol is used to convert custom data types to and from external representations such as JSON, plist, etc.

    • It requires the types to conform to Encodable and Decodable protocols.

    • Codable protocol provides default implementations for encoding and decoding.

    • Example: struct Person: Codable { v...

  • Answered by AI
  • Q3. What is MVVM architecture
  • Ans. 

    MVVM is an architectural design pattern that separates the user interface code from the business logic and data model.

    • MVVM stands for Model-View-ViewModel

    • Model represents the data and business logic

    • View displays the UI elements and interacts with the user

    • ViewModel acts as a mediator between the Model and View, handling user inputs and updating the Model

    • MVVM helps in achieving separation of concerns and making the code

  • Answered by AI
  • Q4. Solid principles
  • Q5. Coredata stack questions
  • Q6. Swift Optional related
  • Q7. About GCD, Concurrency
  • Q8. Dependency injection and inversion
  • Q9. About singleton, is it thread safe ?
  • Q10. Guard let, if let difference
  • Q11. Failable initialisers
  • Q12. Class struct difference
  • 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.

    • Classes support inheritance, while structs do not.

    • Classes can have deinitializers, while structs cannot.

    • Example: class Person { var name: String } vs struc

  • Answered by AI
  • Q13. About protocols, associated type, delegate examples
  • Q14. About identifiable protocol
Round 2 - HR 

(1 Question)

  • Q1. When you can join
  • Ans. 

    I can join within 2 weeks of receiving an offer.

    • I can start within 2 weeks of receiving an offer

    • I need to give notice at my current job before starting

    • I have some personal commitments that I need to wrap up before joining

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic iOS Questions which you can find from the internet What is Class & Structure Optional, Tupple
Round 2 - Behavioral 

(1 Question)

  • Q1. Tricky question based upon manager Team management Handling multiple junior developers under you.
Round 3 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I expect a competitive salary based on my experience and skills.

    • I have a strong background in iOS development and have successfully completed several projects.

    • I am familiar with the latest technologies and frameworks in iOS development.

    • I have a proven track record of delivering high-quality code on time and within budget.

    • I am confident that my skills and experience make me a valuable asset to any team.

    • I am open to disc...

  • Answered by AI
  • Q2. Share details of your previous job.
  • Ans. 

    I worked as an iOS Developer at XYZ Company.

    • Developed and maintained iOS applications using Swift and Objective-C.

    • Collaborated with cross-functional teams to gather requirements and deliver high-quality products.

    • Implemented new features and enhancements based on user feedback.

    • Optimized app performance and resolved bugs and issues.

    • Worked on integrating third-party libraries and APIs.

    • Participated in code reviews and prov...

  • Answered by AI
  • Q3. Why are you looking for a change?
  • Ans. 

    I am looking for a change to explore new opportunities and challenges in my career.

    • Seeking growth and advancement in my professional journey

    • Want to work on more challenging projects

    • Desire to learn new technologies and expand my skillset

    • Looking for a better work-life balance

    • Seeking a company culture that aligns with my values and goals

  • Answered by AI
  • Q4. Tell me about yourself.
  • Ans. 

    I am an experienced iOS developer with a passion for creating user-friendly and efficient applications.

    • I have been developing iOS applications for over 5 years.

    • I am proficient in Swift and Objective-C programming languages.

    • I have experience working with various frameworks and libraries such as UIKit, Core Data, and Alamofire.

    • I have a strong understanding of iOS design patterns and best practices.

    • I have successfully del...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for LTIMindtree IOS Developer interview:
  • Swift
  • Objective C
  • IOS
Interview preparation tips for other job seekers - Prepare well and make sure you have all of your previous employment certificates ready along with you, they ask you to upload step by step.

Tell us how to improve this page.

Depex Technologies IOS Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Email Marketing Executive
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Graphic Designer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

HR Executive
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Executive
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Depex Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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