Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Your Cheat Sheet For Android Interview - Android Interview Questions

License

NotificationsYou must be signed in to change notification settings

AndroidDeveloperLearning/android-interview-questions

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Android Interview Questions

Android Interview Questions and Answers

Android Interview Questions and Answers - Your Cheat Sheet For Android Interview

Prepared and maintained byAmit Shekhar - Coder | Teacher | Mentor | Open Source | IIT 2010-14

About me

Hi, I am Amit Shekhar, Co-Founder @Outcome School • IIT 2010-14 • I have taught and mentored many developers, and their efforts landed them high-paying tech jobs, helped many tech companies in solving their unique problems, and created many open-source libraries being used by top companies. I am passionate about sharing knowledge through open-source, blogs, and videos.

You can connect with me on:

Join Outcome School and get high paying tech job:Outcome School

Contents - Android Interview Questions

Android Interview Questions and Answers Playlist

Kotlin Coroutines

Topics you should know inKotlin Coroutines for Android Interview:

  • coroutines
  • suspend
  • launch, async-await, withContext
  • dispatchers
  • scope, context, job
  • lifecycleScope, viewModelScope, GlobalScope
  • suspendCoroutine, suspendCancellableCoroutine
  • coroutineScope, supervisorScope

Learn the above-mentioned from the following links:

Kotlin Flow API

Topics you should know inKotlin Flow API for Android Interview:

  • Flow Builder, Operator, Collector
  • flowOn, dispatchers
  • Operators such as filter, map, zip, flatMapConcat, retry, debounce, distinctUntilChanged, flatMapLatest
  • Terminal operators
  • Cold Flow vs Hot Flow
  • StateFlow, SharedFlow, callbackFlow, channelFlow

Learn the above-mentioned from the following links:

Kotlin

Android Interview Questions and Answers:

Android

Android Interview Questions and Answers:

Base

  • Why does an Android App lag? -Learn from here

  • What isContext? How is it used? -Context In Android Application

  • Tell all the Android application components. -Learn from here

  • What is the project structure of an Android Application? -Learn from here

  • What isAndroidManifest.xml? -Learn from here

  • What is theApplication class?

    • The Application class in Android is the base class within an Android app that contains all other components such as activities and services. The Application class, or any subclass of the Application class, is instantiated before any other class when the process for your application/package is created.

Activity and Fragment

  • Why is it recommended to use only the default constructor to create aFragment? - Learn fromvideo andblog

  • What isActivity and its lifecycle? -Learn from here

  • What is the difference between onCreate() and onStart() -Learn from here

  • When only onDestroy is called for an activity without onPause() and onStop()? -Learn from here

  • Why do we need to call setContentView() in onCreate() of Activity class? -Learn from here

  • What is onSaveInstanceState() and onRestoreInstanceState() in activity?

    • onSaveInstanceState() - This method is used to store data before pausing the activity.
    • onRestoreInstanceState() - This method is used to recover the saved state of an activity when the activity is recreated after destruction. So, the onRestoreInstanceState() receives the bundle that contains the instance state information.
  • What isFragment and its lifecycle? -Learn from here

  • What are "launchMode"? -Learn from here andsingleTask launchMode in Android

  • What is the difference between aFragment and anActivity? Explain the relationship between the two. -Learn from here

  • When should you use a Fragment rather than an Activity?

    • When you have some UI components to be used across various activities
    • When multiple views can be displayed side by side just like ViewPager
  • What is the difference between FragmentPagerAdapter vs FragmentStatePagerAdapter?

    • FragmentPagerAdapter: Each fragment visited by the user will be stored in the memory but the view will be destroyed. When the page is revisited, then the view will be created not the instance of the fragment.
    • FragmentStatePagerAdapter: Here, the fragment instance will be destroyed when it is not visible to the user, except the saved state of the fragment.
  • What is the difference between adding/replacing fragment in backstack? -Learn from here

  • How would you communicate between two Fragments?

  • What is retainedFragment?

    • By default, Fragments are destroyed and recreated along with their parent Activities when a configuration change occurs. Calling setRetainInstance(true) allows us to bypass this destroy-and-recreate cycle, signaling the system to retain the current instance of the fragment when the activity is recreated.
  • What is the purpose ofaddToBackStack() while commiting fragment transaction?

    • By calling addToBackStack(), the replace transaction is saved to the back stack so the user can reverse the transaction and bring back the previous fragment by pressing the Back button. For moreLearn from here

