Which of the following is not a ContentProvider provided natively by Android?

Which of the following is not a ContentProvider provided natively by Android?A . The contacts listB . The telephone logC . The bookmarksD . The application listView AnswerAnswer: D Explanation: Incorrect: A: You usually need the MIME type when you are working with a provider that contains complex data structures...

September 30, 2019 No Comments READ MORE +

When creating a file using android.content.Context.openFileOutput("test.txt", 0), where is the file created?

When creating a file using android.content.Context.openFileOutput("test.txt", 0), where is the file created?A . /data/app/<package name>/filesB . /data/data/<package name>/filesC . /system/app/<package name>/filesD . /system/data/<package name>/filesView AnswerAnswer: B Explanation: The file is created in the /data/data/PACKAGE_NAME/files folder. References: http://www.programcreek.com/java-api-examples/index.php? class=android.content.Context&method=openFileOutput

September 29, 2019 No Comments READ MORE +

How is the MRU for a multilink bundle determined?

How is the MRU for a multilink bundle determined?A . It is manually configured on all physical interfaces of a multilink bundleB . It is negotiated by NCPC . It is manually configured on the multilink bundleD . It is negotiated by IPCPE . It is negotiated by LCPView AnswerAnswer:...

September 29, 2019 No Comments READ MORE +

Which of the following tools creates certificates for signing Android applications?

Which of the following tools creates certificates for signing Android applications?A . adbB . logcatC . keytoolD . certgenView AnswerAnswer: C Explanation: You do not need Android Studio to sign your app. You can sign your app from the command line using standard tools from the Android SDK and the...

September 29, 2019 No Comments READ MORE +

Which of these is the correct explanation regarding the following methods?

Which of these is the correct explanation regarding the following methods? (1)android.content.Context.sendBroadcast (2)android.content.Context.startActivityA . Both methods are defined by overloading.B . Both methods throw an exception.C . Both methods are asynchronous.D . Both methods are able to broadcast an Intent.View AnswerAnswer: D

September 29, 2019 No Comments READ MORE +

Which Excel option should be deployed for each team?

HOTSPOT You are a Dynamics 365 Customer Engagement administrator. Each team will use Microsoft Excel in different ways. You need to select an Excel option to meet the needs of each team. Which Excel option should be deployed for each team? To answer, select the appropriate configuration in the answer...

September 28, 2019 No Comments READ MORE +

Which of the following is not an Activity lifecycle call-back method?

Which of the following is not an Activity lifecycle call-back method?A . onStartB . onCreateC . onPauseD . onBackPressedView AnswerAnswer: D Explanation: References: Android ATC Self Study Guide http://www.androidatc.com/pages-19/Self-Study

September 27, 2019 No Comments READ MORE +

Which of the following are the page-level privileges that can be granted to a user/group through an Access Role?

Which of the following are the page-level privileges that can be granted to a user/group through an Access Role?A . Create, Access, Modify, DeleteB . Build, Read, Update, DeleteC . Create, Read, Update, DeleteD . Build, Access, Modify, DeleteView AnswerAnswer: C

September 26, 2019 No Comments READ MORE +

What does the Android project folder “res/” contain?

What does the Android project folder “res/” contain?A . Java Activity classesB . Resource filesC . Java source codeD . LibrariesView AnswerAnswer: B Explanation: References: Android ATC Self Study Guide http://www.androidatc.com/pages-19/Self-Study

September 25, 2019 No Comments READ MORE +

What is not true about the AndroidManifest.xml file?

What is not true about the AndroidManifest.xml file?A . It declares the views used within the applicationB . It declares user permissions the application requiresC . It declares application componentsD . It declares hardware and software features used within the applicationView AnswerAnswer: A Explanation: Among other things, the manifest does...

September 25, 2019 No Comments READ MORE +