I'm assuming you are referring to Excel. There are a few ways to add A1 and B1.
First you could use '=SUM(A1+B1)'
You could also use '=SUM(A1:B1)' which adds the values of all the cells between A1 and B1, but since they are next to each other, this would work.
You could also use '=SUM(A1,B1)' where you list all the cells you want to add with commas in between.
Answer:
An algorithm, for the non-programmers among us, is a <u><em>set of instructions that take an input, A, and provide an output, B, that changes the data involved in some way</em>.</u> Algorithms have a wide variety of applications. In math, they can help calculate functions from points in a data set, among much more advanced things.
Explanation:
hope it helps
Answer:
Usually when someone answers a question there would be an option to mark the brainliest. However, you only get one every like 24 hrs so if you already gave someone brainliest you can't give it to someone else for a while
Explanation:
Answer:
Explanation:
#include <iostream>
using namespace std;
double cube(double);
int main()
{
double ci=0;
cout << "Enter avalue :";
cin >> ci;
cout << "Cube of " << ci << "is =" << cube(ci) << endl;
return 0;
}
double cube(double i)
{
return(i*i*i);
}