What are Labels and how do you use them?
What will be an ideal response?
Labels are controls that you use to display text to communicate with an application's user. Just like a Button, you can drag a Label onto a Form. By default, the first Label you drag onto a Form is named label1. You can change its Text property to display any string of text; depending on the amount of text you enter, you might need to change the size of the Label by dragging its resizing handles or altering its Size property. If you want to create multiple lines of text on a Label, use the arrow to the right of the Text property to open an editor and type the needed text in separate lines.
You might also like to view...
You can place any large block of text within a _____ section to avoid inadvertently inserting a character that would be misinterpreted by an XML processor (such as the ampersand symbol).
A. baseline B. header C. CDATA D. pcdata
What output is produced by the following code fragment? Explain.
``` System.out.print ("Here we go!"); System.out.println ("12345"); System.out.print ("Test this if you are not sure."); System.out.print ("Another."); System.out.println (); System.out.println ("All done."); ```