Multiple choice technology web technology

Php supports all four different ways of delimiting. In this context identify the false statement

  1. You can use any of the delimiting style

  2. You can use different delimiting styles in same page

  3. You can use any delimiting style but must use a single style consistently for a page

  4. Variables declared in previous blocks are remenbered on later blocks too!

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

PHP allows mixing different delimiter styles in the same page, so the statement requiring a single consistent style is false. Option A claims you can use any style (true). Option B claims you can mix styles in same page (true). Option D is true - variables persist across PHP blocks on the same page. Only C is false.