I would say the correct answer is #1.
Answer:
IPO means Input - Process - Output
Explanation:
The IPO model means that a computer program is given an input to process, it processes the given input and return an output as the result.
Answer:
do{
cout<<"Introduce number \n"; //print the message
cin>>num; //set the value of the number given
}while(num<1 || num>10); //repeat while the number is out of the range
cout<<"Number: "<<num; //print the number
Explanation:
The idea behind this code is to create a loop in which I can compare the number given (between 1 and 10) and then print the number or get back and ask the number again.
#include <iostream>
using namespace std;
int main()
{
int num; //create num variable
do
{
cout<<"Introduce number \n"; //print the message
cin>>num; //set the value of the number given
}while(num<1 || num>10); //repeat while the number is out of the range
cout<<"Number: "<<num; //print the number
}
Answer:
The answer to this question is given below in the explanation section.
Explanation:
This question is about creating a table using a spreadsheet program to record how many t-shirt each team member sold.
The spreadsheet file is attached.
Answer: <em>The kinetic energy of the 20 gram ball is half the kinetic energy of the 10 gram ball.</em>
<em />
Explanation: :)