Answer:
X = int(input("Age = ")
if (X >= 18):
print('Valid Voter')
Else:
return 0
Try it and let me know. :)
You'd use the Resource Monitor, or as it's called on an iMac, the Activity Monitor. This built in utility shows you the program's name, the memory it is consuming and the CPU as a percentage of your desktop machine's ability.
Answer:
Access Control List is the correct answer to the following question.
Explanation:
The following answer is correct because by the ACL we can access and refusal of services that is controlled. It used to filter traffic for the network and it also used give the extra securities to protect the network. AVL provides an authorization attached to the object that define which persons are allowed for access to the object and operations.
Answer:
The second one:
num = int (input("Enter a number between 1 and 100: "))
c = num
while (c <= 100):
print (c)
c = c + 1
Explanation:
First of all, you don't know Python... (LEARN IT)
Second of all, The first loop doesn't make sense? num 100
And the second one works, you can try compiling it (lazy to explain...).