Loading

Quipoin Menu

Learn • Practice • Grow

html / Block-level elements
mcq
Direction: Choose the correct option

Q1.

What is a block-level element in HTML?
A. An element that must be empty
B. An element that stays inline with text
C. An element that starts on a new line and takes full width
D. An element that cannot contain other elements
Direction: Choose the correct option

Q2.

Which of the following is a block-level element?
A. <span>
B. <a>
C. <div>
D. <img>
Direction: Choose the correct option

Q3.

<div>First</div>
<div>Second</div>
How will these divs appear in the browser?
A. Overlapping
B. On the same line
C. On separate lines
D. Not visible
Direction: Choose the correct option

Q4.

Which CSS property can change an element's default display behavior?
A. visibility
B. float
C. display
D. position
Direction: Choose the correct option

Q5.

Which of these is NOT a block-level element?
A. &lt;p&gt;
B. &lt;span&gt;
C. &lt;ul&gt;
D. &lt;h1&gt;