Question

1. What is the name of the file that actually stores the directives that control an...

1. What is the name of the file that actually stores the directives that control an Apache servers behavior?

2. Given the HTTP response below, what does the 3 digit status code mean?

HTTP/1.1 200 OK

3. Write the HTML 5 tag that is used to draw graphics, on the fly, via scripting (usually Javascript).

4. Write the CSS property for background-color : red but use the rgb() function.

Homework Answers

Answer #1

1. Configuration file

It is a text file containing Directives that control the configuration of Apache servers.

2. Status Code 200

Status code 200 means OK (Request has succeeded)

This belong to the class 2xx (200-206) which in general indicates that client's request was successfully received, understood, and accepted.

3. <canvas> tag

In HTML, <canvas> tag is used to draw graphics, on the fly, via scripting.

  The <canvas> element is only a container for graphics. We must use a script to actually draw the graphics.

4. {background-color:rgb(255,0,0);} /* Red color */

  The rgb() function define colors using the Red-Green-Blue (RGB) model.

The above rgb() function is used to give red color to the background.

For green use rgb() as, {background-color:rgb(0,255,0);}

  For blue use {background-color:rgb(0,0,255);}

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions