Question: You work as a Web Developer for Remote Inc. What will be the output when you try to run the script below?<?php
$b = false;
if($b = true)
print("true");
else
print("false");
?>
A
B
C
D
false
B
true
C
The script will throw an error message.
D
true false
Note: Not available