A process or set of rules to be followed in calculations or other problem-solving operations, especially by a computer.
Google c++ tutorial. Cplusplus and Tutorials Point both have some good resources
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: Authentication factor
Explanation: Authentication factor are the factors that describes about the ingenuity or originality of the user .This is the term that tells about the actuality of user that is getting connected with network by the five elemental question .
The question is regarding the possession, inherency, knowledge/information , identity and location.The answers to these question help in finding the authenticated user.
Port 53
Man sometimes the answer minimum of 20 to explain is a bit unnecessary.
It's port 53 what else do you need to know?