Answer:
The program to this question as follows:
Program:
def isEvenPositiveInt(x): #defining method isEvenPositiveInt
if x>0: #checking number is positive or not
if x%2==0: #check true condition
return True #return value True
else:
return False #return value False
return False #return value False
print(isEvenPositiveInt(24)) #calling method and print return value
print(isEvenPositiveInt(-24)) #calling method and print return value
print(isEvenPositiveInt(23)) #calling method and print return value
Output:
True
False
False
Explanation:
In the above Python program, a method "isEvenPositiveInt" is defined, that accepts a variable "x" as its parameter, inside the method a conditional statement is used, which can be described as follows:
- In the if block the condition "x>0" is passed, that check value is positive, if this condition is true, it will go to another if block.
- In another, if block is defined, that checks the inserted value is even or not, if the value is even it will return "true", otherwise it will go to the else part, that returns "false".
Trusting, loyal, and a hard worker. All indristies want employees who won't backstab, works hard, and is loyal to the company
Option + 1
-----------------------------
D is the answer to that problem
E-mail stands for Electronic mail. It is a method of exchanging messages ("mail") between people in a telecommunication network with the usage of electronic devices. There is a sender and a receiver for any given message, and they switch positions in turn.
The statement that E-mail is an temporary message medium is false. E-mail can be kept forever and are not temporary.