Posts

Showing posts from January, 2023

Android Interview Questions - Entry Level, Freshers

Image
Entry Level  Here are the important questions which are definitely asked during an Android App developer entry level interview.  Major components of the Android App:  Activities Services  Content Providers  Intents  Broadcast Receivers  Widgets  Notifications  Views  Fragments  Resources  App APK files  Layout XML Files Fragment in Android:  The fragment in Android is as follows:  Fragments can be added or removed in an activity while the activity is running. A fragment has its own layout and behavior with its own life cycle callbacks. Multiple fragments can be combined in a single activity to build a multi-pane UI. The fragment life cycle is closely related to the life cycle of its host activity which means when the activity is paused, all the fragments available in the activity will also be paused.              Storage options available in  Android:   Some storage options available in Android are listed below: Internal Storage External Storage SQLite database Shared Preferences Build