Don’t know what the answer is but do you, I have the test for that today
Answer:
If someone is disturbing you a lo then you can report him/her.
- Go to g-mail.
- Type a message to US Support.
- Add a screenshot of him/her whom you want to report.
- Use polite words
- At last, send it.
You will get soon response.
Answer:
We need context, it could be several answers
Explanation:
Answer:
Sometimes yes, sometimes you can do it yourself
Explanation:
Installing a Nest thermostat can be done yourself without an electrician in most cases. Nest thermostats are designed to work in homes without a common (“C”) wire. However, there are rare cases a C wire or other power-supply accessory may be required. An electrician is recommended in these rare cases.
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.