Referring to the figure above, which CSS property will increase the spacing between letters when the setting is a positive value?

A. letter-spacing
B. text-align
C. white-space
D. word-spacing


Answer: A

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1: The execute permission (x) on a directory file is the same as for the ordinary file, and means you can execute the directory file. 2: The crypt command is used to encrypt sensitive files. 3: The super user is any user whose password is super. 4: Only a super user can read an encrypted file. 5: The super user has access to the system files only, and not the users' files.

Computer Science & Information Technology

Deadlock can occur ________.

a) only between two or more threads b) only on multiprogrammed systems c) only if resource sharing is allowed d) none of the above

Computer Science & Information Technology

Average Three Numbers) You have just written an application that takes three numbers as input in JTextFields, stores the three numbers in variables and then finds the aver- age of the numbers. The output is displayed in an uneditable JTextField (see Fig. 5.35, which displays the incorrect output). You soon realize, however, that the number displayed in the Average is: JTextField is not the average, but rather a number that does not make sense given the input. Use the debugger to help locate and remove this error.


a) Copying the template to your working directory. Copy the C:Examples Tutorial05ExercisesAverageDebugging directory to your C:SimplyJava directory.
b) Opening the Command Prompt window and changing directories. Open the Command Prompt window by selecting Start > Programs > Accessories > Command Prompt. Change to your working directory by typing cd C:SimplyJavaAver- debugging.
c) Running the application. Run the Average Three Numbers application by typing java Average. Type 5, 7 and 11 in the three input JTextFields. View the output to observe that it is incorrect. The average of these three numbers should be 7 in integer arithmetic. (Recall from Section 5.5 that integer division yields an integer result.)
d) Compiling with the -g option. Compile your application for use in the debugger by typing javac -g Average.java.
e) Starting the debugger. Close the application and start the debugger by typing jdb.
f) Setting breakpoints. Set breakpoints in the calculateJButton

Computer Science & Information Technology

There is no way to recover a mistyped password from an encrypted document

Indicate whether the statement is true or false

Computer Science & Information Technology