Views and ViewGroups

  • What isView in Android?

  • Difference betweenView.GONE andView.INVISIBLE? -Learn from here

  • Can you a create custom view? How?

  • What are ViewGroups and how they are different from the Views?

    • View: View objects are the basic building blocks of User Interface(UI) elements in Android. View is a simple rectangle box which responds to the user’s actions. Examples are EditText, Button, CheckBox etc. View refers to the android.view.View class, which is the base class of all UI classes.
    • ViewGroup: ViewGroup is the invisible container. It holds View and ViewGroup. For example, LinearLayout is the ViewGroup that contains Button(View), and other Layouts also. ViewGroup is the base class for Layouts.
  • What is a Canvas?

  • What is aSurfaceView? -Learn from here

  • Relative Layout vs Linear Layout.

  • Tell about Constraint Layout

  • Do you know what is the view tree? How can you optimize its depth? -Learn from here

Displaying Lists of Content

  • What is the difference betweenListView andRecyclerView? -Learn from here

  • How does RecyclerView work internally?

  • RecyclerView Optimization - Scrolling Performance Improvement -Learn from here

  • Optimizing Nested RecyclerView -Learn from here

  • What isSnapHelper? - Learn from here:SnapHelper

Dialogs and Toasts

Intents and Broadcasting

  • What isIntent? -Learn from here

  • What is an ImplicitIntent? -Learn from here

  • What is an ExplicitIntent? -Learn from here

  • What is aBroadcastReceiver? -Learn from here

  • What is a StickyIntent?

    • Sticky Intents allows communication between a function and a service. sendStickyBroadcast() performs a sendBroadcast(Intent) known as sticky, i.e. the Intent you are sending stays around after the broadcast is complete, so that others can quickly retrieve that data through the return value of registerReceiver(BroadcastReceiver, IntentFilter). For example, if you take an intent for ACTION_BATTERY_CHANGED to get battery change events: When you call registerReceiver() for that action — even with a null BroadcastReceiver — you get the Intent that was last Broadcast for that action. Hence, you can use this to find the state of the battery without necessarily registering for all future state changes in the battery.
  • Describe how broadcasts and intents work to be able to pass messages around your app? -Learn from here

  • What is aPendingIntent?

    • If you want someone to perform any Intent operation at future point of time on behalf of you, then we will use Pending Intent.
  • What are the different types of Broadcasts? -Learn from here

Services

Inter-process Communication

Long-running Operations

  • How to run parallel tasks and get a callback when all are complete? -Long-running tasks in parallel with Kotlin Flow

  • What is ANR? How can the ANR be prevented? -Learn from here

  • What is anAsyncTask(Deprecated in API level 30) ?

  • What are the problems in AsyncTask?

  • Daemon Threads vs. User Threads -Learn from here

  • ExplainLooper,Handler, andHandlerThread.

  • Android Memory Leak and Garbage Collection

Working With Multimedia Content

Data Saving

  • Jetpack DataStore Preferences -Learn from here

  • How to persist data in an Android app?

  • What is ORM? How does it work?

  • How would you preserve theActivity state during a screen rotation? -Learn from here

  • What are different ways to store data in your Android app?

  • Explain Scoped Storage in Android.

  • How to encrypt data in Android?

  • What is commit() and apply() in SharedPreferences?

    • commit() returns a boolean value of success or failure immediately by writing data synchronously.
    • apply() is asynchronous and it won't return any boolean response. If you have an apply() outstanding and you are performing commit(), then the commit() will be blocked until the apply() is not completed.

