Answer:
Random Access Memory, it's used to store working data and machine codes
Explanation:
Hope it helped !
Adriel
1 Click the cell in which you want to enter the formula.
2 In the formula bar , type = (equal sign) and the formula you want to use.
3 Click the tab for the worksheet to be referenced.
4 Select the cell or range of cells to be referenced.
MARK ME BRAINLIEST PLEASE!!!!!!!!!
Answer:
Modem
Explanation:
A modem is a device that converts your data into a relevant format so that it can be used in the transmitting process from one computer to another one.
Answer:
DISKPART
Explanation:
type diskpart command at command prompt and allow access to this command to access your disk info. it will give the available disk space on all partions
Answer:
Python code is explained below
Explanation:
# decorator.py starts
def uppercase(fcn):
def wrapper():
original = fcn;
modified = str(fcn).upper() ;
return modified;
return wrapper();
# decorator.py ends
# greet.py starts
import decorator #to generate the decorator
def greetings(): #invokes the greetings function for output
print("Hello");
print(decorator.uppercase(greetings));
# greet.py ends