Which Of The Following Php Statementstatements Will Store 111 #8
Which of the following PHP statement/statements will store 111 in variable num?</p> <pre><code class="language-php"> i) int $num = 111; ii) int mum = 111; iii) $num = 111; iv) 111 = $num;</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs107 PHP: Hypertext Preprocessor. It can also be found in gs gs107 PHP Basics - PHP Basics - Quiz No.1.
Which of the following PHP statement/statements will store 111 in variable num?
i) int $num = 111; ii) int mum = 111; iii) $num = 111; iv) 111 = $num;
Both i) and ii)
i), ii), iii) and iv)
Only iii)
Only i)