What do you use to denote a string in ActionScript?
What will be an ideal response?
Quotation marks are used to denote strings by wrapping the string with a
mark on each side.
You might also like to view...
What should you consider installing if you want to inspect packets as they leave the network?
A. security workstation B. RIP router C. filtering proxy D. reverse firewall
Which of the following are correct ways to end a loop using a test for end-of-file?
a) ``` while(inStream->next) { cout << next; } ``` b) ``` while(inStream >> next) cout << next; ``` c) ``` inStream.get(next) while(!inStream.eof( )) { cout << next; inStream.get(next); } ``` d) ``` inStream.get(next) while(!eof(inStream)) { cout << next; inStream.get(next); } ``` e) None of the above. You cannot control a loop using a test for end of file.
Cells can be merged or split only vertically
Indicate whether the statement is true or false
An object used to store data, organizing data into columns and rows.
What will be an ideal response?