correct answers)8
Boolean - correct answer ✔✔A single value of either TRUE or FALSE
** - correct answer ✔✔Exponent
* - correct answer ✔✔Multiplication
/ - correct answer ✔✔Division to integer
// - correct answer ✔✔Division to float
+ - correct answer ✔✔addition
- - correct answer ✔✔Subtraction
% - correct answer ✔✔modulus (remainder)
Unary - correct answer ✔✔one operand
Binary - correct answer ✔✔The binary number system is base 2, using only bits 0 and 1.
~ - correct answer ✔✔Bitwise negation
& - correct answer ✔✔Bitwise and
, | - correct answer ✔✔Bitwise Or operator
<< - correct answer ✔✔Shifts each bit left n bits
>> - correct answer ✔✔Shifts each bit right n bits
+ (string) - correct answer ✔✔Combine two strings
== - correct answer ✔✔equal to
!= - correct answer ✔✔not equal to
<= - correct answer ✔✔less than or equal to
< - correct answer ✔✔Less than
> - correct answer ✔✔Greater than
>= - correct answer ✔✔greater than or equal to
not - correct answer ✔✔not (normal evaluation)
and - correct answer ✔✔and (normal evaluation)
or - correct answer ✔✔or (normal evaluation)
* (string) - correct answer ✔✔Multiplies and appends the string
print() - correct answer ✔✔prints to console any number of arguments, including 0