If you observe closely, you may see that these stars are shown only against some slides and not all of them.
The stars are just an indication that the particular slide has custom animation. That was you can quickly see at a glance if a slide has content that is animated.
The same star symbol is also shown when the slide itself has any slide transition set.
When one is typing on MS word and one save the file, this data would be stored as combination of 1s and 0s in the computer.
- Computer data storage can be regarded complex system, immediately a data is saved then;
- The first be converted to simple numbers of 1s and 0s , this number are very easy for a computer to store and these number are regarded as Binary Numbers and all letters as well as photographs are converted to numbers,
- The hardware will record this saved numbers inside the computer.
- These numbers are then organized and transferred to temporary storage which be manipulated by programs, or software.
Therefore, data are been stored as 1s and 0s in the computer.
Learn more at:brainly.com/question/21571591?referrer=searchResults
Answer:
The program in QBasic is as follows;
PRINT "Number: "
INPUT N
LET FACT = 1
FOR I = 1 TO N
FACT = FACT * I
NEXT I
PRINT FACT
END
Explanation:
This prompts user for number
PRINT "Number: "
This accepts input from the user
INPUT N
This initializes the factorial to 1
LET FACT = 1
This iterates through the number the user inputs and calculates its factorial
<em>FOR I = 1 TO N
</em>
<em> FACT = FACT * I
</em>
<em>NEXT I
</em>
This prints the factorial
PRINT FACT
The program ends here
END