Spreadsheets is known to be an credited tool with legitimizing the personal computer as a business tool. Spreadsheets have a lot of impact in business world because:
- It has low technical requirement. Here, spreadsheet does not need a complex installation and it is easy to understand.
- Data Sifting and Cleanup is very easy to do.
- It is a quick way to Generate Reports and Charts for business.
<h3>What is Spreadsheets?</h3>
Spreadsheets is known to be a key business and accounting tool. They are known to have different complexity and are used for a lot of reasons.
The primary aim of this is that it helps us to organize and categorize data into a kind of logical format and thus helps us to grow our business.
Learn more about Spreadsheets from
brainly.com/question/4965119
Answer: Date
Explanation: We receive new information everyday, and things are always changing. If something is old, it may need to be updated with the correct information
I will complete the statement above as best as I can do. The answer is in (CAPS).
DATABASES are files of related records organized according to logical systems and stored on computer - accessible media. The statement above define DATABASE very well.
Answer:
int* calculate(int a,int b,int c){
int result[] = {0,0};
int sum = a+b+c;
int product = a*b*c;
result[0] = sum;
result[1] = product;
return result;
}
Explanation:
The function is a block of the statement which performs the special task.
The function can return one integer, not more than one integer.
If we want to return multiple values then, we can use array.
we store the result in the array and return that array to the main function.
This is the only possible way to return multiple values.
So, define the function with return type array and declare the array with zero value.
Then, calculate the values and store in the variable after that, assign to the array.
Finally, return that array.