Web Dev Exam 2

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/124

flashcard set

Earn XP

Description and Tags

Chapters 3-4

Last updated 1:23 AM on 3/31/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

125 Terms

1
New cards

Which of the following coordinate values is used to define polygonal hotspots for an image?

-coords=”x1, y1, x2, y2…”

-coords=”0, 0, width, height”

-coords=”left, top, right, bottom”

-coords"=”x, y, radius”

coords=”x1, y1, x2, y2…”

2
New cards

Some designers propose the use of ____ in which all measurements are expressed relative to the default font size using the em unit.

-liquid layouts

-fixed layouts

-fluid layouts

-elastic layouts

elastic layouts

3
New cards

Which of the following styles is used to specify the type of tiling to be applied to a background image, or even to turn off tiling?

-background-repeat: type;

-background-image: url(url);

-background-attachment: type;

-background-clip: type;

-background-repeat: type;

4
New cards

Web page layouts fall into three general categories: fixed, fluid, and elastic.

True

5
New cards

To round off any of the four corners of a border, the ____ property should be applied.

-border-width

-border-radius

-border-style

-border-image

border-radius

6
New cards

The sizing keyword cover tells the browser to automatically set the width or height value based on the dimensions of the original image.

False

7
New cards

A _____ sets the width of page elements as a percent of the available screen width.

-fixed layout

-standard layout

-fluid layout

-stationary layout

fluid layout

8
New cards

One challenge of layout is that the document will be viewed on many different devices with the same screen resolution.

False

9
New cards

Shadows can be added to any block element in a web page by using the text-shadow property.

False

10
New cards

To create a drop cap, one can increase the font size of an element’s ___ and float it on the left margin.

-first line

-hyperlink

-first letter

-ridge

first letter

11
New cards

Which of the following statements is true of outline styles?

-An outline does not surround an entire element

-There are separate outline styles for the left, right, top and bottom edge of an object

-An outline adds values to the width and height of an object

-All of the outline styles properties can be combined into the outline shorthand property

All of the outline styles properties can be combined into the outline shorthand property

12
New cards

The radii of individual corners are equal to the radii of hypothetical circles placed at the corners of a box with the arcs of the circles defining the rounded circles.

True

13
New cards

Which of the following properties are useful when a web designer wants to use CSS to center an entire layout within the web page in both the horizontal and vertical directions?

-align-items: center;

justify-items: center;

-align-self: center;

justify-self: center';

-align-content: space-around;

justify-content: space-around;

-align-content: center;

justify-content: center;

align-content: center;

justify-content: center;

14
New cards

Identify a true statement about grids:

-new content can’t be placed within a grid as it will be inconsistent with previously entered information

-grids slow down the development process for establishing systematic framework for a page layout

-Grids add order to the presentation of page content without adding any visual rhythm

-A well-designed grid is more easily accessible for users with disabilities and special needs

A well-designed grid is more easily accessible for users with disabilities and special needs

15
New cards

The sizing keyword auto tells the browser to resize and image to cover all the element background while still retaining the image proportions.

False

16
New cards

Which of the following can be used to express style in the outline-style property outline-style: style;

-thin

-thick

-ridge

-medium

ridge

17
New cards

Identify a CSS3 2D transform function that moves an object to the right or left, depending on whether the value provided to it is positive or negative

-matrix(n, n, n, n)

-skew Y(angles)

-translate X(off X)

-translate Y(off Y)

translate X(off X)

18
New cards

Whether an element is displayed as a block or as inline depends on the style sheet

True

19
New cards

Multiple shadows can be added to text by including each shadow definition in a comma-separated list

True

20
New cards

Elliptical corners can be created by specifying the ratio of the horizontal radius to the vertical radius using the border-radius style

true

21
New cards

A linear gradient is a color gradient that starts form a central point and proceeds outward in a series of concentric circles

False

22
New cards

Identify the CSS3 3D transform function that shifts an object off X pixels horizontally, off Y pixels vertically, and off Z pixels along the z-axis

-translate3d (off X, off Y, off Z)

-perspective (p)

-rotate3d(off X, off Y, off Z, angle)

-scale3d (off X, off Y, off Z)

translate3d (off X, off Y, off Z)

23
New cards

Identify the style that should be applied to remove clipping complete from an element

-clip: none

-clip: hidden

-clip: left

-clip: auto

clip: auto

24
New cards

Tablet layouts are based on grids of ____ columns

-4 to 12

-1 to 3

-0

-12 or more

4 to 12

25
New cards

Which of the following CSS 3 filters applies transparence to an image?

-blur

-invert

-grayscale

