Which of the following php statement/statements will store 111 in variable num?<br>1. int $num = 111;<br>2. int mum = 111;<br>3. $num = 111;<br>4. 111 = $num;

Correct Answer: Only 3
You need not specify the datatype in php.