it's either C or D I am pretty sure that the answer is D
Answer:
The answer is letter A.
Explanation:
The statement is true. The benefits associated with AAA are increased security, increased control over the network, and the capability of auditing your network.
A theme is a collection of coordinating colors
Answer:
number1 = int(input("Enter the first number: "))
number2 = int(input("Enter the second number: "))
result = 0
for i in range(number1):
result += number2
print(str(result))
Explanation:
Ask the user for two numbers
Initialize result as 0 to hold the multiplication of the numbers
Create a for loop that iterates "number1" times. In each iteration, add number2 to the result.
When the loop is done, print the result