-opacity

opacity

26
New cards

Which of the following style rules is used to draw a 1px red dotted line around every element on a web page?

-*{outline: 1px dotted red;}

-*{outline-style: 1px dotted red;}

-*{outline-style= “1px dotted red”}

-*{outline: 1px, red, dotted;}

*{outline: 1px dotted red;}

27
New cards

Even if the background images are hidden, the tiling process continues behind the page body

True

28
New cards

By default, an element’s background is defined to extend only through the padding space and not to include the border space

True

29
New cards

Each hotspot within the map element is defined using the ___ element

-header

-article

-space

-area

area

30
New cards

if a single value is specified in the background-position property, the browser applies that value to both the horizontal and vertical positions

false

31
New cards

In the radial-gradient function, the default is to place the gradient within the center of a background true or false

true

32
New cards

the size of a background image is smaller than the size stored in the image file

False

33
New cards

Which of the following properties centers the content of a CSS grid cell horizontally and positions it with the bottom edge of the cell?

-align-items: end;

justify-items: center;

-align-items: center;

justify-items: end;

-align-items: end;

justify-items: stretch;

-align-items: bottom;

justify-items: center;

align-items: end;

justify-items: center;

34
New cards

Identify a property that a browser can use to handle excess content

-clip

-article

-overflow

-border

overflow

35
New cards

Identify a true statement about the figcaption element:

-it is the content that will appear within a figure box

-it is a required element

-it is placed either directly before or directly after a figure box’s content

-it is used to mark any page content to make it stand apart from the main content of an article

-it is placed either directly before or directly after a figure box’s content

36
New cards

Slices of different widths or heights can be created by entering the size values in a comma-separated list

false

37
New cards

A radial gradient is a color gradient in which the background color transitions from a starting color to an ending color a along a straight line

false

38
New cards

____ positioning is essentially the same as not using any CSS positioning at all

-static

-relative

-absolute

-elastic

static

39
New cards

Browsers ignore any values specified for the left or top properties under ____ positioning

-absolute

-static

-elastic

-inherited

static

40
New cards

Setting the display style to none hides an element but doesn’t remove it from the page flow; that is, it still occupies the same space in the page

false

41
New cards

The only requirement for a repeating gradient is that a stopping position is required for the first color in the list that is less than the size of the object background

false

42
New cards

The ___ size parameter of the radial-gradient function makes a gradient extend to the nearest background corner

-corner-side

-closest-corner

-side-corner

-farthest-corner

closest-corner

43
New cards

the _____ value of the overflow style keeps an element at a specified size, adding scroll bars only as needed

-scroll

-visible

-auto

-hidden

auto

44
New cards

Identify a grid-based style whose value is a space-separated list of column widths

-grid-template-row

-grid-template-column

-track-list

-inline-list

grid-template-column

45
New cards

The width of the line used in an outline is defined by the outline-style property

false

46
New cards

Which of the following is the default overflow property?

-visible

-hidden

-scroll

-auto

visible

47
New cards

A fluid layout is one in which the size of a web page and the size of the elements within are set regardless of the screen resolution

false

48
New cards

Which of the following properties is use to define the thickness of a specific border?

-border-width: left;

-border-side-width: width;

-border-width: width;

-border-width-style: thick;

border-side-width: width;

49
New cards

Ken has built a website for his assignment. He has created a blue background image for each link that appears on the site. Also each link appears in green without underlines. Which of the following styles has Ken most likely used to remove the underline from links?

-text-format

-text-decoration

-text-align

-text-font

text-decoration

50
New cards

The ____ value of the overflow style keeps the element at a specified height and width, but cuts off excess content

-auto

-scroll

-hidden

-visible

hidden

51
New cards

Which of the following is true of transformations in three dimensions?

-positive values along the axes are to the right, down, and away from a reader

-positive values are along the axes are to the left, up, and away from a reader

-negative values along the axes are to the right, down, and toward a reader

-negative values along the axes are to the left, up, and away from a reader

negative values along the axes are to the right, down, and toward a reader

52
New cards

A value of auto for the overflow property instructs browsers to increase the height of an element to fit the overflow content

false

53
New cards

If an object within a browser window has to be fixed so that it doesn’t scroll, the web designer can set its position property to fixed

true

54
New cards

Which of the following background-attachment properties is similar to scroll, but is used for elements, such as scroll boxes, to allow the element background to scroll along with the content within a box?

-space

-round

-local

-fixed

local

55
New cards

The ____ property allows one to define a rectangular region through which an element’s content can be viewed

-crop

-static

-auto

-clip

clip

56
New cards

