Answer:
what do you want your computer to do, how do you want your computer to look, how fast do you want your computer to run, etc
Answer:
The solution code is written in C++
- #include <iostream>
- using namespace std;
- int main()
- {
- int num;
- signed int factorial = 1;
-
- cout<<"Input a number: ";
- cin>> num;
-
- if(num >= 0 && num <30){
-
- for(int i = num; i > 0; i--){
-
- if(factorial * i < 2147483647 && factorial > 0){
-
- factorial *= i;
-
- }else{
-
- cout<<"Can't handle this";
- return 0;
- }
- }
- cout<<factorial;
- }
- return 0;
- }
Explanation:
Firstly, let's create variable num and factorial to hold the value of input number and the factorial value. The variable factorial is defined with a signed int data type (Line 7-8).
Next prompt user input a number and do input validation (Line 10 -13). Then create a for-loop to calculate the factorial of input number (Line 15 - 26). Within the loop, create an if-else statement to check if the factorial of n is more than the limit, if so display the message "Can't handle this". Otherwise, the program will just print out the factorial after completing the loop (Line 28).
The very first thing that we should select if we are using an address Block or Greeting Line is to Start Mail Merge. The second step would be to Edit Recipient List. In the Mail Merge Recipients dialog box, we then select the recipient whose record is to be included in the merge.
a self-directed is the correct answer
Mr. Stevens wants to export data from database of students’ exam scores to create presentation using other software on how the scores have changed throughout a semester.
<h3>What is database?</h3>
The database is the collection of data which is arranged in proper manner generally electronically in computer system for the easy access and latter use.
The database also help to analyse the data. The data is export from database for following reasons-
- For backing up the important data.
- To move the data from two different program version.
Mr. stevens is the principal of a high school. He want to export data from a database of students’ exam scores. With this data he can make presentation to analyze the scores.
Mr. Stevens wants to export data from a database of students’ exam scores to create a presentation using other software on how students’ scores have changed throughout a semester.
Learn more about the database here;
brainly.com/question/26096799