Briefing Zend Knowledge

What is the result of the following code?

What is the result of the following code?
<code>
$a = 1;
$b = “1”;
var_dump($a === $b);
</code>

A.
bool(true

B.
bool(false)

C.
Parser error

D.
NULL