Answer:
Microsoft Windows File Manager
Answer:
Computer hardware engineer
Systems analyst
Database administrator
Answer:
A goal of procedural programming
An advantage of object oriented programming
A disadvantage of object oriented programming
A drawback of procedural programming
<h3>a= hybrid computer can perform the function of both analog and digital computer</h3>
Answer:
import random
def simulate_observations():
#this generates an array of 7 numbers
#between 0 and 99 and returns the array
observations = random.sample(range(0, 100), 7)
return observations
#here,we call the function created above and print it
test_array = simulate_observations()
print(str(test_array))