Answer:
what are the options?
reply in comment so i can help:)
Answer:
A total of 128 characters can be represented in the standard ASCII encoding.
Explanation:
The American Standard Code for Information Interchange (ASCII) was created to make an international standard for encoding the Latin letters. In 1963, ASCII was received so data could be deciphered between PCs; speaking to lower and upper letters, numbers, images, and a few orders.
Since ASCII is encoded using ones and zeros, the base 2 number framework, it uses seven bits. Seven bits permits 2 to the power of 7 = 128 potential blends of digits to encode a character.
ASCII consequently ensured that 128 significant characters could be encoded.
Answer:
A. Back up software - Utility software
B. Printer - Device drivers
C. Camera - Firmware
D. Television - Firmware
E. Games console - Firmware
F. Antivirus software - Utility software
G. Disk Cleaner - Utility software
H. Video Card - Device drivers
Explanation:
Computer system components are the physical or hardware and software parts of the device. It is a combination of system software like utility software, device drivers and firmware, application software, and the hardware components and kernel.
Answer:
Replace /* Your solution goes here*/ with the following
<em>void SwapArrayEnds(int sortArray [], int lent){
</em>
<em> int temp = sortArray[0];
</em>
<em> sortArray[0] = sortArray[lent-1];
</em>
<em> sortArray[lent-1] = temp;
</em>
<em>}
</em>
<em />
Explanation:
This defines the function SwapArrayEnds with two parameter (the array and the array length)
<em>void SwapArrayEnds(int sortArray [], int lent){
</em>
This declares an integer variable "temp" and initializes it with the first element of the array
<em> int temp = sortArray[0];
</em>
The next two lines swap the last element with the first
<em> sortArray[0] = sortArray[lent-1];
</em>
<em> sortArray[lent-1] = temp;
</em>
<em>}
</em>
<em />
<em>See attachment for full program</em>