Describe two situations in which you could create workbooks to store and calculate data.

What will be an ideal response?


Grades. A student can keep track of grades earned on assignments, test, quizzes, etc. and calculated weighted averages based on the professor’s grading scale.
Budget. A student can keep track of his or her monthly budget, including any income or scholarships and expenses such as tuition, car payment, food, entertainment, etc.

Computer Science & Information Technology

You might also like to view...

What is Active Directory Service (AD DS)?

What will be an ideal response?

Computer Science & Information Technology

(Print a String Backward) Write a recursive function stringReverse that takes a string and a starting subscript as arguments, prints the string backward and returns nothing. The function should stop processing and return when the end of the string is encountered. Note that like an array the square brackets ([]) operator can be used to iterate through the characters in a string.

What will be an ideal response?

Computer Science & Information Technology

List specific jobs that should be segregated in (1) the purchases processing system and (2) the cash disbursements system.

What will be an ideal response?

Computer Science & Information Technology

Which of the following code displays the area of a circle if the radius is positive.

a. if (radius != 0) System.out.println(radius * radius * 3.14159); b. if (radius >= 0) System.out.println(radius * radius * 3.14159); c. if (radius > 0) System.out.println(radius * radius * 3.14159); d. if (radius <= 0) System.out.println(radius * radius * 3.14159);

Computer Science & Information Technology