Once a CSS grid is established, a specific element within a ____ is placed at the intersection of a specified row and column

-stack

-grid cell

-sibling element

-track-list

grid cell

57
New cards

The width property of the ____ model is based on the sum of the content, padding, and border spaces and any space taken up by the padding and border is subtracted from space given to the content

-border box

-padding box

-content box

-margin box

border box

58
New cards

the ___ value of the display style removes an element from a rendered page

-null

-none

-empty

-hide

none

59
New cards

The z-index property stacks overlapping objects with the highest z-index value on top of the others

true

60
New cards

Identify the syntax of the transform property

-transform: effect(params);

-transform: horizontal vertical;

-transform: radius;

-transform: size shape at position;

ransform: effect(params);

61
New cards

Centering an element vertically within a parent element is easily accomplished as the height of the parent element is defined by a value true or false

false

62
New cards

Within the CSS grid model, gridlines are numbered___

-starting with 0 and increasing in value down and across the grid

-so that the first gridline is assigned a value of 1 and the last is assigned a value of -1

-starting with 1 at the bottom-right corner for positive values

-horizontally but not vertically

so that the first gridline is assigned a value of 1 and the last is assigned a value of -1

63
New cards
64
New cards

The default direction for a linear color gradient is horizontal, starting from the left of an object and moving to the bottom true or false

false

65
New cards

A ___ is one in which the size of the web page and the size of its elements are set regardless of the screen resolution

-fluid layout

-fixed layout

-liquid layout

-stationary layout

fixed layout

66
New cards

Identify the property that can be used to change the definition of an element’s background

-background-repeat: type;

-background-image: url(url);

-background-attachment: type;

-background-clip: type;

background-clip: type;

67
New cards

Identify the option that defines how positions are measured on the background in the following background property: background: color url(url) position / size repeat attachment

-size

-origin

-clip

-attachment

origin

68
New cards

Rhythm is the ability to combine different design elements into a cohesive whole

false

69
New cards

When defining the number and size of grid columns, you can use the keyword___ to allow the column width to be automatically set by the browser

-thin

-thick

-auto-fill

-auto

auto

70
New cards

To change the shadow size, the ___ parameter must be added to the box-shadow property, specifying the size of the shadow relative to the size of the object

-round

-space

-stretch

-spread

spread

71
New cards

Which of the following defines the default hotspot for an image?

-coords=”x1, y1, x2, y2,…”

-coords=”0, 0, width, height”

-coords=”left, top, right, bottom”

-coords=”x, y, radius”

-coords=”0, 0, width, height”

72
New cards

Which of the following shape values represents the remaining area of an inline image not covered by any hotspots

-default

-circle

-rect

-poly

default

73
New cards

Identify the default type for the background-repeat style

-no-repeat

-repeat

-repeat-x

-repeat-y

repeat

74
New cards

When parameters of the radial-gradient function are omitted, they take their default values

true

75
New cards

Stacking an element takes that element out of the normal flow of the document and positions it along the left or right edge of its containing element

true

76
New cards

In the opacity property, if the value is 1, the object is completely transparent

false

77
New cards

When a rectangular region is defined using an approrpiate style, which value matches the specified edge of the clipping region to the edge of the parent element

-right

-default

-auto

-left

auto

78
New cards

A(n)___supersedes a browser’s default styles and provides a consistent starting point for page design

-elastic layout

-content box

-fixed grid

-reset style sheet

reset style sheet

79
New cards

box shadows can only be placed outside an element

false

80
New cards

Relative positioning places an element at specific coordinates either in the page or within a container element

false

81
New cards

Identify the option that specifies whether an image scrolls with the content or is fixed in the following background property: background: color url(url) position / size repeat attachment origin clip;

-position

-origin

-clip

-attachment

attachment

82
New cards

____, a principle of design, is the repetition or alteration of a design in order to provide a sense of movement, flow, and progress

-unity

-balance

-rhythm

-emphasis

rhythm

83
New cards

The open-space property defines how the browsers should handle white space in a rendered document

false

84
New cards

Fractional units are often combined with absolute units to create grid layouts that are both fixed and flexible

true

85
New cards

Tiling occurs when a browser loads a background image and then repeats the image in both the vertical and horizontal directions until the entire background is filled

true

86
New cards

the ___ unit can be thought of as a share of available space

-wbr

-em

-fr

-grid-template

fr

87
New cards

Identify the default clear value that allows an element to be displayed alongside any floated objects

-none

-left

-right

-middle

none

88
New cards

Client-side image maps are easier to create but rely on a connection to the server in order to run true or false

false

89
New cards

