Tutorial Six Quiz - Working with Tables and Columns

Tutorial Six Quiz - Working with Tables and Columns

memorize.aimemorize.ai (lvl 286)
Section 1

Preview this deck

_____ is a single cell that occupies more than one cell row and/or column.

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (47)

Section 1

(47 cards)

_____ is a single cell that occupies more than one cell row and/or column.

Front

Spanning cell

Back

A class attribute can be included by placing a table in the schedule class to distinguish it from other tables that may exist on a website.

Front

True

Back

A table contains five columns where one of the cells in a row spans three columns. Identify the number of table cells that will exist in that row.

Front

​Three

Back

​The style rule border-spacing: 10px; specifies that all borders within a table should be separated by a distance of 10 pixels.

Front

True

Back

​ Identify the first step to create a responsive web table that relies only on CSS.

Front

​Add a text of data labels as attributes of all of the td elements in the table body.

Back

​ The th element is used to mark the data cells.

Front

False

Back

Which of the following is a default value for border-collapse property?

Front

border-collapse: separate;

Back

Luis has created a web page for a textile industry. When viewing the web page on a different computer, Luis notices a difference in the web page layout. So he decided to make changes in the code to make the layout suitable on all computers. ​Luis has created a table to include the definitions of manufacturing tools used in the industry. He wants to add a space between each column cell of the definition for better understanding. Identify a property that Luis should include in the code to fulfill the requirement.

Front

column-gap;

Back

​The style rules applied to an entire web table are the ones with the lowest precedence.

Front

True

Back

​ A web table contains multiple table rows with each row consisting of one or more table cells.

Front

True

Back

Which of the following styles sets the column breaks within paragraphs to leave a minimum of two and three lines at the top and bottom of each column respectively?

Front

article p {break-before: always;

Back

The two types of table cells supported by web tables are _____.

Front

header cells and data cells

Back

A table has one row with four cells and another row with five. After mapping the cells, the table will have five columns.

Front

True

Back

To insert the information of the data-label attribute directly before the data cell value, the _____ property is used.

Front

content

Back

Which of the following HTML structures arranges text in multiple rows and columns?

Front

<table>

Back

In the given figure, identify the row group element Box A.

Front

​tbody

Back

In the given figure, Box A refers to _____. ​

Front

​the second cell in rows two and three that spans seven columns

Back

​Which of the following HTML elements is used to add a row in a table?

Front

<tr>

Back

When two adjacent 1-pixel-wide borders are collapsed together, the width of the resulting border is _____.

Front

1-pixels

Back

​ The given figure is an example of the _____ borders model.

Front

​separate

Back

Andy designed a web page for a product-oriented industry using CSS properties. He used several HTML tags to create the web page. He also used tables to ensure that the data is easily managed. Andy has created a table for product details where the names of the products and prices of the products are the headers of the table. Which of the following style rules should he add to place a border of 10-pixels around the table with a white background?

Front

table.product {background: white; border: 10px; width: 100%;}

Back

Andy designed a web page for a product-oriented industry using CSS properties. He used several HTML tags to create the web page. He also used tables to ensure that the data is easily managed. Which of the following properties must Andy use to set the gap between the borders created by using the border-collapse property?

Front

border-spacing: value;

Back

Which of the following CSS properties is used to align the caption text horizontally?

Front

text-align

Back

​Spanning cells are created by adding div attributes to either td or th element.

Front

False

Back

When a style for a table element is created by setting the font color to red, _____.

Front

the caption text will be displayed in the same color as the previous table

Back

​Identify the three row groups supported by HTML.

Front

thead, tbody, and tfoot

Back

​Only one caption is allowed per web table.

Front

True

Back

A web table is an effective tool for organizing and classifying web page content.

Front

True

Back

While treating an entire definition list as a table, the div elements act as table rows and both the definition term <dt> and the descriptions <dd> act as table cells within that row.

Front

True

Back

Luis has created a web page for a textile industry. When viewing the web page on a different computer, Luis notices a difference in the web page layout. So he decided to make changes in the code to make the layout suitable on all computers. Which of the following properties helps Luis in making the content on the web page more readable by spreading the content into a specific number of columns on a single page?

Front

column-count;

Back

Identify a style property that creates a column size of 200-pixels.

Front

column-width

Back

Identify a true statement to determine the number of columns in a web table.

Front

The number of columns is the number of cells within the table rows.

Back

​ What is the purpose of colspan in <td colspan="7"> ?

Front

It sets each cell to span seven columns within its row.

Back

Identify a property that is used to separate one column from the next using graphic dividing line.

Front

column-rule

Back

​In column-span: span; property, span is either none to prevent spanning or all to enable the content to span across all of the columns.

Front

True

Back

​Once columns are defined using the colgroup and col elements, individual columns can be identified using id and class attributes to apply CSS styles to specific columns.

Front

True

Back

Which of the following is true of row groups that are defined in an HTML table?

Front

A table can contain only one thead and tfoot element but can have numerous tbody elements.

Back

The style rule columns: 250px 4; creates a layout of 4 columns with a minimum width of 250 pixels each.

Front

True

Back

Which of the following table objects has the highest precedence in terms of style?

Front

Table cells

Back

A web table can contain any number of thead and tfoot elements but only one tbody element.

Front

False

Back

Which of the following is an equivalent HTML element for display: table-cell; style?

Front

<th>

Back

Which of the following HTML attributes is used to create a single cell that occupies more than one cell from a series of horizontal cells?

Front

colspan

Back

Which of the following is true of class in the table tag <table class=" "> ?

Front

class is an attribute

Back

The _____ attribute is added to a <td> element to create a cell that spreads across several cells vertically.

Front

rowspan

Back

In the given figure, the items marked Box A and Box B are the _____ respectively.

Front

data cells and column cells

Back

Consider the following code. <colgroup><col span="2" class="Frstcols"/><col id="Lastcol"/><colgroup> How many columns does the <colgroup> element create?

Front

​Three

Back

The columns within the colgroup element are identified by the _____ element.

Front

<colspan="value"/>

Back