Answer:
the difficulty in factoring large numbers
a public key that the server and the user’s computer know
the use of prime numbers
a private key that only the server knows
Explanation:
ege 2021
Those would be numbers below 1.
Explanation:
.5•.5 = .25
-2•-2 = -4
Hope this helps!
Also consider giving me brainliest.
Jeff pay $2,300 for his computer.
b. $2,300
<u>Explanation:</u>
Consumer surplus can be defined as the amount that the consumer is willing to pay for a product or a service. The word surplus is a synonym for something extra or excess. It corresponds to the extra benefit that the consumer gets while buying something which may be the result of some discount, sale, or negotiation.
Jeff realizes a consumer surplus of $700 while purchasing a laptop of $3000. As the consumer surplus is $700,
the amount Jeff has paid for the laptop is: $3000 - $700
: $2300
Answer:
weights = []
total = 0
max = 0
for i in range(5):
weight = float(input("Enter weight " + str(i+1) + ": "))
weights.append(weight)
total += weights[i]
if weights[i] > max:
max = weights[i]
average = total / 5
print("Your entered: " + str(weights))
print("Total weight: " + str(total))
print("Average weight: " + str(average))
print("Max weight: " + str(max))
Explanation:
Initialize the variables
Create a for loop that iterates 5 times
Get the values from the user
Put them inside the array
Calculate the total by adding each value to the total
Calculate the max value by comparing each value
When the loop is done, find the average - divide the total by 5
Print the results