Answer:
The default location for local logon scripts is
- the Systemroot\System32\Repl\Imports\Scripts folder
ISP is an abbreviation for internet service provider.
Hope this helps!
Answer:
optical sensors
Explanation:
optical sensors measure the amount of gases like carbon dioxide and carbon monoxide in the air
# Written in python
a = int(input("Enter an integer: "))
b = int(input("Enter an integer: "))
sum = a + b
# subtract the smaller number from the bigger
if a < b:
dif = a - b
else:
dif = b - a
prod = a * b
print("The sum is", sum)
print("The dif is", dif)
print("The product is", prod)
Answer:
Elastic IP address
Explanation:
Elastic IP addresses are static, persistent public IP addresses which can be associated and disassociated with the instance, as required.
This will provide the best failover solution that will keep same IP address on a new instance.