IS4 PM_2025 – Telegram
IS4 PM_2025
736 subscribers
724 photos
47 videos
1.15K files
308 links
Download Telegram
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
Method onDraw() of class android.view.View has the following signature:
Anonymous Quiz
14%
public boolean onDraw(Canvas)
11%
public void onDraw(Color)
58%
public void onDraw(Canvas)
17%
public Canvas onDraw()
To create a blank Wear activity in Android Studio, the project should have a minimum SDK
version >= 20.
Anonymous Quiz
67%
True
33%
Flase
Which of the following lines of code sets the entire Activity window as a WebView?
Anonymous Quiz
18%
WebView webview = new WebView(this); webview.setAsWindow;
9%
setContentView(R.layout.webview);
59%
WebView webview = new WebView(this); setContentView(webview);
👍1