41. What functions do the operators is, not, and in perform?
The term "operator" refers to a specific function that accepts one or more operands (values) and returns a related result.is: returns true when both operands are true. For instance "x" is "x"not: Based on the operands, this function returns the opposite of the boolean value. For instance "1" returns "0" and vice versa.