Which of the following is the default Marquee tool?
a. Circle Marquee
b. Single Column Marquee
c. Elliptical Marquee
d. Rectangular Marquee
d. Rectangular Marquee
You might also like to view...
In C++, the condition (4 > y > 1):
a. Evaluates correctly and could be replaced by (4 >y &&y> 1). b. Does not evaluate correctly and should be replaced by (4> y &&y>1). c. Evaluates correctly and could not be replaced by (4>y&&y1). d. Does not evaluate correctly and should not be replaced by (4 >y&&y1).
Which of the following functions would not be used to write data randomly to a random access file?
a. tellg b. seekp c. write d. All of the above would be used.
____________________ tests are carried out to examine a pre-defined issue.
Fill in the blank(s) with the appropriate word(s).
Which of the following expressions correctly computes the value of the mathematical expression 5 + 2 6
a) result = 5 + 2^6; b) result = 5 + 2*exponent(6); c) result = 5 + 2*Math.exponent(6); d) result = 5 + Math.pow(2, 6); e) none of the above