Each Activity declared in the AndroidManifest.xml file can specify ________ indicating actions the Activity is capable of handling.

a. intent extractors
b. activity filters
c. intent filters
d. None of the above


c. intent filters

Computer Science & Information Technology

You might also like to view...

The artifacts most typically examined by the ____ type of review include the project plans, schedules, standards, and guidelines.

A. project model B. team dynamic C. project status monitoring D. project standard

Computer Science & Information Technology

If n were negative, the driver can get the correct answer via function p by using the line of code:

``` 1 float p( float x, int n ) 2 { 3 if ( n == 0 ) 4 return 1; 5 else 6 return x p( x, n – 1 ); 7 } ``` A. return 1 / p( x, -n ); B. return 1 / p( x, n ); C. return p( x, -n ); D. return p( x, n );

Computer Science & Information Technology

A numeric integer grade is between 50 and 99. Using integer division or otherwise obtain a int value that is 5, 6, 7, 8, or 9 from the numeric grade. Write code using a switch statement using this number in the selector expression that assigns letter grades based on this 10 point scheme:

if the numeric_grade is not less than 90, the letter_grade is an A, if the numeric_grade is not less than 80, the letter_grade is a B, if the numeric_grade is not less than 70, the letter_grade is C, if the numeric_grade is not less than 60, the letter_grade is D, otherwise the letter_grade is F.

Computer Science & Information Technology

You can continue to edit individual subdocuments in Word after you insert them into a master document

Indicate whether the statement is true or false

Computer Science & Information Technology