Easy.
Hardware and software!
Did you ever try to use a computer with only mouse and monitor?
Answer: use Microsoft Power Point
Explanation:
Set up a self-running presentation
To set up a PowerPoint presentation to run automatically, do the following:
On the Slide Show tab, click Set Up Slide Show.
Under Show type, pick one of the following:
To allow the people watching your slide show to have control over when they advance the slides, select Presented by a speaker (full screen).
Answer:
technical feasibility
Explanation:
This is the process of validating the technology assumptions, architecture and design of a product or project. A technical feasibility study shows the details of how you intend to deliver a product or service to customers. Puts into consideration the following :
materials, labor, transportation, where your business will be located, and the technology that will be necessary to bring all this together.
Answer:
Hmm maybe because its failing?
Explanation:
i actually dont know but it happens to me sometimes
In your example, you're asking the user for a number and then you're setting total and nums equal to zero. This results in your first number being ignored by the program. I included the complete working code below:
num = int(input("Enter a number: "))
total = num
nums = 1
while (total <= 100):
num = int(input("Enter a number: "))
nums = nums + 1
total = total + num
print("Sum: "+str(total))
print("Numbers Entered: "+str(nums))
I hope this helps!