WGU D276 Web Dev Foundations Questions with Correct Answers 100% Solved(Updated)

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

1/257

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 3:03 AM on 6/11/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

258 Terms

1
New cards

FTP

What protocol is a way to transfer files over the internet?

2
New cards

WWW

What was developed by Tim Berners-Lee in the early 1990s?

3
New cards

Webpage

A document that is viewed in a web browser.

4
New cards

HTML

standard markup language for web documents. Hypertext is text that has links to other text (and today to images, videos, and more). Document markup is special markings in the document that provide additional information about links, formatting, and images.

5
New cards

Early 1990s

The period when the web was first developed.

6
New cards

Website

Collection of related webpages.

7
New cards

Web Server

A program that serves webpages to browsers.

8
New cards

HTTP

the protocol for transferring files among computer via the web. Runs over TCP/IP and governs communications between web browsers and web servers.

9
New cards

Browser

A program for viewing webpages.

10
New cards

W3C

the international standards organization that traditionally has controlled a number of web standards, including HTML.

11
New cards

WHATWG

an organization that develops a variety of web standards and whose members include the major browser vendors.

12
New cards

HTML Living Standard

Produced by the WHATWG. A continually evolving standard without version numbers that replaces HTML5.

13
New cards

1945

What year was this: The idea for generating links from within one document to other documents is described.

14
New cards

1965

The term HyperText invented in what year?

15
New cards

1990

First web browser is created (year)

16
New cards

1994

The World Wide Consortium (W3C) created. (year)

17
New cards

1995

HTML 2.0 standard published. (year)

18
New cards

2014

HTML5 standard published. (year)

19
New cards

WHATWG

who controls the HTML standard?

20
New cards

Separation of duties

Over time, a move to separate document structure (HTML), document presentation (CSS), and webpage interaction with the user (JavaScript).

21
New cards

Packet

Information sent on the Internet that contains To and From IP addresses, the information to communicate, and other configuration information.

22
New cards

IP Address

IP (Internet Protocol) that is a computer's unique address on the Internet. A typical IP address is 32 bits, divided into four 8-bit groups, each group often written as a decimal number.

23
New cards

IPv4

The original Internet Protocol with 32-bit addresses. Can represent about 4 billion unique addresses.

24
New cards

IPv6

A new version of Internet Protocol that uses 128-bit addresses.

25
New cards

DNS

Domain Name Server, used to convert domain names to IP addresses.

26
New cards

Root Servers

Thirteen main DNS servers that exist in the world.

27
New cards

Domain Name Registrar

Services that allow anyone to register an unused domain name.

28
New cards

Domain Name

a name for an IP address, such as the name wikipedia.org for IP address 198.35.26.96.

29
New cards

TLD

Top-level Domains. Examples include .com, .net, .org, .edu, and .gov.

30
New cards

ccTLD

Country Code Top-Level Domain. Examples include .uk (United Kingdom), .us (United States), and .ru (Russia).

31
New cards

SLD

Second-Level Domain, such as 'wikipedia' in wikipedia.org.

32
New cards

TLD

Third-Level Domain, such as 'www' in www.stanford.edu.

33
New cards

URL

Uniform Resource Locator is the location of a web resource, such as.

34
New cards

Scheme

