Name three ActionScript classes that are available for Adobe AIR only.
What will be an ideal response?
Many ActionScript classes are available for Adobe AIR only. These could
include the File, FileStream, NativeDrag, and NativeDragEvent classes.
You might also like to view...
____ usually require users to register by supplying a bit of personal information, choosing a user ID, and selecting a password.
A. Web apps B. Copyright terms C. Mobile apps D. Terms of use
Which of the following is not true regarding expressions?
A) Elements that can be used in an expression include identifiers, operators, logical operators, functions, and constants. B) An expression consists of several possible elements that you can use. C) You can use expressions in a number of ways such as performing calculations or retrieving values of a control. D) the term "expression" is synonymous with "equation."
Consider the following definition of a recursive method.public static int recFunc(int num){ if (num >= 10) return 10; else return num * recFunc(num + 1);}What is the output of the following statement?System.out.println(recFunc(10));
A. 10 B. 110 C. This statement results in infinite recursion. D. None of these
Before you publish a site to a remote server, it is extremely important that you test it to make sure the content is accurate and up to date and that everything is functioning properly.
Answer the following statement true (T) or false (F)