The read-write type of memory helps in reading as well as writing data. This computer memory is used by users to continually update the data (to access (read from) or alter (write to) ) that is held on hardware storage devices. Internal or external hard disk drives, rewritable CDs or small flash drives can be all physical setups of read-write memory.
Answer:
class Car(object):
fuel = 0
def __init__(self, mpg):
self.mpg = mpg
def drive(self, mile):
if self.fuel * self.mpg >= mile:
self.fuel -= mile / self.mpg
else:
print(f"get gas for your {self}")
print(f"Fuel remaining: {self.fuel}")
#classmethod
def get_gas(cls):
cls.fuel += 50
#classmethod
def add_gas(cls, gallon):
if cls.fuel + gallon > 50:
cls.fuel += 10
else:
cls.fuel += gallon
gulf = Car(20)
gulf.get_gas()
gulf.drive(200)
Explanation:
The Car class is defined in Python. Its drive method simulates the driving of a car with fuel that reduces by the miles covered, with efficiency in miles per gallon. The get_gas and add_gas methods fill and top up the car tank respectively.
Pull him away from the fridge with a non-conducting material and begin cardiopulmonary resuscitation .
<h3>What is meant by electric shock?</h3>
When a human comes into contact with an electrical energy source, they experience an electric shock. A shock is produced when electrical energy passes through a section of the body. Exposure to electrical energy has the potential to cause fatalities or absolutely no injuries.
The tangible and tangible result of an electrical current entering the body is electrical shock. The shock could be anything from a dangerous discharge from a power line to an uncomfortable but safe jolt of static electricity after walking over a thick carpet on a dry day. trauma; related topics.
The complete question is : Michael is stuck due to an electric shock generated at the fridge. What should you do to save Michael?
A. push the fridge away with a non-conducting material and begin cardiopulmonary resuscitation
B. push the fridge away from him and begin cardiopulmonary resuscitation
C. pull him away from the fridge with a non-conducting material and begin cardiopulmonary resuscitation
D .pull him away from the fridge with your hands and begin cardiopulmonary resuscitation
To learn more about electric shock refer to:
brainly.com/question/28361869
#SPJ1
Answer:
"Programmer " is the correct answer for the following question.
Explanation:
A programmer is a person who created the software They are basically a coder who develop a code for the program or the software. They are specialists in some in the programming code area. The programmer are writing the program for a different kind of software.
The main objective programmer they convert the program design which is developed by a systems analyst or system designer using a different kind of computer language
Answer:
The first HDD was created by IBM in 1956 and was the size of a refrigerator. The total storage capacity was 5 MB and only two heads were used to read the disks. The 1970s offered a hard disk drive in much smaller shells with the ability to store roughly 60 MB.
Please Mark Brainliest If This Helped!