Filter interviews by
A closure is a self-contained block of code that can be passed around and used in your code.
Closures capture and store references to any constants and variables from the context in which they are defined.
Closures are similar to blocks in Objective-C and lambdas in other programming languages.
Closures can be used to pass functions as arguments to other functions.
Example: { (parameters) -> return type in code }
Generics allow you to write flexible, reusable functions and data types that can work with any type.
Generics enable you to write functions and data types that can work with any type.
They help in writing flexible and reusable code.
Example: Array
Classes are reference types, while structs are value types in Swift.
Classes are reference types, meaning they are passed by reference. Changes made to one instance will affect all references to that instance.
Structs are value types, meaning they are passed by value. Each instance has its own copy, so changes made to one instance do not affect others.
Classes support inheritance, while structs do not.
Classes have de...
Protocol is a set of methods and properties that a class, struct, or enum can implement to define a particular functionality.
Protocols define a blueprint of methods, properties, and other requirements that a class or struct must adhere to.
They are similar to interfaces in other programming languages.
Classes, structs, and enums can adopt protocols by conforming to them.
Protocols allow for polymorphism and code reus...
APNs life cycle refers to the process of sending push notifications to iOS devices.
APNs connects with the device through a persistent and secure connection.
The device registers with APNs to receive push notifications.
When a push notification is sent, APNs delivers it to the device.
If the device is offline, APNs stores the notification and delivers it when the device is back online.
Types of access controls in iOS include public, internal, private, and fileprivate.
Public: Accessible from anywhere, both within the module and outside.
Internal: Accessible from anywhere within the module.
Private: Accessible only within the defining type.
Fileprivate: Accessible only within the same file.
The app life cycle in iOS refers to the sequence of events that occur from the time an app is launched to when it is terminated.
The app is launched by the user or system.
The app enters the foreground and becomes active.
The app can enter the background when the user switches to another app or the device locks.
The app can be terminated by the user or system.
The app can also be suspended, where it remains in memory b...
Firebase Notification is a cloud messaging service provided by Google.
Firebase Notification allows developers to send messages and notifications to their app users.
It supports both Android and iOS platforms.
It provides a console to send notifications to specific devices or topics.
It also supports sending notifications based on user behavior and location.
Firebase Notification can be integrated with other Firebase s...
Intent is a messaging object used to request an action from another app component. There are two types of intents: explicit and implicit.
Intent is used to start an activity, service, or broadcast receiver.
Explicit intent specifies the component to be invoked by its name.
Implicit intent specifies the action to be performed and optionally, the data to be used.
Examples of implicit intents are opening a webpage or mak...
Activity is a single screen with a user interface, while fragments are a portion of the user interface in an activity.
Activity is a standalone component that can be launched by an application.
Fragments are reusable components that can be used in multiple activities.
An activity can contain multiple fragments.
Fragments have their own lifecycle and can be added or removed dynamically.
Example: A music player app can h...
I applied via Referral and was interviewed before Apr 2023. There was 1 interview round.
The app life cycle in iOS refers to the sequence of events that occur from the time an app is launched to when it is terminated.
The app is launched by the user or system.
The app enters the foreground and becomes active.
The app can enter the background when the user switches to another app or the device locks.
The app can be terminated by the user or system.
The app can also be suspended, where it remains in memory but do...
Classes are reference types, while structs are value types in Swift.
Classes are reference types, meaning they are passed by reference. Changes made to one instance will affect all references to that instance.
Structs are value types, meaning they are passed by value. Each instance has its own copy, so changes made to one instance do not affect others.
Classes support inheritance, while structs do not.
Classes have deiniti...
Protocol is a set of methods and properties that a class, struct, or enum can implement to define a particular functionality.
Protocols define a blueprint of methods, properties, and other requirements that a class or struct must adhere to.
They are similar to interfaces in other programming languages.
Classes, structs, and enums can adopt protocols by conforming to them.
Protocols allow for polymorphism and code reuse in ...
Types of access controls in iOS include public, internal, private, and fileprivate.
Public: Accessible from anywhere, both within the module and outside.
Internal: Accessible from anywhere within the module.
Private: Accessible only within the defining type.
Fileprivate: Accessible only within the same file.
A closure is a self-contained block of code that can be passed around and used in your code.
Closures capture and store references to any constants and variables from the context in which they are defined.
Closures are similar to blocks in Objective-C and lambdas in other programming languages.
Closures can be used to pass functions as arguments to other functions.
Example: { (parameters) -> return type in code }
Generics allow you to write flexible, reusable functions and data types that can work with any type.
Generics enable you to write functions and data types that can work with any type.
They help in writing flexible and reusable code.
Example: Array
APNs life cycle refers to the process of sending push notifications to iOS devices.
APNs connects with the device through a persistent and secure connection.
The device registers with APNs to receive push notifications.
When a push notification is sent, APNs delivers it to the device.
If the device is offline, APNs stores the notification and delivers it when the device is back online.
Intent is a messaging object used to request an action from another app component. There are two types of intents: explicit and implicit.
Intent is used to start an activity, service, or broadcast receiver.
Explicit intent specifies the component to be invoked by its name.
Implicit intent specifies the action to be performed and optionally, the data to be used.
Examples of implicit intents are opening a webpage or making a...
Activity and Fragment life cycles are a series of states that an Android component goes through during its lifetime.
Activity life cycle includes onCreate(), onStart(), onResume(), onPause(), onStop(), and onDestroy() methods.
Fragment life cycle includes onAttach(), onCreate(), onCreateView(), onActivityCreated(), onStart(), onResume(), onPause(), onStop(), onDestroyView(), and onDetach() methods.
Both life cycles are im...
Activity is a single screen with a user interface, while fragments are a portion of the user interface in an activity.
Activity is a standalone component that can be launched by an application.
Fragments are reusable components that can be used in multiple activities.
An activity can contain multiple fragments.
Fragments have their own lifecycle and can be added or removed dynamically.
Example: A music player app can have a...
ArrayList is a resizable array while HashMap is a key-value pair collection.
ArrayList is ordered while HashMap is unordered
ArrayList allows duplicate values while HashMap does not
HashMap provides faster access to elements using keys
Use ArrayList when you need to maintain the order of elements
Use HashMap when you need to access elements using keys
Firebase Notification is a cloud messaging service provided by Google.
Firebase Notification allows developers to send messages and notifications to their app users.
It supports both Android and iOS platforms.
It provides a console to send notifications to specific devices or topics.
It also supports sending notifications based on user behavior and location.
Firebase Notification can be integrated with other Firebase servic...
I applied via LinkedIn and was interviewed in Aug 2021. There were 2 interview rounds.
Java is a high-level, object-oriented programming language used for developing desktop, web, and mobile applications.
Java is platform-independent and can run on any operating system.
It is statically typed, meaning that variables must be declared before use.
Java is used for developing Android applications, enterprise applications, and web applications.
It is known for its security features, such as the Java Security Mana...
Oops concept in java
Object-oriented programming paradigm
Encapsulation, Inheritance, Polymorphism, Abstraction
Classes and Objects
Access Modifiers
Interfaces and Abstract Classes
SDK stands for Software Development Kit. It is a set of tools and resources used for developing applications for a specific platform.
SDK provides developers with APIs, libraries, and documentation to build applications for a specific platform.
Android SDK includes tools like Android Studio, ADB, and Emulator.
SDK helps developers to test, debug, and optimize their applications.
SDK also provides sample code and templates ...
Retrofit and Volley are popular networking libraries for Android development.
Retrofit is a type-safe HTTP client for Android and Java.
Volley is a fast and efficient networking library for Android.
Retrofit uses annotations to define API endpoints and request parameters.
Volley provides easy-to-use APIs for making network requests and handling responses.
Retrofit is best suited for RESTful APIs, while Volley is more versat...
Modules are independent units of code that can be used to build larger software systems.
Modules can be reused in different projects
They can be developed and tested independently
Modules can be combined to form a larger system
Examples include libraries, plugins, and frameworks
Signed APK is a single file that is signed and ready for distribution, while bundle is a publishing format that includes multiple APKs optimized for different device configurations.
Signed APK is generated from a single APK file, while bundle generates multiple APKs.
Signed APK is signed with a private key, while bundle is signed with an upload key.
Bundle includes multiple APKs optimized for different device configuratio...
Top trending discussions
posted on 4 Oct 2023
I appeared for an interview before Jul 2023, where I was asked the following questions.
WebSocket is a protocol for full-duplex communication channels over a single TCP connection, enabling real-time data exchange.
WebSocket allows persistent connections, reducing latency compared to traditional HTTP requests.
It is commonly used in applications like chat apps, online gaming, and live notifications.
WebSocket connections start with an HTTP handshake, then upgrade to a WebSocket connection.
Example: A chat app...
Integrating WebSocket in an Android project allows real-time communication between client and server.
1. Add dependencies: Use libraries like 'OkHttp' or 'Java-WebSocket'. Example: 'implementation 'com.squareup.okhttp3:okhttp:4.9.1''
2. Create a WebSocket client: Use OkHttpClient to create a WebSocket instance. Example: 'OkHttpClient client = new OkHttpClient();'
3. Implement WebSocketListener: Override methods like onOpe...
An Activity is a single screen with a user interface, while a Fragment is a modular section of an Activity.
Activity represents a single screen in an app, e.g., a login screen.
Fragment is a reusable component that can be embedded in an Activity, e.g., a settings panel.
An Activity can host multiple Fragments, allowing for dynamic UI changes.
Fragments have their own lifecycle but are tied to the Activity's lifecycle.
Fragm...
The Android activity lifecycle manages the states of an activity, ensuring proper resource handling and user experience.
onCreate(): Initializes the activity; called when the activity is first created.
onStart(): Makes the activity visible to the user; called after onCreate() or when returning to the activity.
onResume(): Activity is in the foreground and interactive; called after onStart().
onPause(): Activity is partiall...
Activities are standalone components, while Fragments are modular sections of an Activity, allowing for more flexible UI designs.
An Activity represents a single screen with a user interface, e.g., MainActivity.java.
A Fragment is a reusable portion of the UI within an Activity, e.g., MyFragment.java.
Activities manage their own lifecycle, while Fragments have their lifecycle tied to the Activity.
Fragments can be added or...
An activity in Android is a single screen with a user interface where users can interact with the app.
Activities are the building blocks of an Android app.
Each activity is a subclass of the Activity class.
Activities can be started, paused, resumed, and stopped based on user interactions.
Examples: Login screen, Settings screen, Main screen.
Android language is used in developing applications for Android devices.
Android language, such as Java or Kotlin, is used to develop mobile applications for Android devices
Android language is used to create user interfaces, handle data storage, and implement functionality in Android apps
Developers can use Android Studio, an official IDE for Android development, to write and test their code
based on 1 interview experience
Difficulty level
Duration
based on 24 reviews
Rating in categories
Quality Analyst
28
salaries
| ₹3 L/yr - ₹10.5 L/yr |
IOS Developer
22
salaries
| ₹2.6 L/yr - ₹8 L/yr |
Android Developer
13
salaries
| ₹3 L/yr - ₹8 L/yr |
Salesforce Developer
11
salaries
| ₹4 L/yr - ₹9 L/yr |
Senior Android Developer
11
salaries
| ₹4.8 L/yr - ₹12 L/yr |
Zidio Development
Northcorp Software
Accel Frontline
Elentec Power India (EPI) Pvt. Ltd.