Look and Feel

  • What is aSpannable?

  • What is aSpannableString?

    • A SpannableString has immutable text, but its span information is mutable. Use a SpannableString when your text doesn't need to be changed but the styling does. Spans are ranges over the text that include styling information like color, heighliting, italics, links, etc
  • What are the best practices for using text in Android?

  • How to implement Dark mode in any application?

Memory Optimizations

  • What is theonTrimMemory() method? -Learn from here

  • How to identify and fix OutOfMemory issues?

  • How do you find memory leaks in Android applications?

Battery Life Optimizations

Supporting Different Screen Sizes

Permissions

  • What are the different protection levels in permission?

Native Programming

Android System Internal

Android Jetpack

  • What is Android Jetpack and why to use this?

  • What is a ViewModel and how is it useful? Learn:What is a ViewModel and how is it useful?

  • What are Android Architecture Components?

  • What is LiveData in Android?

  • How LiveData is different from ObservableField?

  • What is the difference between setValue and postValue in LiveData?

  • How to share ViewModel between Fragments in Android?

  • Explain WorkManager and its use cases.

  • How does ViewModel work internally?

Others

  • Why Bundle class is used for data passing and why cannot we use simple Map data structure? -Learn from here

  • How do you troubleshoot a crashing application? -Learn from here

  • Explain the Android push notification system? Learn from here:How does the Android push notification system work?

  • What is the difference between Serializable and Parcelable? Which is the best approach in Android?

    • Use the Parcelable class instead of Serializable when passing data in Intents or Bundles. The serialization of an object that implements the Parcelable interface is much faster than using Java’s default serialization. A class that implements the Serializable interface is marked as serializable, and Java serializes it using reflection (which makes it slow). When using the Parcelable interface, the whole object doesn’t get serialized automatically. Rather, you can selectively add data from the object to a Parcel using which the object is later deserialized. Similarly, you can consider the Parcelable in Kotlin.
  • What is AAPT? -Learn from here

  • FlatBuffers vs JSON.

  • HashMap,ArrayMap andSparseArray -Learn from here

  • What are Annotations? -Learn from here

  • How to create custom Annotation? -Learn from here

  • What is the support library? Why was it introduced?

  • What is Android Data Binding?

Android Libraries

Android Interview Questions and Answers:

Android Architecture

Android Interview Questions and Answers:

  • Describe the architecture of your last app.

  • Describe MVVM. -MVVM Architecture

  • MVC vs MVP vs MVVM architecture.

  • Clean Architecture

Android System Design

Android Interview Questions and Answers:

Android Unit Testing

Android Interview Questions and Answers:

Android Tools And Technologies

Android Interview Questions and Answers:

  • What is ADB? -Learn from here

  • What is the StrictMode? - Learn from here:StrictMode

  • What is Lint? What is it used for?

  • Git.

  • Firebase. -Learn from here

  • How to measure method execution time in Android?

  • Can you access your database of SQLite Database for debugging? -Learn from here

  • What are things that we need to take care while using Proguard?

  • How to use Android Studio Memory Profiler?

  • What is Gradle?

  • APK Size Reduction.

  • How can you speed up the Gradle build?

  • About gradle build system.

  • About multiple apk for android application.

  • What is ProGuard used for? -Learn from here

  • What is obfuscation? What is it used for? What about minification?

  • How to change some parameters in an app without app update?

Java

Android Interview Questions and Answers:

