Answer:
https://studio.code.org/projects/applab/YGZyNfVPTnCullQsVfijy6blqJPMBOgh5tQ5osNhq5c
Explanation:
Pseudocode:
import random
fetch user input on a lucky number
insert input into variable - "response"
new variable, random = randint
condition to check wheather random is our response
display results
Python Code:
import random
def main():
response = int(input("Guess my lucky number, its between 1 and 100: "))
lucky_number = random.randint(1,100)
if response == lucky_number:
print(f"Wow you're right, it is {lucky_number}")
else:
print("Sorry, Try Again")
main()
Reminder:
intended for python3 as i included the format f
also it could be done without the import, just manually insert a number
i'll leave the post mortum to you
Ransomware is the malware that encrypts the users data
Answer:
Parallelism
Explanation:
Each processor or core processes two threads at the same time is called <em>parallelism.</em>
<em>Parallelism </em>in computing refers to the improvement of performance. In fact parallelism is the mechanism in which multiple computing tasks can be processed at the same time. In synthesis in <em>parallel executions </em>every single task is split into multiple core processes in which every sub-task is executed at the same time.
Secondary storage refers to storage devices and media that are not constantly accessible by a computer system. Examples include external hard drives, portable flash drives, CDs, and DVDs.
good luck