Answer:
The capacity of the drive in Gigabytes equals 1.0737 Gbs
Explanation:
Given there are 1024 tracks per surface.
Number of surfaces = 8
Hence number of tracks in 8 surfaces equals
tracks
Now it is given that there are 256 sectors per track thus the number of sectors in 8192 tracks equals
sectors
Now it is given that there are 512 bytes per sector thus the number of bytes in 2097152 equals
bytes
Converting to gigabytes the capacity of the drive in gigabytes equals 1.0737Gbs
Answer:
An IP Address
Explanation:
Every computer or networking device has its own IP address. It is a series of numbers that will uniquely identify a particular computer on the internet. Since the computer connects to the internet via a router (provided by the Internet Service Provider), it is the router's IP address (or simply the network address) that is shared on the internet. So, the IP address is not exactly a reliable way of linking you to what you do on a computer.
<em>Hope this helps!</em>
If you print the binary digits just like that, they'll be in the wrong order (lsb to msb). Below program uses recursion to print the digits msb to lsb. Just for fun.
void printBits(unsigned int n)
{
if (n > 1) {
printBits(n >> 1);
}
printf((n & 1) ? "1" : "0");
}
int main()
{
unsigned int number;
printf("Enter an integer number: ");
scanf_s("%d", &number);
printBits(number);
}
Answer:
monitor
Explanation:
this is because monitor displays information so it an output