Question: (A)This is the =, +=, *=, /=, .= _______ Operators (B)This is the >, <, <=, >=, ==________ Operators (C)This is the &&, ||, !, _______ Operators.
A
B
C
Logical
B
Comparison
C
Assignment
Note: Not available
______
operator is used to test if two values are identical in every way.$a=1; ++$a; $a*=$a; echo $a--;