Upload Button Icon Add office photos

Filter interviews by

Robosoft Technologies IOS Developer Interview Questions and Answers

Updated 30 Aug 2022

Robosoft Technologies IOS Developer Interview Experiences

1 interview found

IOS Developer Interview Questions & Answers

user image Anonymous

posted on 30 Aug 2022

I applied via Campus Placement and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

General, logical, current technologies

Round 2 - One-on-one 

(1 Question)

  • Q1. Tell me about yourselves coding related questions logical questions
Round 3 - HR 

(1 Question)

  • Q1. Why would you like to join company why do you think we should hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep up with current technologies, logical reasoning

IOS Developer Jobs at Robosoft Technologies

View all

Interview questions from similar companies

IOS Developer Interview Questions & Answers

NeoSOFT user image Tejaswini Kadam

posted on 7 Jun 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. GCD, Operation queue, struct vs class, some small logical coding ,
Round 2 - Technical 

(1 Question)

  • Q1. GCD, operation queue, URL Session tasks, ref type , value tyep,
Round 3 - HR 

(1 Question)

  • Q1. Basic and discussion about Job offer
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Oops based question
  • Q2. Solid principles and how to implement
  • Ans. 

    Solid principles are a set of five design principles for writing maintainable and scalable code.

    • Single Responsibility Principle: A class should have only one reason to change.

    • Open/Closed Principle: Classes should be open for extension but closed for modification.

    • Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses without affecting the program's correctness.

    • Interfa...

  • Answered by AI
Round 2 - Coding Test 

Tata using network layer

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Types of job in kotlin coroutine
  • Ans. 

    Types of jobs in Kotlin coroutine include launch, async, withContext, and runBlocking.

    • launch: starts a new coroutine without blocking the current thread

    • async: starts a new coroutine and returns a Deferred object with a result

    • withContext: switches the coroutine context within a coroutine

    • runBlocking: blocks the current thread until the coroutine inside it is completed

  • Answered by AI
  • Q2. What is Flow, Channel diffrent between StateFlow and SharedFlow
  • Ans. 

    Flow is a cold asynchronous data stream, Channel is a hot asynchronous data stream. StateFlow is a hot asynchronous data stream with a state, SharedFlow is a hot asynchronous data stream without a state.

    • Flow is a cold asynchronous data stream that emits values one by one.

    • Channel is a hot asynchronous data stream that can have multiple subscribers.

    • StateFlow is a hot asynchronous data stream that retains the most recent ...

  • Answered by AI
  • Q3. If Flow lifecycle aware
  • Ans. 

    Flow lifecycle aware means using Kotlin Flow with lifecycle awareness in Android development.

    • Flow lifecycle aware helps manage data streams in Android apps

    • It ensures that data emissions are only observed when the lifecycle is in the appropriate state

    • Example: Using Flow with LiveData to update UI components based on lifecycle events

  • Answered by AI
  • Q4. What is inline function and highorder function?
  • Ans. 

    Inline functions are functions that are expanded in place at the call site, while high-order functions are functions that can take other functions as parameters or return them.

    • Inline functions are expanded in place at the call site to improve performance.

    • High-order functions can take other functions as parameters or return them.

    • Example of high-order function: map() function in Kotlin.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Kotlin basic

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Explain hooks in react
  • Ans. 

    Hooks are a new addition in React 16.8 that allow you to use state and other React features without writing a class.

    • Hooks are functions that let you use state and other React features in functional components.

    • useState() is a hook that allows you to add state to functional components.

    • useEffect() is a hook that allows you to perform side effects in functional components.

    • Custom hooks are reusable functions that can contai...

  • Answered by AI
Round 2 - Assignment 

Create weather application in react native with unit test scripts

Interview Preparation Tips

Interview preparation tips for other job seekers - I recently interviewed for react native developer position and it started with a technical discussion followed by an assessment and after clearing both rounds I was asked to submit a detailed document regarding my technical experience and past projects. Since then I didn't get any feedback from the company I even tried to contact the Xoriant hr directly but was unable to get any reply so it was a very disappointing experience.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Interview Questions on Oops, Services, Dagger, Services
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 - Technical 

(1 Question)

  • Q1. Self intro,swift basic to advance
Round 3 - Technical 

(1 Question)

  • Q1. Self intro , coding and technical question
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion from hr

Interview Preparation Tips

Interview preparation tips for other job seekers - learn basic, instrustment, memory management
Round 1 - Technical 

(1 Question)

  • Q1. Oops , programming, collection, java basic and Kotlin basic

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic welll for java and Kotlin.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Weak - Strong Difference
  • Ans. 

    Weak - Strong Difference is a common interview question to assess understanding of object-oriented programming concepts.

    • Weak references do not prevent the referenced object from being deallocated, while strong references do.

    • Weak references are used to avoid retain cycles in iOS development.

    • Strong references increase the retain count of an object, keeping it in memory until all strong references are released.

  • Answered by AI
  • Q2. Open - Public Difference
  • Ans. 

    In iOS development, 'open' allows access to the class or method from any module, while 'public' restricts access to the current module only.

    • Open access modifier allows classes and methods to be accessed from any module.

    • Public access modifier restricts access to the current module only.

    • Example: 'open class MyClass' can be accessed from any module, while 'public class MyClass' can only be accessed within the current modu

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Oops based question
  • Q2. Solid principles and how to implement
  • Ans. 

    Solid principles are a set of five design principles for writing maintainable and scalable code.

    • Single Responsibility Principle: A class should have only one reason to change.

    • Open/Closed Principle: Classes should be open for extension but closed for modification.

    • Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses without affecting the program's correctness.

    • Interfa...

  • Answered by AI
Round 2 - Coding Test 

Tata using network layer

Skills evaluated in this interview

Robosoft Technologies Interview FAQs

How many rounds are there in Robosoft Technologies IOS Developer interview?
Robosoft Technologies interview process usually has 3 rounds. The most common rounds in the Robosoft Technologies interview process are Aptitude Test, One-on-one Round and HR.
How to prepare for Robosoft Technologies 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 Robosoft Technologies. The most common topics and skills that interviewers at Robosoft Technologies expect are IOS, Swift, MVVM, UI Development and MVC.

Tell us how to improve this page.

IOS Developer Interview Questions from Similar Companies

View all
Robosoft Technologies IOS Developer Salary
based on 14 salaries
₹6.7 L/yr - ₹10 L/yr
16% more than the average IOS Developer Salary in India
View more details

Robosoft Technologies IOS Developer Reviews and Ratings

based on 2 reviews

3.6/5

Rating in categories

3.2

Skill development

3.5

Work-life balance

2.2

Salary

3.6

Job security

2.8

Company culture

2.8

Promotions

2.8

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
302 salaries
unlock blur

₹4.7 L/yr - ₹15 L/yr

Senior Software Engineer
278 salaries
unlock blur

₹8.2 L/yr - ₹29 L/yr

Associate Software Engineer
108 salaries
unlock blur

₹4 L/yr - ₹6.5 L/yr

Technical Lead
76 salaries
unlock blur

₹11 L/yr - ₹36 L/yr

Software Developer
44 salaries
unlock blur

₹5.2 L/yr - ₹10 L/yr

Explore more salaries
Compare Robosoft Technologies with

Persistent Systems

3.5
Compare

TCS

3.7
Compare

LTIMindtree

3.8
Compare

Mphasis

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