I believe photoshop since it has elements of productivity
n = int(input("How many numbers do you need to check? "))
odd = 0
even = 0
i = 0
while i < n:
num = int(input("Enter number: "))
if num % 2 == 0:
even += 1
print(str(num)+" is an even number")
else:
odd += 1
print(str(num)+" is an odd number")
i += 1
print("You entered "+str(even)+" even number(s).")
print("You entered "+str(odd)+" odd number(s).")
I hope this helps!
Answer:
This is a subjective answer, so I'll try my best to answer this.
She probably did not like coding because it is like learning a new language, which can be very difficult for people, but once she saw everything it can do and how it could impact people's day to day life she knew that it is very impactful.
Explanation:
Answer:
TNSPING
Explanation:
tnsping is a utility, this helps us to determine the service on an Oracle Net network can be reached successfully.
If you want to connect between a client and server, we can use the tnsping utility, in this case, we're going to receive an estimated time around the trip in milliseconds it takes to reach the Oracle service, if it fails, we're going to receive an error message.