Multiple choice technology web technology

What is the HTML feature that divides a web page into two or more scrollable parts?

  1. Split Page

  2. Frame

  3. Form

  4. Table

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

Frames are the HTML feature that allows a web page to be divided into multiple, independently scrollable sections. Each frame can display different content or web pages. While now deprecated in HTML5 in favor of iframes and CSS layouts, frames were specifically designed for this purpose. Forms collect user input, and tables display tabular data.

AI explanation

To answer this question, you need to understand HTML features and their functionalities. Let's go through each option to understand why it is correct or incorrect:

Option A) Split Page - This option is incorrect because there is no HTML feature called "Split Page" that divides a web page into scrollable parts.

Option B) Frame - This option is correct. HTML Frames allow you to divide a web page into multiple sections, each with its own scrollable area. Each frame can display a separate HTML document, and the user can scroll within each frame independently.

Option C) Form - This option is incorrect. HTML Forms are used to collect user input, such as text, checkboxes, and buttons. They do not divide a web page into scrollable parts.

Option D) Table - This option is incorrect. HTML Tables are used to organize data into rows and columns. While you can add scrollbars to a table using CSS, it does not inherently divide a web page into scrollable parts.

The correct answer is B) Frame. This option is correct because HTML Frames allow you to divide a web page into multiple scrollable parts by displaying separate HTML documents within each frame.