Which of the following classes is used by Intent to transfer data between different android components?
Answer(s): B
Bundle is generally used for passing data between various activities of android. It depends on you what type of values you want to pass, but bundle can hold all types of values, and pass to the new activity.
http://stackoverflow.com/questions/4999991/what-is-a-bundle-in-an-android-application
Which of the following is true about implicit intents? (Choose two)
Answer(s): A,C
Implicit intents do not name a specific component, but instead declare a general action to perform, which allows a component from another app to handle it.
http://developer.android.com/guide/components/intents-filters.html
Which of the following classes should be extended to create a custom view?
Answer(s): A
All of the view classes defined in the Android framework extend View. Your custom view can also extend View directly, or you can save time by extending one of the existing view subclasses, such as Button.
http://developer.android.com/training/custom-views/create-view.html
An AsyncTask can be cancelled anytime from any thread.
A task can be cancelled at any time by invoking cancel(boolean).
http://developer.android.com/reference/android/os/AsyncTask.html
Post your Comments and Discuss Android AND-401 exam with other Community members:
To protect our content from bots for real learners like you, we ask you to register for free. Sign in or sign up now to continue with the AND-401 material!