Enter tab would complete an entry. I hope that helped ya!
Answer:
Thank you! can i have brainliest please?
Explanation:
The storage device which is not a long-term storage device is: D. RAM.
<h3>Types of computer memory.</h3>
In Computer technology, there are two (2) main types of memory or storage location for software program (application) that are being used on a computer and these include the following;
- Read only memory (ROM)
- Random access memory (RAM)
<h3>What is RAM?</h3>
RAM is an abbreviation for random access memory and it can be defined as a volatile and temporary storage (memory) location that is used for currently opened software program (application) and computer data.
In conclusion, we can reasonably and logically deduce that the storage device which is not a long-term storage device is random access memory (RAM).
Read more on RAM here: brainly.com/question/13748829
#SPJ1
Answer:
num = int(input("enter a number:"))
print(num * 8)
Explanation:
num is just a variable could be named anything you want.
if code was like this num = input("enter a number:")
and do a print(num * 8)
we get an error because whatever the user puts in input comes out a string.
we cast int() around our input() function to convert from string to integer.
therefore: num = int(input("enter a number:"))
will allow us to do print(num * 8)