OOP

  • Explain OOP Concepts.

  • Differences between abstract classes and interfaces?

    • An abstract class, is a class that contains both concrete and abstract methods(methods without implementations). An abstract method must be implemented by the abstract classsub-classes. Abstract classes cannot be instantiated and need to be extended to be used.
    • An interface is like a blueprint/contract of a class (or it may be thought of as a class with methods, but without their implementation). It contains empty methods thatrepresent, what all of its subclasses should have in common. The subclasses provide theimplementation for each of these methods. Interfaces are implemented.
  • Difference between method overloading and overriding.

  • What are the access modifiers you know? What does each one do?

    • There are four access modifiers in Java language (from strictest to the most lenient):
      1. privatevariables,methods,constructors orinner classes are only visible to its' containing class and its' methods. This modifier is most commonly used, for example, to allow variable access only through getters and setters or to hide underlying implementation of classes that should not be used by user and therefore maintain encapsulation. Singleton constructor is also markedprivate to avoid unwanted instantiation from outside.
      2. Default (no keyword is used) this modifier can be applied toclasses,variables,constructors andmethods and allows access from classes and methods inside the same package.
      3. protected can be used onvariables,methods andconstructors therefore allowing access only to subclasses and classes that are inside the same package as protected members' class.
      4. public modifier is widely-used onclasses,variables,constructors andmethods to grant access from any class and method anywhere. It should not be used everywhere as it implies that data marked withpublic is not sensitive and can not be used to harm the program.
  • Can an Interface implement another Interface?

    • Yes, an interface can implement another interface (and more than one), but it needs to useextends, rather thanimplements keyword. And while you can not remove methods from parent interface, you can add new ones freely to your sub-interface.
  • What is Polymorphism? What about Inheritance?

Collections and Generics

Objects and Primitives

  • How isString class implemented? Why was it made immutable?

    • There is no primitive variant ofString class in Java language - all strings are just wrappers around underlying array of characters, which is declaredfinal. This means that, once aString object is instantiated, it cannot be changed through normal tools of the language (Reflection still can mess things up horribly, because in Java no object is truly immutable). This is whyString variables in classes are the first candidates to be used, when you want to overridehashCode() andequals() of your class - you can be sure, that all their required contracts will be satisfied.

      Note: The String class is immutable, so that once it is created a String object cannot be changed. The String class has a number of methods, some of which will be discussed below, that appear to modify strings. Since strings are immutable, what these methods really do is create and return a new string that contains the result of the operation. (Official Java Documentation)

      This class is also unique in a sense, that, when you create an instance like this:

      StringhelloWorld ="Hello, World!";

      "Hello, World!" is called aliteral and compiler creates aString object with its' value. So

      Stringcapital ="Hello, World!".toUpperCase();

      is a valid statement, that, firstly, will create an object with literal value "Hello, World!" and then will create and return another object with value "HELLO, WORLD!"

    • String was made immutable to prevent malicious manipulation of data, when, for example, user login or other sensitive data is being send to a server.

  • What does it means to say that aString is immutable?

    • It means that once created,String object'schar[] (its' containing value) is declaredfinal and, therefore, it can not be changed during runtime.
  • Can you list 8 primitive types in java?

    • byte
    • short
    • int
    • long
    • float
    • double
    • char
    • boolean
  • What is the difference between an Integer and int?

    • int is a primitive data type (withboolean,byte,char,short,long,float anddouble), whileInteger (withBoolean,Byte,Character,Short,Long,Float andDouble) is awrapper class that encapsulates primitive data type, while providing useful methods to perform different tasks with it.
  • Do objects get passed by reference or value in Java? Elaborate on that.

Java Memory Model and Garbage Collector

  • What is garbage collector? How does it work?
    • All objects are allocated on the heap area managed by the JVM.As long as an object is being referenced, the JVM considers it alive.Once an object is no longer referenced and therefore is not reachable by the application code,the garbage collector removes it and reclaims the unused memory.

Concurrency

  • What does the keywordsynchronized mean?

  • What is aThreadPoolExecutor? -ThreadPoolExecutor in Android

  • What isvolatile modifier?

  • Object Level Lock vs Class Level Lock in Java -Learn from here

  • The classes in the atomic package expose a common set of methods:get,set,,lazyset,compareAndSet, andweakCompareAndSet. Please describe them.

