1. Be smart
2. Do not tell anyone your personal info
3. Use reliable resources while looking up things (org,net,ect. no .coms)
4. ask your parents or guardian if you can go on a specific website And number 5 have fun!
Answer:
a) It is used for authentication.
Explanation:
Hashing is a process of transforming a single key into another value. It generates the values using a mathematical algorithm. the outcome of this process is a hash value or a hash.
The hashing process is used for authentication.
The hashing process is not reversible.
The hashing process is used to create the digital signature.
The outcome of the hashing process is the hash value, not a message.
<span>When it comes to linear programming, the solution which would be effective in satisfying all constraints in the given program in a simultaneous matter is called that of feasible programming. This is due to the fact that the program can satisfy all requirements at the same time.</span>
Business application software programs make it possible to: increase productivity in the office setting.
Please give me Brainless if this help!!
(python) Answer:
sum = 0
for i in range 1 to 101:
if i modulo 2 == 0:
sum += i
print(sum)
Explanation:
first we declare the sum variable
then go through all numbers 1 through 100 (range 1 to 101 because python range does not include the last number - if we did 1 to 100 it would look at 1 to 99)
if the number is even (divide by 2, check if there's a remainder, if not it's even and we will add the number to the sum
finally print the sum