Assume that you have two apps signed with the same certificate and you want them to share access to each other's data. The manifest file in the first app is illustrated in the following image. It has shartedUserId =''com.sharedID.example'' .
Which of the following choices is the value of the shartedUserId in the second app?

Answer : A
Any Android application can protect itself by declaring permissions that can be accessed by other applications. This can be achieved using the
Answer : B
In the following image of code, what is the purpose of using MODE_PRIVATE in the method getPreferences( )?

Answer : A
Any application which would like to receive a message can receive the broadcast. Which of the following mechanisms can be used to protect broadcasts? (Select two)
Answer : A, B
Which of the following Android levels of permissions are granted automatically without the user's approval?
Answer : A
getExternalFilesDir( ) method is used to get the directory of the external storage.
Answer : A
The Logcat window in Android Studio displays system messages, such as when a garbage collection occurs, and messages that you added to your app with the Log class. It displays messages in real time and keeps a history so that you can view older messages.
Answer : A