Exceptions

  • How does thetry{},catch{},finally works?

  • What is the difference between aChecked Exception and anUn-Checked Exception?

Others

  • Shallow vs. Deep Copy in Java -Learn from here

  • What is serialization? How do you implement it?

  • What istransient modifier?

  • What are anonymous classes?

  • What is the difference between using== and.equals on an object?

  • What is thehashCode() andequals() used for?

  • When would you make an object valuefinal?

  • What are thesefinal,finally andfinalize keywords?

  • What is the difference between "throw" and "throws" keyword in Java?

    • throws is just used to indicated which exception is to be thrown. But thethrow keyword is used to throw some exception from any static block or any method.
  • What does thestatic word mean in Java?

    • In case ofstatic variable it means that this variable (its' value or the object it references) spans across all instances of enclosing class (changing it in one instance affects all others), while in case ofstatic methods it means that these methods can be invoked without an instance of their enclosing class. It is useful, for example, when you create util classes that need not be instantiated every time you want to use them.
  • Can astatic method be overridden in Java?

    • While child class can override a static method with another static method with the same signature (return type can be down-casted), it is not truly overridden - it becomes "hidden", but both methods can still be accessed under right circumstances (see question about overloading/overriding above).
  • When is astatic block run?

    • Code inside static block is executed only once: the first time you make an object of that class or the first time you access a static member of that class (even if you never make an object of that class).
  • Explain Reflection in Java -Learn from here

  • What is Dependency Injection?

  • Difference betweenStringBuffer andStringBuilder?

  • What is the difference between fail-fast and fail-safe iterators in Java?

  • Monitor and Synchronization

Jetpack Compose

Topics you should know inJetpack Compose for Android Interview:

  • Compose
  • State: remember, rememberSaveable, MutableState
  • Recomposition
  • State hoisting
  • Side-effects
  • Modifier
  • Theme
  • Layout, List
  • Gestures, Animation
  • CompositionLocal

Learn the above-mentioned from the following links:

Other Topics

Android Interview Questions and Answers:

  • Describe SQLite.

  • Have you used Room-Database?

  • Can we identify the users who have uninstalled our application?

  • Android Development Best Practices. - Learn from here:Android Development Best Practices

  • React Native vs Flutter - Learn from here:React Native vs Flutter

  • What are the metrics that you should measure continuously while android application development? - Learn from here:Android App Performance Metrics

  • How to avoid API keys from check-in into VCS?

  • How does the Kotlin Multiplatform work? -Blog

  • How to use Memory Heap Dumps data?

  • How to implement Dark Theme in your app?

  • How to secure the API keys used in an Android App?

  • Tell something about memory usage in Android.

  • Explain Annotation processing.

  • How does the Android Push Notification system work? Learn from here:How does the Android Push Notification system work?

  • How to show local Notification at an exact time?

Data Structures and Algorithms

  • Android Developer should know these Data Structures for Next Interview -Check here

High-quality videos to prepare for Android Interview -Amit Shekhar YouTube Channel

High-quality blogs to prepare for Android Interview -Check here - Outcome School Blog

Found this project useful ❤️

  • Support by clicking the ⭐ button on the upper right of this page. ✌️

You can connect with me on:

License

   Copyright (C) 2024 Amit Shekhar   Licensed under the Apache License, Version 2.0 (the "License");   you may not use this file except in compliance with the License.   You may obtain a copy of the License at       http://www.apache.org/licenses/LICENSE-2.0   Unless required by applicable law or agreed to in writing, software   distributed under the License is distributed on an "AS IS" BASIS,   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   See the License for the specific language governing permissions and   limitations under the License.

About

Your Cheat Sheet For Android Interview - Android Interview Questions

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java55.0%
  • Kotlin45.0%

[8]ページ先頭

©2009-2025 Movatter.jp