Javascript Developer JSE 40 01 · Free Practice Question Easy
Question 23
Q403 - Basics
HTML is:
-
A
a network protocol.
-
B
the name of one of the browsers.
-
C
a scripting language to support mathematical calculations.
-
D
a language for describing the structure of a web page.
Reveal correct answer
Correct answer: D
Explanation
Topic: HTML
Try it yourself:
- <!DOCTYPE html>
- <html>
- <head>
- <title>Q403</title>
- <meta charset="UTF-8">
- </head>
- <body>
- <h1>I am a minimal HTML page.</h1>
- </body>
- </html>
Explanation:
The HyperText Markup Language, or HTML is the standard markup language
for documents designed to be displayed in a web browser.
https://en.wikipedia.org/wiki/HTML
Q403 (Please refer to this number, if you want to write me about this question.)
A. HTML is not a network protocol. Network protocols, such as HTTP and TCP/IP, are used for communication between devices over a network, while HTML is specifically used for structuring web content.
B. HTML is not the name of a browser. Browsers, such as Chrome, Firefox, Safari, and Edge, are applications that render HTML, CSS, and JavaScript to display web pages to users.
C. HTML is not a scripting language for mathematical calculations. While HTML can be used in conjunction with JavaScript to perform calculations on a web page, HTML itself is primarily focused on defining the structure and content of a webpage.
D. HTML is a markup language used for structuring content on a web page. It defines the structure and layout of the elements on a webpage, such as headings, paragraphs, images, and links.
Discussion
Think the marked answer is wrong, or have a better explanation? Share it below — comments appear after review.
