Test 1 Flashcards
What Operating System must be installed for you to use the WISA web development stack?
Windows OS
What HTTP server response code indicates success of some kind
2xx
Which form of data transmission is referred to as “one to all”
Broadcast
What does the character represent in the acronym URI?
Identifier
What is the name of the first programmable computer?
ENIAC
What was the first personal computer?
Programma
What was the first programmable electronic computing machine
ENIAC
First earth orbit artificial satellight
Sputnik
First packet switching network
ARPANET
What where the first two original applications available on the ARPARNET
File transfer protocol(FTP)
electric mail
refers to the means by which Internet attached computers exchange files over a TCP/ IP or UDP / IP based network
File transfer
What are the file application layer protocols?
- File transfer protocol (FTP)
- Secure copy protocol (SCP)
- HyperText Transfer protocol (HTTP)
Methods to transmit files from a source to a destination:
- Unicast
- Broadcast
- Multicast
- Anycast
is a “Point to Point” file transmission that often uses TCP/IP It is the most common file transfer method
Unicast
What is the most common file transfer method?
Unicast
During a __________ transmission, the client’s and server’s IP addresses are used to transmit packets
unicast
is “Point to All-Points” file transmission and it often uses UDP
Broadcast
is a “ Point to Multipoint” file transmission and it often uses UDP
Multicast
There is one sender and one or more receivers during a ____________ transmission
Only those receivers that “signify” that they want to __________ the file will __________ the file
multicast
receive/receive
During a multicast transmission , those receivers who wish to receive multicast packets sent by the sender monitor a special multicast:
(Class D) IP address
__________ exhibits a one -to -many association between network addresses and network endpoints
anycast
In any cast, each _________ endpoint identifies a set of possible ___________ endpoints , but only one of them is chosen at any given time to receive information from any given sender
source
destination
In anycast all destinations have the same:
IPv6 address
Is a network of autonomous networks
The internet
On the internet, each autonomous __________, or domain, is controlled by a person, company, institution, or organization
network
An autonomous network is connected to other autonomous networks via an:
Internet Service Provider
The internet is comprised of _____________ computing devices.
Which includes:
Trillions
-computers
-routers
-switches
An internet attached device has two address:
Hardware address(48 bits)
IP address
Some Internet attached devices are assigned English-like names
Fully Qualified Domain Names (FQDM)
A _______ is converted into an IP address the Domain Name System ( DNS) function
FQDM
_________ computers request services from _________ computers
Client
Server
A service request may include:
-retrieve data
-store data
-print data
A Client needs three (3) pieces of information in order to make a request of a Server
- Server’s IP address
- Communication Protocol
- Resource
A _____________________, or protocol, is simply a set of rules that govern how a client and server communicate
Communication Protocol
Examples of application layer protocols include:
HTTP (HyperText Transfer Protocol)
FTP (File Transfer Protocol)
SCP (Secure Copy Protocol)
NTP (Network Time Protocol)
A Uniform Resource Locator (URL ) is a string characters that defines uniquely _________ a resource physically resides within the Internet
where
A Uniform Resource Identifier (URI) is a string of characters used to generically __________ a resource
identify
URLs and URIs
Not all ______ are ______
But all ______ are ______
URLs/URIs
URIs/URLs
HTTP is a ___________ protocol that utilizes a client/server model to transfer files between two computers
unicast
The HTTP Process
The client _________ the message , ________ the message, and ________ the results in the web browser window
receives
parses
displays
HTTP is a __________ protocol in that the server maintains no information about past client requests
stateless
A client sends a ____________ message to the server to request actions be performed on the identified resource by the server
A server sends a ___________ message back to the client to inform them about status of the request
REQUEST
RESPONSE
*GET
-GET should not be used for operations that cause side-effects such as using it for taking actions in web applications
*HEAD
-Like GET but server only returns header information
REQUEST message
*POST
-Submits data to be processed by server -Creates data
*PUT
-Similar to POST, but updates existing data
*DELETE
-Removes data from server
REQUEST Messages
*200 OK
-Success
RESPONSE message
Indicates an informational message only.
Indicates success of some kind. Redirects the client to another URL. Indicates an error on the client’s part. Indicates an error on the server’s part
1XX
2XX
3XX
4XX
5XX
The REQUEST and RESPONSE messages include __________ information
header
The REQUEST message header information informs:
The RESPONSE message header information informs:
the server about the client
the client about the server
LAMP is an acronym for:
- Linux OS
- Apache web server
- MySQL database
- PHP server -side development technology
WISA is an acronym for:
- Windows OS
- ISS web server
- SQL database
- ASP.NET server- side development technology
A document may include words, sentences, and paragraphs.
defines how the document’s content is logically organized and displayed in a browser window.
defines how the document’s content appears in a browser window .
Content
Structure
Format
To create a markup language document an author must use one or both of the following tools:
Text editor
HTML editor
WYSIWYG advantage:
-Easy for the non-programmer to create the content, structure and format of a HTML document.
Like any program, an HTML document must conform to a specific structure
Preamble
Body
HTML defines the syntax that allows authors to create the __________ and ________ of HTML documents
The _________ is left to the author
structure
format
content
All HTML syntax is defined by ________!
Historically , were referred to as ____!
elements
tags
The most common syntax for defining the structure or format associated with content:
Referred to as an “Empty Element”, and contains no content:
Element syntax 1
Element syntax 2
The content between the <p> and </p> tag will displayed as:
Content1 Content2