What is a method of the FileStream class that can read data into Flash from an external file?
What will be an ideal response?
The open() method of the FileStream class can read data into Flash from an
external file.
You might also like to view...
A(n) ________ is an array name followed by an index enclosed in parentheses.
a) container b) subscript c) indexed array name d) position e) None of the above.
Can a static method access instance data in a class?
What will be an ideal response?
Which is the correct syntax for placing the string “boat” into an ArrayList name recVehicles in position 3 for the first time?
a. recVehicles.set(3, “boat”); b. recVehicles.set(“boat”, 3); c. recVehicles.add(3, “boat”); d. recVehicles.add(“boat”, 3);
What is significant about big-theta notation (?)?
a. Asymptotically tighter bound than O(n) b. Compute Big-O of f(n) c. Determine the Big-O error factor d. Find the optimal case of an algorithm