You can set a movie's dimensions so that it ____.

A. matches the Stage size
B. is sized based on a percentage of the monitor's size
C. is a fixed pixel width in the monitor
D. any of the above


Answer: D

Computer Science & Information Technology

You might also like to view...

The main difference between a pure virtual function and a virtual function is:

a. The return type. b. The member access specifier. c. That a pure virtual function cannot have an implementation. d. The location in the class.

Computer Science & Information Technology

Given the following code, what will be the value of finalAmount when it is displayed?

``` public class Order { private int orderNum; private double orderAmount; private double orderDiscount; public Order(int orderNumber, double orderAmt, double orderDisc) { orderNum = orderNumber; orderAmount = orderAmt; orderDiscount = orderDisc; } public int getOrderAmount() { return orderAmount; } public int getOrderDisc() { return orderDisc; } } public class CustomerOrder { public static void main(String[] args) { int ordNum = 1234; double ordAmount = 580.00; double discountPer = .1; Order order; double finalAmount = order.getOrderAmount() — order.getOrderAmount() * order.getOrderDisc(); System.out.printf("Final order amount = $%,.2f\n", finalAmount); } } ``` a. 528.00 b. 580.00 c. There is no value because the constructor has an error. d. There is no value because the object, order, has not been created.

Computer Science & Information Technology

Analyze the following code:

``` #include using namespace std; void xFunction(int x[], int length) { cout << " " << x[length - 1]; xFunction(x, length - 1); } int main() { int x[] = {1, 2, 3, 4, 5}; xFunction(x, 5); } ``` A. The program displays 5 4 3 2 1. B. The program displays 1 2 3 4 5 and then raises an ArrayIndexOutOfBoundsException. C. The program displays 1 2 3 4 6. D. The program displays 5 4 3 2 1 and then raises an ArrayIndexOutOfBoundsException.

Computer Science & Information Technology

A force stop is needed sometimes to

A) Turn the mobile device totally off B) Close all windows that are open on the mobile device C) Stop the app because the mobile device is slow to respond D) Delete unused or outdated data off the mobile device

Computer Science & Information Technology