Exam 1: Android Application Development

arrow
  • Select Tags
search iconSearch Question
flashcardsStudy Flashcards
  • Select Tags

Which of the following permission is necessary for capturing geo-coordinates?

(Multiple Choice)
4.9/5
(33)

Consider the following code: @Override public void onCreateContextMenu(ContextMenu menu, View v,  ContextMenuInfo menuInfo) {     super.onCreateContextMenu(menu, v, menuInfo);     menu.setHeaderTitle("Menu");     AdapterContextMenuInfo cmi = (AdapterContextMenuInfo) menuInfo;     menu.add(1, cmi.position, 0, "Open file");     menu.add(2, cmi.position, 0, "Save file"); } Which of the following best explains the code above?

(Multiple Choice)
4.9/5
(50)

Which of the following Activity life-cycle methods is invoked first when another activity is shown?

(Multiple Choice)
4.7/5
(33)

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

(Multiple Choice)
4.7/5
(37)

Which of the following Activity life-cycle methods is invoked when another activity is shown?

(Multiple Choice)
4.8/5
(33)

Which of the following you cannot achieve by creating your own View sub-classes?

(Multiple Choice)
4.9/5
(25)

Which of the following statements are correct about the Action Bar? (Choose two.)

(Multiple Choice)
4.8/5
(42)

You can create a custom view by extending class:

(Multiple Choice)
4.8/5
(33)

Which of these is the correct explanation regarding the following methods? (1)android.content.Context.sendBroadcast (2)android.content.Context.startActivity

(Multiple Choice)
4.8/5
(40)

What code would you need to use for a reverse transition when going from the second activity, back to the first?

(Multiple Choice)
4.7/5
(31)

In order to perform a shared element transition, we need to :

(Multiple Choice)
4.7/5
(40)

What are the main two types of threads in Android?

(Multiple Choice)
4.8/5
(32)

Which of the following is NOT the primary hardware involved in performing simple tasks like putting pixels on screen?

(Multiple Choice)
4.8/5
(40)

Which of these is the correct function of Traceview?

(Multiple Choice)
4.8/5
(39)

Which file specifies the minimum required Android SDK version your application supports?

(Multiple Choice)
4.9/5
(37)

Which of the following tools dumps system log messages including stack traces when the device or emulator throws an error?

(Multiple Choice)
4.8/5
(35)

Which of the following tags is not added in <intent-filter> for enabling deep linking in your application?

(Multiple Choice)
4.8/5
(37)

Which of the following permissions is not required to integrate Google Maps into your Android application?

(Multiple Choice)
4.7/5
(33)

Consider the following AndroidManifest.xml file: <?xml version="1.0" encoding="utf-8"?> <manifest Xmlns:android="http://schemas.android.com/apk/res/android"    Package="com.androidatc.test"    Android:versionCode="1"    Android:versionName="1.0" > <uses-sdk        Android:minSdkVersion="8"        Android:targetSdkVersion="17" /> <application        Android:icon="@drawable/ic_launcher"        Android:label="@string/app_name"        Android:theme="@android:style/Theme.Light.NoTitleBar" > <activity          Android:screenOrientation="portrait"          Android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> <uses-permission android:name="android.permission.INTERNET"></uses-permission> <activity  android:name=".Compute" android:screenOrientation="portrait" /> </manifest> What is the syntax error of this file?

(Multiple Choice)
4.9/5
(31)

Which of the following options are true for ConstraintLayout?

(Multiple Choice)
5.0/5
(41)
Showing 41 - 60 of 224
close modal

Filters

  • Essay(0)
  • Multiple Choice(0)
  • Short Answer(0)
  • True False(0)
  • Matching(0)