Premium Employer

i

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

HCLTech Verified Tick

Compare button icon Compare button icon Compare
3.5

based on 34.1k Reviews

Filter interviews by

HCLTech Senior Android Application Developer Interview Questions and Answers

Updated 31 Oct 2022

HCLTech Senior Android Application Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Oct 2022. There were 5 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 - Coding Test 

Technical round with a few coding questions

Round 3 - Technical 

(1 Question)

  • Q1. Technical round with Android questions and situation and logic based scenarios. Layouts, views, view groups, constraint layout, bugs, exception and how to handle exception. Data sharing between application...
Round 4 - HR 

(1 Question)

  • Q1. Salary expectations, any offer in hand.
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion, negotiations and if holding any offer.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on basics of Android and practice coding question.

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Kotlin Coroutines
  • Q2. OOPS concepts basics
  • Q3. Android Activities, Fragments, Broadcast receiver, Push Notification, Exceptional handling and all about KOTLIN and Jetpack compose (if you know)
Round 2 - One-on-one 

(1 Question)

  • Q1. Technical scenario based discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - - Be thorough on each answer
- Study in deep whatever topic you know
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Questions from core java
  • Q2. And basic stuff like mutable vs immutable
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. IOS & Swift Basics
  • Q2. 1 Coding question( String/ Array) Level
  • Q3. Write Delegation example, They will show the code and ask whats wrong in the code & whats the o/p of the code. expect questions like Closure Capture List, InOut parameter
Round 2 - Technical 

(2 Questions)

  • Q1. This round was not based on iOS for me. Question was related to my past projects based on my resume.
  • Q2. More focous on architectures and design patterns like MVC, MVVM, Viper, Solid, Clean coding
Round 3 - HR 

(1 Question)

  • Q1. Whats your expected Salary?

Interview Preparation Tips

Interview preparation tips for other job seekers - - Focus more on iOS and Swift basics
- Array & String Level DSA is enough
- Study Architecture & Design pattern

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

(5 Questions)

  • Q1. Encription and decription in swift
  • Ans. 

    Encryption and decryption in Swift involves using cryptographic algorithms to encode and decode data securely.

    • Use common encryption algorithms like AES or RSA for encryption.

    • Implement encryption using libraries like CommonCrypto or CryptoSwift.

    • Store encryption keys securely and use secure protocols for data transmission.

    • Example: Encrypting a string using AES encryption in Swift.

  • Answered by AI
  • Q2. Keychain access in swift
  • Ans. 

    Keychain access in Swift allows secure storage of sensitive information like passwords, tokens, etc.

    • Use Keychain Services API to securely store and retrieve sensitive data.

    • Keychain items are stored securely in the device's keychain and are encrypted.

    • Access keychain items using unique identifiers called keys.

    • Use Keychain Swift library for easier implementation.

  • Answered by AI
  • Q3. Class vs struct
  • 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.

    • Use classes for complex data structures or when you need inheritance, use structs for simple data types or when you want value semantics.

    • Example: class Per...

  • Answered by AI
  • Q4. If let and guard let
  • Q5. Grand central dispatch in swift
  • Ans. 

    Grand Central Dispatch (GCD) is a technology in Swift for managing concurrent operations.

    • GCD allows developers to perform tasks concurrently without having to manage threads manually.

    • It provides a high-level API for managing tasks and executing them on different queues.

    • Developers can use GCD to perform tasks in the background, update the UI on the main thread, and more.

  • Answered by AI

Skills evaluated in this interview

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

(5 Questions)

  • Q1. Multi threading
  • Q2. Generic function
  • Q3. Dependency injection
  • Q4. Struct vs Class
  • Ans. 

    Struct is a value type, Class is a reference type in Swift.

    • Structs are passed by value, Classes are passed by reference.

    • Structs are immutable by default, Classes are mutable.

    • Use Structs for simple data types, Classes for more complex objects.

  • Answered by AI
  • Q5. Type inference, type casting

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Android Basics on mvvm architecture
  • Q2. Navigation Component
  • Q3. Jetpack components- work manager, viewmodel
Round 2 - HR 

(1 Question)

  • Q1. Managerial questions
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
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
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

HCLTech Interview FAQs

How many rounds are there in HCLTech Senior Android Application Developer interview?
HCLTech interview process usually has 5 rounds. The most common rounds in the HCLTech interview process are HR, Resume Shortlist and Coding Test.

Tell us how to improve this page.

People are getting interviews through

based on 1 HCLTech interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Join HCLTech Find your spark and discover what drives you forward

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
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
IBM Interview Questions
4.1
 • 2.3k Interviews
View all
HCLTech Senior Android Application Developer Salary
based on 5 salaries
₹7 L/yr - ₹14 L/yr
6% less than the average Senior Android Application Developer Salary in India
View more details

HCLTech Senior Android Application Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-Life balance

2.0

Salary & Benefits

4.0

Job Security

4.0

Company culture

2.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
22.3k salaries
unlock blur

₹1.2 L/yr - ₹8 L/yr

Technical Lead
20.7k salaries
unlock blur

₹7 L/yr - ₹25 L/yr

Senior Software Engineer
15.4k salaries
unlock blur

₹4 L/yr - ₹16.5 L/yr

Lead Engineer
14.8k salaries
unlock blur

₹4.2 L/yr - ₹14 L/yr

Senior Analyst
13.9k salaries
unlock blur

₹1 L/yr - ₹8.7 L/yr

Explore more salaries
Compare HCLTech with

TCS

3.7
Compare

Wipro

3.7
Compare

Accenture

3.9
Compare

Cognizant

3.8
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