<<< Previous question <<< Question ID#0537.md >>> Next question >>>
Which of the following comparisons will evaluate to true?
var_dump(
't' == t, // Notice
1 === "1time",
"top" == 0,
"top" === 0,
1 == "1time"
);
- A) 't' == t
- B) "top" == 0
- C) 1 == "1time"
- D) 1 === "1time"
Answer
Answer: A, B, C