The technical terms for the statement "The repeatedly working capacity of computer" is known to be "diligence.
<h3>Why is the working capacity of computer" known to be "diligence."?</h3>
The capacity of a computer is known to be one that carry out or performs a lot of task in a repetitive manner without getting tired and as such, one can say the computer is diligent.
Note therefore that The technical terms for the statement "The repeatedly working capacity of computer" is known to be "diligence.
Learn more about computer from
brainly.com/question/24540334
#SPJ1
Answer:
Written in C++
bool checkfloor(double num1, double num2, double num3) {
if(floor(num1 * num2) == floor(num3)){
return true;
}
else {
return false;
}
}
Explanation:
The function written in C++
This line defines the function
bool checkfloor(double num1, double num2, double num3) {
The following if condition checks if the floor of num1 * num2 equals num3
if(floor(num1 * num2) == floor(num3)){
return true; It returns true, if yes
}
else {
return false; It returns false, if otherwise
}
}
See attachment for full program including the main
Answer:
An error will be occurred here. In C++ a function must be like
returntype function_name(){
}
but the functions in given class does not have returntype given. So there will be a syntax error.
If the returntype is defined then the code does not show any output since nothing is printed in the main function.
data declaration means a variable which contain data value and it can be declared as integer, float, character, double, boolean (data types).
example:
int r;
char name;
float g;
double k= 23.34;