Answer:
create the integer variable and initialize it to one, with the do statement, increment the variable by one and print it, then the while statement checks if the variable is less than or equal to 10.
#include <iostream>
using namespace std;
int main(){
int i = 1;
do {
cout<< i << "\n";
i++;
}
while (i <= 10);
}
Explanation:
The C++ source code initializes the integer variable i to one and increments and print the value if the value is less than or equal to ten. The do-while statement executes a block of code before the condition is implemented.
1. Datagram-based network layer: Forwarding, Routing.
2. VC- based network layer: Forwarding, Routing, Call setup.
Answer:
Option A) Demand for CDs has decreased, causing equilibrium price and quantity to decrease.
is the correct answer.
Explanation:
- File-sharing is a common practice nowadays. It helps us by providing access to different files (audio , video, images, documents) to others in a faster way.
- A wide range of files are shared daily by using different means of file-sharing including computer networks and peer-to-peer networking.
- Formerly, the data was shared using CDs but now this system has been replaced with the advent of internet.
- Usage of CDs is dropped drastically and hence their demand is decreased.
- So now the prices of CDs are not in equilibrium and their quantity is also decreased.
i hope it will help you!
Answer:
The difference is that a floppy relies on a floppy disk reader to spin its disk, where as a hard drive is a fully enclosed container that has it's reader enclosed as well. A floppy disk is a single plastic film disk, where as a hard disk can have multiple metal disks.
Explanation:
The message is lost when an FTP message is not delivered to its destination because FTP doesn't use a reliable delivery method.
<h3>What is FTP?</h3>
FTP is an abbreviation for file transfer protocol and it can be defined as a type of server that's designed and developed to store and provide files for download, as well as sharing between two or more users on an active computer network.
Generally, the message is lost when an FTP message is not delivered to its destination because FTP doesn't use a reliable delivery method.
Read more on FTP here: brainly.com/question/20602197
#SPJ12