Answer:
The program to this question can be given as:
Program:
factorial=1 #declare a variable.  
number=int(input("Enter a positive integer:")) #input a number.  
while (number>0): #loop  
    factorial= factorial*number # holding value in factorial variable  
    number=number-1  
print('=',factorial) #print value.
Output:
Enter a positive integer:6  
= 720  
 Explanation:
The description of the above python program can be given as:
- In the above program firstly we define a variable that is "factorial". In this variable, we assign a value that is 1 and it is used to calculate the factorial value.  
- We define a variable "number". The number variable is used to take input from the user.  
- Then we define a loop in the loop we calculate the factorial and hold the value in the factorial value in the last we print the value.  
 
        
             
        
        
        
Answer:
does your toothpaste have salt? 
 
        
                    
             
        
        
        
Answer:
scheduling
Explanation:
Scheduling- it is referred to as assigning a task to complete the goal or work on time. he works can include data flow, processing of data, etc.
There are two main types of scheduling
1) Preemptive process
2) Non- preemptive process
Preemptive process -  in this process, priority is given to important tasks rather than less important tasks. the current task can be held for an important task
Non-preemptive process -  It is referred to that process when the predefined schedule follows. In this  process, next task executed only when current task finish
 
        
             
        
        
        
Answer:
A. Personal blogs
Explanation:
I did the quick check, and there you go...it's A.
 
        
             
        
        
        
The world would be in chaos and we would all be dead duh.