An AIR app can be played without a(n) ____________________ .

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


browser

Computer Science & Information Technology

You might also like to view...

When evaluating the expression outf << circuit1; the computer determines whether to use a standard definition of the << or an overloaded definition for a user- defined class by considering

a. the class or type of outf b. the class or type of circuit1 c. the value of circuit1 d. whether or not outf accesses an open file

Computer Science & Information Technology

The following segment of code: cout<<"Hello students"; is an example of a(n):

A. statement. B. input parameter list. C. operator. D. return type.

Computer Science & Information Technology

The effect of the following program segment can best be described as __________.

``` if (x > y) z = x; if (x == y) z = 0; if (x < y) z = y; ``` a. The smaller of x and y is stored in z. b. The larger of x and y is stored in z. c. The larger of x and y is stored in z unless x and y are equal, in which case z is assigned zero. d. The larger of x and y is stored in z unless x and y are not equal, in which case z is assigned zero. e. none of the above

Computer Science & Information Technology

Dynamic storage requests for scalar variables or arrays are made ____.

A. automatically by the compiler B. interactively by the user C. as part of a declaration or assignment statement D. in special functions

Computer Science & Information Technology