Which one of the following terms best describes what allows the developer to pick a device for creating an emulator and determines which platform(s) the app will support?

a. API level
b. Google APIs
c. Build tools
d. AVD profile


d. The AVD profile describes what type of device you want the emulator to simulate, including which Android platform to support. You can specify different screen sizes and orientations, and you can specify whether the emulator has an SD card and, if it does, what capacity the card has.

Computer Science & Information Technology

You might also like to view...

Which of the following loops cannot be nested in a Forloop?

a. While b. For c. Repeat ... Until d. Do ... While e. all of the above can be nested in aForloop

Computer Science & Information Technology

What will be displayed by the following program when the button is clicked?

``` Private Sub btnDisplay_Click(...) Handles btnDisplay.Click Dim s As Double s = 0 For k As Integer = 1 To 5 If k / 2 = Int(k / 2) Then s += k End If Next txtBox.Text = CStr(s) End Sub ``` (A) 12 (B) 9 (C) 15 (D) 6

Computer Science & Information Technology

Until a variable is initialized, it holds an unknown value referred to as ____________________.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

When a password is stored within your SQL Server database, you should apply strong ____ techniques.

A. translation B. encryption C. publishing D. patching

Computer Science & Information Technology