The Font dialog box allows you to select different Fonts, their style, their size, and some other special effects. How do you bring up this Font dialog box?
(A) In the Properties window, click the ellipsis (…) on the right side of the settings box for
the Font property.
(B) Double-click the control, and select Font Property.
(C) Right-click the control, and select Font Property.
(D) None of the above
(A) In the Properties window, click the ellipsis (…) on the right side of the settings box for
the Font property.
You might also like to view...
_______ is a process that transforms an object into a stream of bytes that can be saved to and restored from a file.
a) Information hiding b) Object serialization c) Encapsulation d) Inheritance
Show the value of x after each of the following statements is performed:
``` a) x = fabs(7.5); b) x = floor(7.5); c) x = fabs(0.0); d) x = ceil(0.0); e) x = fabs(-6.4); f) x = ceil(-6.4); g) x = ceil(-fabs(-8 + floor(-5.5))); ```