What types of comments can you create in ActionScript?
What will be an ideal response?
You can create two types of comments in ActionScript. A single-line com
ment and a multi-line comment.
You might also like to view...
What is the freebie you get automatically with an array?
A. Nothing is free in C++. B. A *(pointer) to the first element. C. A *(reference) to the first element. D. A *prototype ( ).
Explain carefully how component-based middleware in general and EJB in particular can overcome the key limitations of distributed object middleware. Provide examples to illustrate your answer.
What will be an ideal response?
If you use the javac –Xlint:unchecked command to compile a program that contains raw type, what would the compiler do?
a. report compile error b. report warning and generate a class file c. report warning without generating a class file d. no error and generate a class file
What will be the value of x after the following code is executed?
``` int x, y = 4, z = 6; x = (y++) * (++z); ``` a. 24 b. 28 c. 30 d. 35