Answer:
import sys
# The value of the second argument is assigned to X
x = int(sys.argv[1])
# The value of the third argument is assigned to Y
y = int(sys.argv[2])
# The result of multiplication of x and y is assigned to 'result'
result = x * y
#The value of the result is displayed to the user
print("The result of multiplying ", x, "and ", y, "is", result)
Explanation:
First we import sys which allow us to read the argument passed when running the program. The argument is number starting from index 0; the name of the python file been executed is sys.argv[0] which is the first argument. The second argument is sys.argv[1] and the third argument is sys.argv[2].
The attached file is named multplyxy (it wasn't saved as py file because the platform doesn't recognise py file); we can execute it by running: python3 multiplyxy.py 10 23
where x will be 10 and y will be 23.
To run the attached file; it content must be saved as a py file: multiplyxy.py
Answer:
Certificates focus on a narrow set of skills or type of technology.
Explanation:
A certificate in computer technology is a unique, digitally signed document that essentially provides identification, file encryption, authentication of an individual or enterprise software by using public key cryptography, to ensure it's legitimate and meets the standard requirements of Common Computing Security Standards Forum (CCSF).
All certificates on computer are stored in a centralized location known as the Certificate Manager, where users can either view or delete the certificate.
Certification Authority (CA ) is the third-party entity that is responsible for issuing this digital certificates.
1. C.) Macintosh
2. B.) Semiconductor
3. D.) Microchip
Answer:
Written in Python
word = input("Word: ")
if(word[0]=='a' or word[0]=='e' or word[0]=='i' or word[0] =='o' or word[0]=='u'):
print(word+"ay")
else:
a = word[1:]
print(a+word[0]+"ay")
Explanation:
<em>The program was written in Python and I've added the explanation as an attachment; where I used comments as explanations</em>
Explanation:
don't search butter lettuce it's a veggie so you say butter lettuce vegetable