IS4 PM_2025 – Telegram
IS4 PM_2025
736 subscribers
724 photos
47 videos
1.15K files
308 links
Download Telegram
What is the name of the class used by Intent to store additional information?
Anonymous Quiz
5%
Parcelable
82%
Bundle
3%
Extra
11%
DataStore
Which of the following is not included in the Android application framework?
Anonymous Quiz
8%
NotificationManager
5%
WindowManager
15%
PackageManager
72%
DialerManager
.Which of these files contains text values that you can use in your application?
Anonymous Quiz
82%
res/values/strings.xml
0%
res/Text.xml
5%
res/layout/Main.xml
13%
AndroidManifest.xml
What does the Android project folder “res/” contain?
Anonymous Quiz
8%
Java Activity classes
0%
Libraries
26%
Java source code
66%
Resource files
👍1
What does this code do?

Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); intent.setData(android.net.Uri.parse("http://www.androidatc.com")); startActivity(intent);
Anonymous Quiz
22%
Starts a sub-activity.
0%
Starts a service.
6%
Sends results to another activity.
72%
Starts an activity using an implicit intent.
.Which of the following packages does not have classes needed for Android network
connections?
Anonymous Quiz
11%
startService(Intent intent)
11%
org.apache.http
76%
android.location
.Which of the following tools creates certificates for signing Android applications?
Anonymous Quiz
22%
logcat
68%
keytool
8%
certgen
3%
adb
Which Android permission you should add to allow your application to read the device’s address
book?
Anonymous Quiz
3%
READ_PHONE_STATE
14%
READ_PHONE_CONTACTS
59%
READ_CONTACTS
24%
READ_ADDRESS_DATA
Which of the following methods is called in an Activity when another activity gets into the
foreground?
Anonymous Quiz
11%
onStop()
83%
onPause()
3%
onDestroy()
3%
onExit()
If your application is throwing exception android.content.ActivityNotFoundException, which
of the following could resolve the problem?
Anonymous Quiz
6%
Create a new broadcast receiver
56%
Add the activity to AndroidManifest.xml]
11%
Create a new sub-class of the View class
28%
Create the activity layout
Consider the following code:
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW); intent.setData(android.net.Uri.parse("http://www.androidatc.com")); startActivity(intent); Which of the following is correct about the code above?
Anonymous Quiz
6%
It sends a result to a new Activity in a Bundle.
6%
It will not compile without adding the INTERNET permission the Manifest file.
20%
It starts any activity in the application that has a WebView in its layout.
69%
When it is executed, the system starts an intent resolution process to start the right Activity.
Which of the following Android View sub-classes uses the WebKit rendering engine to
display web pages?
Anonymous Quiz
5%
PageView
3%
MapView
3%
HttpClient
89%
WebView
What is the location of the APK generated by the build system of Android Studio?
Anonymous Quiz
29%
app/build/apk
5%
app/apks
63%
app/build/outputs/apk
3%
app/intermediates/outputs/apk