PHP, Images and SEO Flashcards
What does URI stand for?
Uniform Resource Identifiers
What is the interaction between the web client and web server called?
HTTP - HyperText Transfer Protocol
What does RPC stand for? What is an RPC?
Remote Procedure Call. A series of functions called by the User that send requests to the server, the function is executed on the server and a response is sent back.
Using the URI http://hostname.com:8080/folder/index.html identify four different sections of the URI?
http - the protocol
hostname.com - the server
8080 - the port
/folder/index.html -the request path
What does URL stand for?
Uniform Resource Locators
List the five HTTP verbs.
GET
POST
PUT
PATCH
DELETE
How does one assign variables in php?
$variable_name = variable_value;
Print a variable numbers in PHP?
echo $numbers;
Write a function in C which returns an int that is default valued to 1 if a undefined value is entered.
function functionName($parameter=1):int {
return parameter;
}
What does a get request do?
Passes information via URL.
What is the difference between a URL and a URI?
URI identifies a resource and differentiates it from others by using a name, location, or both.
URL identifies the location only of a unique resource.
So URL is a subset of URI.
When should POST be used instead of GET?
POST should be used for sensitive information, or for large amounts of information.
What does DBMS stand for?
Database management system
Give three advantages of databases.
Efficient data management
Data integrity and security
Querying and reporting
What does RDBMS stand for?
Relational Database management system
What does GNU mean?
General Use - Open source, is a general public licence.
What is a URN?
Uniform Resource Name, identifies a resource permanently but doesn’t provide a location.
What does CMYK stand for?
Cyan, Magenta, Yellow and Black
How many bits are required for true color?
24
Define dithering.
When a browser cannot show a color out of its range so it mixes two colors to produce the missing one.
Define shift.
When a browser cannot show a color out of its range so it shifts the missing color to one similar in the supported set.