Clipping can only be applied when an object is placed using ____ positioning

-absolute

-static

-relative

-fixed

absolute

90
New cards

The Yacht club’s website contains a picture of the yacht club room along with the yacht club rules on the left. On the right side is a list of upcoming events, the company logo, and the yacht club teacher training dates, The web designer needs some help with CSS to make sure the pages display correctly. Which display value would work best to prevent the pictures from displaying when the web page loads?

-inherit

-run-in

-block

-none

none

91
New cards

Which properties will extend a grid item so that it covers multiple rows and columns, specifically the area from row gridlines 3 to 5 and from column gridlines 1-3?

-grid-row 3/5;

grid-column: 1/3;

-grid-row 2/4;

grid-column: 4;

-grid-column-start 3;

grid-column-end: 5;

-grid-column-start-end 1/3;

grid-column-start-end: 3/5;

-grid-row 3/5;

grid-column: 1/3;

92
New cards

Which expression extends a grid item across an entire CSS grid row from the first gridline to the last?

-grid-row: 1/-1;

-grid-row: -1/1;

-grid-column: 1/-1;

-grid-column: -1/1;

grid-row: 1/-1;

93
New cards

A final way to alter an object is through a CSS ___

-filter

-box model

-border property
-visual design style

filter

94
New cards

When a CSS element is displayed as a grid, the direct child elements nested within it___

-remain outside of the grid structure

-are considered block-level elements

-can be floated, whereas the entire grid cannot be

-become grid items

become grid items

95
New cards

The background-position property is only useful when non-tiled images because a tiled image fills the background and it usually doesn’t matter where the tiling starts

true

96
New cards

All block elements, like the body element, have a default width of___

-50%

-150%

10%

-100%

100%

97
New cards

Identify the property that is used to apply a border image

-border-image: horizontal/vertical;

-border-image: style;

-border-image-radius: radius;

-border-image: url(url) slice repeat;

border-image: url(url) slice repeat;

98
New cards

Identify the use of the inset keyword used in the box-shadow property

-it is used to mention the shadow color

-it is used to measure the distances of the shadow from the text in horizontal and vertical directions

-it is used to define the amount by which the shadow is stretched

-it is used to create an interior shadow

it is used to create an interior shadow

99
New cards

There is no limit to the number of hotspots one can add to an image map

true

100
New cards

An element with the display type value ____ is displayed as a block unless its next sibling is also a block, in which case, it is displayed inline, combining the two blocks into one

-block

-run-in

-none

-inline

run-in

Explore top notes

note
6.5 Economic Imperialism
Updated 1141d ago
0.0(0)
note
Unit 7: The Gilded Age
Updated 693d ago
0.0(0)
note
Chapter 20: Questioned Documents
Updated 1090d ago
0.0(0)
note
4.2 Pyruvate Oxidation
Updated 1158d ago
0.0(0)
note
2023 Ap Hug Exam
Updated 1062d ago
0.0(0)
note
Seismology and Rebound Theory
Updated 1275d ago
0.0(0)
note
6.5 Economic Imperialism
Updated 1141d ago
0.0(0)
note
Unit 7: The Gilded Age
Updated 693d ago
0.0(0)
note
Chapter 20: Questioned Documents
Updated 1090d ago
0.0(0)
note
4.2 Pyruvate Oxidation
Updated 1158d ago
0.0(0)
note
2023 Ap Hug Exam
Updated 1062d ago
0.0(0)
note
Seismology and Rebound Theory
Updated 1275d ago
0.0(0)

Explore top flashcards

flashcards
Destination B2 - Unit 2
117
Updated 1251d ago
0.0(0)
flashcards
Week 6: Victim Participation
35
Updated 1198d ago
0.0(0)
flashcards
Purnell Model
21
Updated 1142d ago
0.0(0)
flashcards
APHG Chapter 3 Vocab
23
Updated 912d ago
0.0(0)
flashcards
Omurgasız lab
74
Updated 106d ago
0.0(0)
flashcards
GCSE MUSIC - Release
52
Updated 1233d ago
0.0(0)
flashcards
Destination B2 - Unit 2
117
Updated 1251d ago
0.0(0)
flashcards
Week 6: Victim Participation
35
Updated 1198d ago
0.0(0)
flashcards
Purnell Model
21
Updated 1142d ago
0.0(0)
flashcards
APHG Chapter 3 Vocab
23
Updated 912d ago
0.0(0)
flashcards
Omurgasız lab
74
Updated 106d ago
0.0(0)
flashcards
GCSE MUSIC - Release
52
Updated 1233d ago
0.0(0)