Answer:
import random
number1 = random.randrange(0, 1000)
number2 = random.randrange(0, 1000)
answer = int(input("Enter a number: "))
if answer == number1 + number2:
print("Your answer is correct")
else:
print("Your answer is not correct")
Explanation:
The code is in Python
Create two integer numbers using random
Ask the user for an input
Check if answer is equal to number1 + number2. If they are equal, print "answer is correct". Otherwise, print "answer is not correct".
Answer:
Gramm-Leach-Bliley Act
Explanation:
Under the Gramm-Leach-Bliley Act, financial institutions must provide a privacy notice to each consumer that explains what data about the consumer is gathered, with whom that data is shared, how the data is used and how the data is protected.
The law stipulates that for any consumer with a financial institution, the financial institution should make provision of a privacy notice. This privacy notice outlines in explicit details the following; what data about the consumer is gathered, with whom that data is shared, how the data is used and how the data is protected.
This was done in order to protect the consumer right and the right of the financial institution.
C
Explanation:
https://www.sciencedirect.com/science/article/pii/S2405844019356750
<em>Missing Part:</em>
<em>Assume that the following variables have been properly declared and initialized: an int variable named selection, where 1 represents "beef", 2 represents "chicken", 3 represents "pasta", and all other values represent "fish"</em>
Answer:
if selection == 1:
print("beef")
elif selection == 2:
print("chicken")
elif selection ==3:
print("pasta")
else:
print("fish")
Explanation:
I've completer the question and the questin will be answered in python.
This checks if selection is 1. If yes, it prints the beef
<em>if selection == 1:</em>
<em> print("beef")</em>
This checks if selection is 2. If yes, it prints the chicken
<em>elif selection == 2:</em>
<em> print("chicken")</em>
This checks if selection is 3. If yes, it prints the pasta
elif selection ==3:
print("pasta")
Any other input is considered java/
else:
print("fish")