#include <stdio.h>
int main(void) {
int givenYear;
givenYear = 1776;
if(givenYear >= 2100){
printf("Distant future");
}
else if (givenYear >= 2001){
printf("21st century");
}
else if (givenYear >= 1900){
printf("20th century");
}
else {
printf("Long ago");
}
return 0;
}
Answer: Yes
Explanation: A distributed operating system use a technique to comunicate across all the nodes that were connected to it while the communication maded by a desktop operating system is directly with the system itself, we can use a distributed operating system to get connected through various desktop operating system.
<span>The format cells dialog box tab that gives
choices to locking or concealing cells to keep different clients from altering
their substance is protection. <span>It is part of Microsoft office application that enables to lock or
protect the data. It is a way of protecting the files.</span></span>
Answer:
history.back();
Explanation:
history. back() method is used to go back 1 step in URL history .You can also understand this like suppose you searched you tube on google then all the searches matching you tube will appear on the search page then you entered the you tube site. Then to go back on the search page you clicked on go back button in your browser which somewhere inside used history. back() to go to previous page.