RAM stands for Random Access Memory
ROM stands for Read Only Memory
Computers need RAM because RAM is the place in the computers, where the operating system, application programs, and data (in current use) are stored that way the computers processor can easily reach it. ROM is memory that can not be changed by a program or the user. ROM has its memory even after it is turned off. ROM is an example of telling your computer how to start up.
Sorry that was kinda long. Hope this helps you out! Have an AWESOME rest of your day!
To run the application the web server need to be configured.
Answer:
may any technical issue which creates this.. upgrade is not necessarily
Answer:
win-RAR or other kind of compactor
Explanation:
Also you may use Cloud or Dropbox
Answer:
the code using Python
Explanation:
import random
def buildArray(array, size):
for i in range(size):
array.append(random.randint(10, 99))
def sumArray(array , num):
sum_array = 0
for i in range(num):
sum_array += array[i]
return sum_array
def main():
n = int(input("How many values to add to the array:\n"))
array = []
buildArray(array, n)
print(array)
num = int(input("How many values to find sum of array:\n"))
result= sumArray(array,num)
print(result)
main()