Do with what? If you have a question please contact me ;)
Question with options:
What kind of digital certificate is typically used to ensure the authenticity of a web server to a client?
-private
-web server
-public web
-web client
Answer:
Web server digital certificate such as SSL(Secure Sockets Layer) Certificate
Explanation:
Digital certificates are certificates issued by trusted authorities (called Certificate Authority such as Encrypt Certificate Authority) and allow users determine the originality of a resource. With these certificates, users can confirm who the issuer of the certificate is and to whom the certificates are issued. They give users more confidence when using the web.
To determine the authenticity of a web server to a client, a web server digital certificate such as SSL certificate is used.
Answer:
c. count 5 is sometimes true/ sometimes false at point 2
Explanation:
The while-loop statement is a conditional looping statement in programming that executes a block of code if a condition is met.
In the program, the value of the count variable is first initialized to zero but the while-loop would continuously increment the count variable by one if the count variable is less than five, which means that the while-loop stops and the code block is not executed at count equal to five.
Answer:
surveys and questionnaires
Answer:
Explanation:
a = input("what kind of pet the user has")
if a == 'cat':
print("Too bad")
elif a == 'dog':
print("Lucky you!")