Answer:
Webcasts
Explanation:
The rest of the options don't need to be streamed as there isn't a continuous flow of information.
Answer:
C. Confidentiality
Explanation:
With confidentiality, a person who intercepts messages you intend to remain private cannot read them and thus increases your document protection
Answer:
A variable is a name associated with a data value; we say that the variable "stores" or "contains" the value. Variables allow us to store and manipulate data in our programs.
Answer:
// here is code in c++.
// include header
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variables to read input
int userNum,x;
cout<<"enter the value of userNum and x :";
// read the input from user
cin>>userNum>>x;
// divide the userNum with x 4 times
for(int a=0;a<4;a++)
{
userNum=userNum/x;
cout<<userNum<<" ";
}
cout<<endl;
return 0;
}
Explanation:
Declare two variables "userNum" and "x". Read the value of these. Run a for loop 4 time and divide the "userNum" with "x" and print the value of "userNum".
<u>Output:</u>
enter the value of userNum and x :2000 2
1000 500 250 125
Answer:
Education
Explanation:
Most apps for <u>learning</u> a new language are for educational purposes and are most likely an education type of app.