Characters at the beginning of a URL followed by a colon (:) or a colon and double slashes (://). Common schemes include http, https, mailto, and file.

35
New cards

Hostname

The complete domain name following the scheme in a URL.

36
New cards

Path

The characters to the right of the hostname in a URL.

37
New cards

Query String

Optional characters to the right of the question mark (?) in a URL that provide data for the web server.

38
New cards

Fragment

Optional characters at the end of a URL that with a hash character (#) and refer to a certain location within a webpage.

39
New cards

404

The status code that a web server returns to a browser when a requested webpage is not found.

40
New cards

Linkrot

When content is removed from the web and the URLs that used to point to the content now return a 404 (not found) status code.

41
New cards

TCP/IP

Transmission Control Protocol / Internet Protocol, a protocol suite that governs how data packets are transferred over the Internet from one machine to another.

42
New cards

HTTP Request

A message sent from the web browser to the web server.

43
New cards

HTTP Response

A message sent from the web server back to the web browser in response to an HTTP request.

44
New cards

Content-Length

Number of bytes in the HTTP response's message body.

45
New cards

Content-Type

Media type of the HTTP response's message body.

46
New cards

Date

Datetime the HTTP response was generated by the web server.

47
New cards

Last-Modified

Datetime the requested resource was last modified on the web server.

48
New cards

Server

Identifies the web server software that generated the HTTP response.

49
New cards

Host

The domain name for the HTTP requested path.

50
New cards

User-Agent

Identifies the browser making the HTTP request.

51
New cards

IANA

Internet Assigned Numbers Authority - a standards organization that manages various internet numbers and symbols, like global IP address allocation, root zone management, and media types.

52
New cards

URL Shortening

A technique to create shorter URLs that redirect to longer URLs.

53
New cards

Browser Cache

An area on a computer's disk where web content can be stored by the web browser for quick retrieval later.

54
New cards

ETag

Entity Tag, an identifier for a specific version of a web resource.

55
New cards

HTTPS

Encrypts HTTP traffic between a browser and web server so a network sniffer cannot intercept sensitive information in the HTTP traffic like passwords, credit card numbers, financial transactions, etc.

56
New cards

TLS

Transport Layer Security - uses asymmetric public keys to encrypt data between the browser and web server.

57
New cards

Mobile First

A web development approach that advocates first creating a reduced-feature version of a website for mobile users. Then, the developer creates a full-featured website for visitors using desktop computers.

58
New cards

Screen size

Physical dimension in pixels of a device's screen.

59
New cards

Affordances

Visual clues that guide the user in figuring out how to use an app.

60
New cards

Responsive web design

A web design approach that creates webpages that automatically move and resize parts depending on the display size and orientation.

61
New cards

IoT

Internet of Things - the global collection of communicating devices that sense and control technology on behalf of humans.

62
New cards

Web Accessibility

The ability of users with disabilities to access and use a webpage with reasonable effort.

63
New cards

Cognitive computing

The use of artificial intelligence (AI) techniques and access to vast amounts of data to simulate human problem solving in complex situations with ambiguity, changing data, and even conflicting information.

64
New cards

Separation of concerns

The design principle of breaking up web content using distinct languages and documents that overlap as little as possible.

65
New cards

HTML element

A single HTML structure that is represented with HTML tags.

66
New cards

Tag

A descriptive name surround by < and > characters that the web browser uses to display content.

67
New cards

Link

A clickable item that usually causes the web browser to open another webpage when clicked.

68
New cards

CSS

Cascading Style Sheets - A textual language for describing how a webpage is styled for visual presentation.

69
New cards

CSS rule

Specifies styling properties for specific HTML elements.

70
New cards

JavaScript

A programming language that runs in a browser, enabling webpages supporting actions like responding to a button click.

71
New cards

Function

A named group of statements that can be run by referring to that name.

72
New cards

Variable

Stores a value or a link to an element of a webpage.

73
New cards

Opening Tag

Indicates the starting point in the document where an HTML tag takes effect.

74
New cards

Closing Tag

Indicates the ending point in the document where the HTML tag stops having an effect.

75
New cards

Doctype Declaration

<!DOCTYPE html> - instructs the web browser about what type of document follows.

76
New cards

...

This element's opening and closing tags enclose everything but the Doctype Declaration.

77
New cards

Specifies metadata, which is data that describes the document's data.

78
New cards

This element's opening and closing tags enclose the name of the HTML document.

79
New cards

...

This element's opening and closing tags enclose all elements and content to be rendered in the browser.

80
New cards

Attribute

Provides additional information about the HTML element and is included only in the opening element tag.

81
New cards

...

This element's tags contain the document title, document metadata, and various other elements that are typically not displayed in the webpage.

82
New cards

Void Element

An element that only needs an opening tag.

83
New cards

Chrome DevTools

A collection of web development tools that are built into the desktop Chrome browser.

84
New cards

HTML Validator

Checks that an HTML document conforms to the standard.

85
New cards

Deprecated

A feature that is part of a language that is officially discouraged because newer or better features exist, or because the feature is no longer considered safe.

86
New cards

...

A paragraph element; the basic unit of text in an HTML document.

87
New cards

Whitespace

An unprinted character such as the spaces between words and lines of text.

88
New cards

<br>

The Line Break element; creates a line break in a paragraph, such that content after the line break appears on a new line.

89
New cards

<section>...</section>

An HTML5 element that encapsulates a collection of related content.

90
New cards

<h1>...</h1>

A HTML heading element that typically provides a title for each section. Values range from h1 through h6.

91
New cards

<!-- ... -->

HTML comments; a portion of an HTML document that is not displayed by the browser.

92
New cards

<ul>...</ul>

Unordered List element; a collection of items, usually indented and shown using bullets.

93
New cards

<li>...</li>

The List Item element; surrounds each item in a list.

94
New cards

Sequenced Collection

A sequenced collection of items, usually indented and shown using numbers or letters.

95
New cards

list-style-type

A CSS property that provides the ability to change the bullet used in an unordered list and offers more numbering options in an ordered list.

96
New cards

Nested List

A list within a list item of another list.

97
New cards

...

An HTML structure that allows data to be organized in rows and columns.

98
New cards

Cell

A location within an HTML table structure at a specific row and column.

99
New cards

...

An HTML table row element; contains all the cells in a row.

100
New cards

<th>...</th>

An HTML table header; creates a cell whose content is centered and bold. Typically used for column and row headings.