Multiple choice php

How do you write "Hello World" in PHP

  1. "Hello World";

  2. echo "Hello World";

  3. Document.Write("Hello World");

  4. response.write("Hello World")

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

The echo statement is the most common way to output text to the browser in PHP. Option 4371 is just a string literal without an output command. 4373 is JavaScript syntax, and 4374 is ASP syntax. PHP requires an explicit command like echo or print to generate output.