Question: Which of the following comparisons will evaluate to true
?
A
B
C
D
E
't' == t
B
1 === "1time"
C
"top" == 0
D
"top" === 0
E
Note: Not available
true
?$email1="admin@example.com"; $email2="ADMIN@example.com"; if(!strcasecmp($email1,$email2)){ echo "The email address are identical!"; } if(strcmp($email1,$email2)){ echo "The email address are identical!"; }