In Microsoft Word, the Line Spacing button is in the ____ group on the Home tab.
A. Styles
B. Paragraph
C. Insert
D. Themes
Answer: B
You might also like to view...
Match each term with the correct statement below.
A. converted a computer's digital signal to an analog signal that was amplified by a transceiver and broadcast through an antenna. B. promotes wireless networking for LANs C. spreads a transmission over one or more adjoining frequencies, using greater bandwidth to transmit the signal. D. device that can optionally attach to a cabled network and that services wireless communications between WNICs and the cabled network. E. characteristic in 802.11 standard that helps wireless devices take interference into account. F. defined by 802.1x to allow only authenticated communications. G. means that transmissions hop among 79 frequencies for each packet that is sent. H. communication method used by the IEEE 802.11R standard. I. transmits the signal between three antennas, one of which is on a satellite in space.
(Comparing Strings) Write a program that uses function strncmp to compare two strings input by the user. The program should input the number of characters to compare. The program should state whether the first string is less than, equal to or greater than the second string.
What will be an ideal response?
Match the audio formats with the descriptions
I. Audio Interchange File Format A. A format with small file size and high quality sound II. Audio B. A format supported by Windows computers III. MPEG Audio Layer-3 C. One of the oldest audio formats and is typically used on Unix IV. RealAudio D. An Apple format that is not cross-platform compatible V. Waveform E. Used for streaming audio What will be an ideal response?
What is the output of the following C++ code? int x = 55;int y = 5;switch (x % 7){case 0:case 1: y++;case 2:case 3: y = y + 2;case 4: break;case 5:case 6: y = y - 3;} cout
A. 2 B. 5 C. 8 D. 10