Select the text you want to alter.
Press Shift+F3. Word changes the case of the selected text.
Continue pressing Shift+F3 until the case is the way you want it.
hope this helps
1. A. the SQRT is the squareroot. 2. may be C. Today but I've never heard of a function that returns the date!
Your answer is already in one decimal place. If you consider the whole number to one decimal place it would be rounded to just 10 since 0 doesn’t count for sig figs. Hope it helped
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:
alphabets = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
newList = []
N = 3
for i in range(N):
newList.append(alphabets[i] * 3)
print(newList)
Explanation:
- Initialize the alphabets.
- Use a for loop to append three alphabets to new list.
- Finally print the new list.