Answer:
Symmetric encryption or single key encryption
It’s something that reflects off something
Answer:
Exceptions are raised using throw statement in c++.
Explanation:
Try block is used to keep the statements which we felt that they will raise an exception. Catch block is used to catch the exception which is thrown by the try block.
#include<iostream.h>
void main(){
int x,y,z;
try{
cout<"enter 2 numbers";
cin>>x>>y;
if(y==0)
throw y;
z=x/y;
}
catch(int x){
cout<<"exception caught";
}
}
Answer:
Dependent variable: speed of typing.
Independent variables: keyboard design & chime.
Explanation:
The speed of typing is expected to be dependent on the keyboard and chime, which are independent variables controlled by the experiment.