Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by NTT Data Information Processing Services Team. If you also belong to the team, you can get access from here
4.0

based on 6.6k Reviews

Filter interviews by

NTT Data Information Processing Services IOS Team Lead Interview Questions, Process, and Tips for Experienced

Updated 14 Feb 2024

NTT Data Information Processing Services IOS Team Lead Interview Experiences for Experienced

1 interview found

IOS Team Lead Interview Questions & Answers

user image Anonymous

posted on 14 Feb 2024

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. What is Protocol in swift?
  • Ans. 

    Protocols in Swift define a blueprint of methods, properties, and other requirements that a class, struct, or enum must adopt.

    • Protocols are used to define a set of rules or capabilities that a type must conform to.

    • They allow for code reuse and provide a way to define common behavior across different types.

    • A type can adopt multiple protocols, enabling it to conform to multiple sets of rules.

    • Protocols can require propert...

  • Answered by AI
  • Q2. What is Dependency Injection.?
  • Ans. 

    Dependency Injection is a design pattern where the dependencies of an object are provided externally rather than being created internally.

    • Dependency Injection helps in achieving loose coupling between classes.

    • It allows for easier testing and maintenance of code.

    • There are three types of Dependency Injection: Constructor Injection, Setter Injection, and Interface Injection.

    • Example: In iOS development, we can use Dependen...

  • Answered by AI
  • Q3. What is Generics in swift.?
  • Ans. 

    Generics in Swift allow you to write flexible and reusable code by creating functions, classes, and structures that can work with any type.

    • Generics enable you to write code that can be used with different types, without duplicating code.

    • You can define generic functions, types, and protocols to work with a wide range of types.

    • Generics are particularly useful when working with collections, such as arrays and dictionaries...

  • Answered by AI
  • Q4. What is Associate types ?
  • Ans. 

    Associate types are a way to create a relationship between two types in Swift.

    • Associate types are defined using the 'associatedtype' keyword.

    • They are used in protocols to define a placeholder type that will be specified by the conforming type.

    • The conforming type can provide its own concrete type for the associated type.

    • This allows protocols to be more flexible and reusable.

    • For example, a protocol for a container type c...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do Prepare well for all the concepts of Objective C and swift fundamentals.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

Normal MCQ questions reasoning, java related and programs outputs

Round 2 - Coding Test 

Difference between abstract classes and interfaces, Array sort time complexity

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I was interviewed in Apr 2024.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Questions related to koltin
  • Q2. Jetpack compose uses
  • Ans. 

    Jetpack Compose is a modern Android UI toolkit that simplifies and accelerates UI development.

    • Declarative UI: Jetpack Compose allows developers to build UI using a declarative programming model.

    • State management: Jetpack Compose handles state management efficiently, making it easier to update UI based on data changes.

    • Compose functions: Developers can create reusable UI components using Compose functions.

    • Interoperability...

  • Answered by AI
  • Q3. Difference between remember and rememberSaveable
  • Ans. 

    remember is used to store a value in a composable function, while rememberSaveable is used to store a value that survives configuration changes.

    • remember is used to store a value that does not survive configuration changes

    • rememberSaveable is used to store a value that survives configuration changes, such as rotation of the device

    • rememberSaveable is typically used for storing view model data in Jetpack Compose

  • Answered by AI
  • Q4. Coroutines parallel and sequential processing

Skills evaluated in this interview

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

(1 Question)

  • Q1. Basics of Android
Round 2 - Technical 

(1 Question)

  • Q1. Technical implementation
Round 3 - HR 

(1 Question)

  • Q1. Company fit culture test
Interview experience
5
Excellent
Difficulty level
-
Process Duration
2-4 weeks
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Basic of kotlin questions
  • Q2. Live data and life cycle
  • Q3. Diff between MVVM and other architectures
  • Ans. 

    MVVM is a design pattern that separates the UI, business logic, and data layers, promoting better code organization and testability.

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

    • MVVM promotes data binding, making it easier to keep the UI in sync with the underlying data.

    • Other architectures like MVC (Model-View-Controller) and MVP (Model-View-Presenter) ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Aug 2023. There were 4 interview rounds.

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 

