Text that you wish to appear on the screen while your program runs mus...
Answer:To display text on the screen while a program is running, you can use HTML tags. Specifically, the text should be placed inside `` tags.
Here's the breakdown of the provided options:
A: Brackets- Brackets are not used to display text on the screen while a program is running. They are used for other purposes, such as enclosing elements in JavaScript or indicating an array in programming languages like Python.
B: Braces- Braces are also not used to display text on the screen while a program is running. They are commonly used in programming languages for various purposes, such as defining blocks of code or declaring objects.
C: Slashes- Slashes are not used to display text on the screen while a program is running either. They are typically used in programming languages for escaping characters or indicating regular expressions.
D: Quotes- Quotes, specifically the double quotation marks, are used to enclose text that you want to appear on the screen while a program is running. The correct answer is D: `
“Quotes”
`. The `“` and `”` are HTML entities for the left and right double quotation marks, respectively.
In conclusion, the correct choice for displaying text on the screen while a program is running is option D, using the `` tag with the double quotation marks inside.