GIAC
GSNA · Question #149
Which of the following tags will create two vertical frames, as given in the image below, where the left frame is half as wide as the right one?
The correct answer is E. <FRAMESET COLS = "*, 2*">. <FRAMESET> tag specifies a frameset used to organize multiple frames and nested framesets in an HTML document. It defines the location, size, and orientation of frames. An HTML document can either contain a <FRAMESET> tag or a <BODY> tag. The COLS attribute of the <FRAMESET>…
Database & Application Auditing
Question
Which of the following tags will create two vertical frames, as given in the image below, where the left frame is half as wide as the right one?
Exhibit
Options
- A<FRAMESET ROWS = "*, *">
- B<FRAMESET ROWS = "1, 2">
- C<FRAMESET COLS = "*, *">
- D<FRAMESET ROWS = "*, 2*">
- E<FRAMESET COLS = "*, 2*">
How the community answered
(65 responses)- A12% (8)
- B6% (4)
- C2% (1)
- D3% (2)
- E77% (50)
Explanation
<FRAMESET> tag specifies a frameset used to organize multiple frames and nested framesets in an HTML document. It defines the location, size, and orientation of frames. An HTML document can either contain a <FRAMESET> tag or a <BODY> tag. The COLS attribute of the <FRAMESET> tag defines the width of the vertical frames. The ROWS attribute defines the height of the horizontal frames. The code in answer option E will create two identical frames. The left frame will be half as wide as the right frame because of the relative size attributes given in the <FRAMESET> tag, i.e., <FRAMESET COLS = "*, 2*">.Topics
#HTML frames#FRAMESET#column layout#web markup
Community Discussion
No community discussion yet for this question.
