Answer:hey
Explanation:
A device is one that is an external device and includes Printer, monitor, keyboard, and scanner. The input device includes the mouse and other point devices.
The camera is also an input device, a web-cam is a external device. The external device that lets the user see the output or the result on the screen is monitor.Hence the option A is correct.
Learn more about the device that allows the user to see the results.
brainly.com/question/25756373.
4.5 Code Practice
Write a loop that inputs words until the user enters STOP. After each input, the program should number each entry and print in this format:
#1: You entered _____
When STOP is entered, the total number of words entered should be printed in this format:
All done. __ words entered.
Sample Run
Please enter the next word: cat
#1: You entered cat
Please enter the next word: iguana
#2: You entered iguana
Please enter the next word: zebra
#3: You entered zebra
Please enter the next word: dolphin
#4: You entered dolphin
Please enter the next word: STOP
All done. 4 words entered.
In python 3:
i = 0
while True:
word = input("Please enter the next word: ")
if word == "STOP":
break
i += 1
print("#{}: You entered {}".format(i, word))
print("All done. {} word(s) entered.".format(i))
I hope this helps!
The program is an illustration of loops.
Loops are used to perform repetitive operations.
The program in Python, where comments are used to explain each line is as follows:
#This gets input for the first word
word = input("Please enter the next word: ")
#This initializes count to 0
count = 0
#The following iteration is repeated until the user enters "STOP"
while word != "STOP":
#This prints the word entered
print("You entered",word)
#This increments count by 1
count += 1
#This gets input for the next words
word = input("Please enter the next word: ")
#This prints the count of all words
print("All",count,"words entered!")
At the end of the program, the number of valid inputs is printed.
Read more about similar programs at:
https://brainly.com/question/18283451
Which selling method is most likely to irritate potential customers? A. Running a trade fair booth B. Cold calling C. Running a flea market booth D. Telemarketing to people who are interested in the product.
Answer:
B
Explanation:
Answer: B. Cold Calling
Explanation:
In business, cold calling means to contact people who haven't actually proved to be interested in their products/services. A salesperson may try cold calling to try and convince the person to be. This may be irritating to potential customers because instead of finding it out for themselves, the salesperson is shoving information down their throats.
I hope this helped!
Good luck <3
What file format is used to help prevent other people from editing a final document?
RTF
TXT
PDF
PWP
Answer:
The answer to this question is given below in the explanation section.
Explanation:
The correct answer to this question is PDF.
Because PDF file format does not allow you to edit something in it. It prevenst others from editing in it. In a PDF file, you cannot add text, pictures, etc as like in a word document.
Why other options are not correct.
In RTF (rich text format) and TXT file format, you can easily edit the content in these file formats. Furthermore, RWP files are the storage of the contents of these RapidWeaver websites. All the website contents are saved using this format that includes information about images, pages and style sheets, etc, and information in it can be easily editable.
what do you call the two parts of lift that go down a mine