If on a computer, if thee computer says they put it in the recycling bin, the go to the recycling bin and right click and delete. If a paper, throw away. If other, do what your body desires to do.<span />
Answer: Cognitive
Explanation:
According to the question, the Ryan shows cognitive attitude towards the HDTV. The cognitive component basically refers to the three main components that are:
- Thoughts
- Beliefs
- Attributes
The cognitive component is one of the type of attitude which basically consist of various types of thoughts, knowledge and the beliefs towards the any type of object. It is one of the belief and opinion of the attitude.
A Microsoft
Office Suite.
An office suite is a collection of Microsoft Office
productivity software and is readily available for both Windows and Macintosh
Operating System. A list of these programs includes, Microsoft Word, Excel,
Access, Powerpoint, Publisher, and Outlook. Each of these programs serve a different purpose.
Answer:
while True:
number = int(input("Enter a number: "))
product = number * 10
if product > 100:
break
print(str(product))
Explanation:
Create a while loop that iterates until a specific condition is created inside
Ask the user for the input
Multiply the input and put the result in product
Check if the product is greater than 100. If it is, stop the loop using break keyword
When the loop is done, print the product