Answer:
There are four main computer hardware components that this blog post will cover: input devices, processing devices, output devices and memory (storage) devices. Collectively, these hardware components make up the computer system.
Answer:
following are expression to this question:
s.upper()
Explanation:
Example to use upper method:
s= "McGraw15" #defining string variable that holds a value
print (s) #print value
print ('changing into upper case: ') #print message
print (s.upper()) # call upper method and print its value
Output:
McGraw15
changing into upper case:
MCGRAW15
Description of upper method:
- In the given question it is defined, that "s" is a string variable, that holds a string value, and variable "s" uses a method to convert all the string value into upper-case.
- To convert all value into the upper case the "upper()" method is used, It is a built-in method, that converts all the value in the upper-case.
<span>C.
Move to the next cell down.</span>
Answer:
Tim Cranmer
Explain: I remember reading a book about it but forgot the book name