for x in range(5,76,5):
print(x, end=" ")
I wrote my code in python 3.8. Hope this helps
Two-way communication is when one person is the sender and they transmit a message to another person, who is the receiver. When the receiver gets the message, they send back a response, acknowledging the message was received.
Answer:
A switch statement is a set of different outputs depending on the number of criteria asked to follow.
Given an integer number as a variable status, the algorithm would state as the following:
int num
switch (num) {
case 200:
printf(OK);
break;
case 403:
printf(Fobidden);
break;
case 404:
printf(Not Found);
break;
case 500:
printf(Server Error);
break;
default:
printf(Not a proper value);
break;
}
Depends on the value of hte variable "num", it will fall in one of the options above. If the variable has a different value that doesn't fit in any of the options above, it will prompt the default message.
Answer: responsive
Explanation:
its called mobile responsivness and most good websites have it
Much like humans, databases have relationships too.