(2 Questions)

  • Q1. Android basics and life cycle
  • Q2. Services and AIDL
Round 3 - Client Interview 

(1 Question)

  • Q1. Design patterns and use cases
Round 4 - HR 

(1 Question)

  • Q1. Reason foe change current company
  • Ans. 

    Seeking new challenges and growth opportunities in a more innovative environment.

    • Desire for professional growth

    • Seeking new challenges

    • Looking for a more innovative environment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Client interview is purely technical
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Lifecycle method, polyfills, performance, optimisation
  • Q2. New architecture, design patterns

Interview Preparation Tips

Interview preparation tips for other job seekers - ! round mainly focuses on the technical aspects of JavaScript and react. The interview will be a bit long around 2 hours. Work on your basics of JS and react to this.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is the coroutines? Lazy and lateint Sealed classes
  • Ans. 

    Coroutines are a way to perform asynchronous programming in a more structured and readable manner in Android development.

    • Coroutines are lightweight threads that can be used to perform long-running tasks without blocking the main thread.

    • They simplify asynchronous programming by allowing developers to write code that looks synchronous, making it easier to understand and maintain.

    • Coroutines can be used for tasks like netw...

  • Answered by AI

I applied via Naukri.com and was interviewed in May 2022. There were 5 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude questions with no negative marking. 20 minutes 30 questions

Round 2 - Coding Test 

2 String manipulation questions

Round 3 - Swift MCQ Test 

(1 Question)

  • Q1. Basic level Swift MCQ Questions
Round 4 - One-on-one 

(1 Question)

  • Q1. 30-45 minutes one on one ios interview, Asked memory management, lifecycle, core data questions
Round 5 - One-on-one 

(1 Question)

  • Q1. 30 minutes one on one ios interview. asked questions around concurrency, why swift is called POP, In detail rigorous interview.

Interview Preparation Tips

Topics to prepare for Nagarro Senior IOS Developer interview:
  • Concurrency
  • Swift Concepts
  • OOPS concepts
  • SOLID priniciples
  • Database
  • Swift Combine
Interview preparation tips for other job seekers - I couldn't make it in 5th round because interviewer doesn't seem to be happy with answers. Overall it was not difficult to crack Nagarro interview but definitely makes you tiresome with so long interview process.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Japanese reading and introduce
  • Q2. Kanji reading and meaning
  • Ans. 

    Kanji is a system of Japanese writing using Chinese characters. Each character has a reading and meaning.

    • Kanji characters are used in combination with hiragana and katakana to write Japanese.

    • There are over 2,000 commonly used kanji characters.

    • Each kanji character has at least one reading and one meaning, but some have multiple readings and meanings.

    • For example, the kanji character for 'tree' can be read as 'ki' or 'mok

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in your introduction and try to read kanji as much as possible

NTT Data Information Processing Services Interview FAQs

How many rounds are there in NTT Data Information Processing Services IOS Team Lead interview for experienced candidates?
NTT Data Information Processing Services interview process for experienced candidates usually has 1 rounds. The most common rounds in the NTT Data Information Processing Services interview process for experienced candidates are Technical.
What are the top questions asked in NTT Data Information Processing Services IOS Team Lead interview for experienced candidates?

Some of the top questions asked at the NTT Data Information Processing Services IOS Team Lead interview for experienced candidates -

  1. What is Protocol in swi...read more
  2. What is Dependency Injectio...read more
  3. What is Generics in swif...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 NTT Data Information Processing Services interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
IBM Interview Questions
4.1
 • 2.3k Interviews
View all
Senior Associate
1.3k salaries
unlock blur

₹1.5 L/yr - ₹8 L/yr

Software Engineer
1.3k salaries
unlock blur

₹2.7 L/yr - ₹11 L/yr

Software Developer
1k salaries
unlock blur

₹3.3 L/yr - ₹13.1 L/yr

Senior Software Engineer
910 salaries
unlock blur

₹6.1 L/yr - ₹24 L/yr

Software Development Senior Analyst
767 salaries
unlock blur

₹5.3 L/yr - ₹17.4 L/yr

Explore more salaries
Compare NTT Data Information Processing Services with

Accenture

3.9
Compare

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview