Answer; A peripheral is a “device that is used to put information into or get information out of the computer.”[1]
There are three different types of peripherals:
Input, used to interact with, or send data to the computer (mouse, keyboards, etc.)
Output, which provides output to the user from the computer (monitors, printers, etc.)
Storage, which stores data processed by the computer (hard drives, flash drives, etc.)
Explanation:
Answer:
The text will be shown without any formatting.
Explanation:
When you change the size of an individual shape in a SmartArt graphic, the remaining shapes may adjust their sizes and positions, depending upon the layout of your SmartArt graphic and the amount of available space. In some cases, only the individual shape that you resize will change. In others cases, corresponding shapes will change their size as well.
Answer:
1. True.
2. False.
3. True.
4. True.
Explanation:
Remember OR operator (||) gives false when both of it's operands are false. AND Operator (&&) gives false when even one of it's operator is false.
In first part we have
!(True || False) || True
=!True||True
=False||True
=True
In second part we have.
False && True && True
= False && True
=False.
In Third part
! True || (False || True)
=False || True
=True.
In fourth part
True || True && False
=True|| False
=True.