Answer: No
Explanation:
For the same reason that two people cannot have the same address, it's just a virtual address.
Believing in your capabilities and demonstrating confidence in the tasks you perform - Self Esteem
Being loyal, sincere, and trustworthy in your job - Honesty
Being friendly and communicating enthusiastically with co workers - Sociability
Being accountable for your actions - Responsibility
Hope this helped!
~Just a girl in love with Shawn Mendes
Answer:
In Python:
def is_power(n):
if n > 2:
n = n/2
return is_power(n)
elif n == 2:
return True
else:
return False
Explanation:
This defines the function
def is_power(n):
If n is greater than 0
if n > 2:
Divide n by 2
n = n/2
Call the function
return is_power(n)
If n equals 2
elif n == 2:
Return True
return True
If n is less than 2
else:
Then, return false
return False