Answer: NTP ( Network time protocol)
Explanation:
Network time protocol is the time server which basically works in the TCP and IP network. It rely on the UDP ( User data-gram protocol) at port 123.
NTP server is the dedicated network time protocol devices which basically use for synchronize the network.
It is basically design to synchronize the clock in the computer and across the internet network and local area network. NTP server basically maintain the quality of the reference clock time.
Answer:
to make a name for themselves
Explanation:
Answer:
aaaa
Explanation:
We have a function nPrint which return type is void, it means it returns nothing.
we declare the two parameters, one parameter is string type and the second parameter is an integer type.
Then, it has a while loop that executes the statement again and again until the condition not FALSE.
Let dry run the code:
First, call the function nPrint("a", 4) bypassing the value in the argument.
then, the value receives by the parameters, the message contains "a" and n contain 4. After that, while loop checks the condition 4 > 0, which is TRUE and the program starts executing the statement.
The program prints the message on the screen "a" and then decreases the value of n by 1. So, the value of n becomes 3.
The above process repeats for the value of n = 3, 2, 1
and print the message "aaaa".
then, the condition becomes false and the program terminates the loop.
Therefore, the answer is aaaa