EV Technology - Connected Vehicle (V2X)
Consider this code snippet for an EV's security system:
What will be the output?
def check_access(password):
if password == 'Secure123':
return 'Access granted'
else:
return 'Access denied'
print(check_access('secure123'))What will be the output?
