In: Computer Science
Each choice has a radio button, or option button, which typically appears as an open circle.
True
False
Critical Thinking Questions
Case 8-2
Jerema, the CEO of a leading garment manufacturing outlet, has
assigned her assistant, Ann, the task of utilizing tables and its
styling features to create an organized information store that
would contain all of Jerema's meeting schedules. Ann creates a
table that has four rows and three columns that lists all the
required information.
Apart from the table on meeting schedules, Ann has been asked by Jerema to incorporate financial updates as well. Since the financial data contains numeric information, styling the data for a mobile viewport might be a problem where a user may find it difficult to read the data. To overcome this problem, Ann can consider converting the table to a _____ for the mobile viewport.
a. |
map |
|
b. |
matrix |
|
c. |
grid |
|
d. |
chart |
QUESTION 7
Consider the following code:
<table><!-- Start Table -->
<caption>Group Fitness Class Schedule</caption>
<tr>
<th>Class</th>
<th>Days</th>
<th>Times</th>
<th>Instructor</th>
<th>Room</th>
</tr>
Identify the number of rows in the table.
a. |
2 |
|
b. |
1 |
|
c. |
5 |
|
d. |
Undefined |
QUESTION 7
Consider the following code:
<table><!-- Start Table -->
<caption>Group Fitness Class Schedule</caption>
<tr>
<th>Class</th>
<th>Days</th>
<th>Times</th>
<th>Instructor</th>
<th>Room</th>
</tr>
Identify the number of rows in the table.
Answer: 1
Explanation:
<tr>
tag defines a row in an HTML
table.Please Note: I have answered one question, according to Chegg Answering Guidelines. Please Re-Post for receiving answers on the other questions
If you have any doubts, leave a comment below and I'll help you out.