Answer:
An output is data that a computer sends. An input device is something you connect to a computer that sends information into the computer. An output device is something you connect to a computer that has information sent to it.
Output is defined as the act of producing something, the amount of something that is produced or the process in which something is delivered. An example of output is the electricity produced by a power plant. An example of output is producing 1,000 cases of a product.
Answer:
There are usually three stages to writing a program: Coding. Compiling. Debugging.
<u>Extensible Markup Language (XML)</u> is a markup language designed to transport and store data on the Web.
Explanation:
- Extensible Markup Language (XML) is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable
- Extensible means that the language is a shell, or skeleton that can be extended by anyone who wants to create additional ways to use XML.
- Markup means that XML's primary task is to give definition to text and symbols.
- It is a textual data format with strong support, Unicode for different human languages.
- Extensible Markup Language (XML) is used to describe data.
- The design goals of XML emphasize simplicity, generality, and usability across the Internet.
- It is a text-based markup language derived from Standard Generalized Markup Language (SGML).
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
}