1. Answer is B (D9=<span>A2+B3)
2. </span><span>C. identifies how many cells with data were in the range
3. </span><span>A. ascending (smallest to largest)
</span><span>4. A. the current worksheet </span>
Answer:
#include <iostream>
using namespace std;
int cube(int num)//function cube..
{
return num*num*num;
}
int main() {
int result=cube(4);//result stores the value of cube(4).
cout<<result;//displaying it to the screen.
return 0;
}
Explanation:
The above code is in C++ language.The function cube is passed with value 4 and the result of it is stored in the variable result of integer type.Then the result is displayed using the cout. Which is used to print the statement to the output screen.
Answer:
Real time
Explanation:
Real-time data processing is the execution of data in a short time period, providing near-instantaneous output. The processing is done as the data is inputted, so it needs a continuous stream of input data in order to provide a continuous output.
Answer:
If you are on Windows 10, all you need to do is to right-click on the desktop, and finally select the "Display Settings". And over there you will be able to view various attached displays, and the resolution that you require is going to be exactly here, and as an example, the best resolution for your monitor is 3840 x 2160.
Explanation:
Please check the answer section.
// this function will return 1 if the string sent in arguments is palindrome //else it will return 0
int palindrome(int start_of_string, int end_of_string, string &strr)
{
// base case to check if the string is not empty
if (start_of_string>= end_of_string)
return 1;
if (strr[start_of_string] != strr[end_of_string])
return 0;
// recursive call
return palindrome(++start_of_string, --end_of_string, strr);
}