Upload Button Icon Add office photos

Filter interviews by

Techwin Labs IOS Developer Interview Questions and Answers

Updated 29 Nov 2019

Techwin Labs IOS Developer Interview Experiences

1 interview found

IOS Developer Interview Questions & Answers

user image Anonymous

posted on 29 Nov 2019

I applied via Indeed and was interviewed before Nov 2018. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Constructors
  • Q2. Polymorphism
  • Q3. Inheritance
  • Q4. Basics of iOS and Swift

Interview Preparation Tips

Interview preparation tips for other job seekers - Always go prepared there, they take 20 mins interview

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 & 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.

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

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

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

I applied via LinkedIn and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Swift basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic swift question and oops concepts, previous project overview.
Round 1 - Technical 

(3 Questions)

  • Q1. Basic of swift and some questions related to your past work experience.
  • Ans. 

    Questions about basic Swift knowledge and past work experience.

    • Basic Swift concepts such as optionals, closures, and protocols may be asked.

    • Questions about past projects and how you approached problem-solving may also be asked.

    • Examples of past work experience and projects may be requested.

    • Questions about Swift syntax and best practices may be asked as well.

  • Answered by AI
  • Q2. Clean coding principles
  • Ans. 

    Clean coding principles ensure code readability, maintainability, and scalability.

    • Use meaningful variable and function names

    • Keep functions short and focused

    • Avoid code duplication

    • Follow SOLID principles

    • Write unit tests

    • Refactor regularly

  • Answered by AI
  • Q3. They may ask your approaches to solve problems.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident about your answers and dont get lost.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

90mins of aptitude test after clearing interview

Round 2 - Coding Test 

1hr of coding test then final interview

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 tips
Round 2 - Group Discussion 

Quite good bother some skills

Round 3 - Technical 

(1 Question)

  • Q1. Strong communication skills required
Round 4 - Coding Test 

Python programming language along with the c++

Techwin Labs Interview FAQs

How to prepare for Techwin Labs 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 Techwin Labs. The most common topics and skills that interviewers at Techwin Labs expect are Biostatistics, Digital Marketing, Medical Coding, Mobile Development and Swift Payments.
What are the top questions asked in Techwin Labs IOS Developer interview?

Some of the top questions asked at the Techwin Labs IOS Developer interview -

  1. Construct...read more
  2. Basics of iOS and Sw...read more
  3. Inherita...read more

Tell us how to improve this page.

Techwin Labs IOS Developer Reviews and Ratings

based on 3 reviews

3.0/5

Rating in categories

3.0

Skill development

1.0

Work-life balance

3.0

Salary

1.0

Job security

1.0

Company culture

4.9

Promotions

1.0

Work satisfaction

Explore 3 Reviews and Ratings
HR Executive
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Android Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Android Developer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Techwin Labs 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