click below
click below
Normal Size Small Size show me how
CIS 111
Finals
| Question | Answer |
|---|---|
| Use the _______ attribute on the object tag to indicate the MIME type of the media file | Type |
| The _______ element configures dynamic graphics | canvas |
| Use the _______ attribute on a video tag to display an image that represents the movie | Poster |
| Java can be described as | An Object-oriented programming language |
| In Terms of copyright, Fair Use is determined to be | The use of a copyrighted work for purposes such as criticism, reporting, teaching, scholarship, or research |
| Select the tag below that is recommended by the W3C to add media to a web page | the object tag |
| The Term Ajax stands for | Asynchronous JavaScript and XML |
| The _______ element is a void element that specifies a media file and a MIME type | Source |
| When displaying a Java applet, the browser invokes the _______ to interpret the bytecode into the appropriate machine language | Java Virtual Machine (JVM) |
| A function can _______ a value ton indicate success or failure | return |
| Use the_______ method to write to a web page | document . write() |
| Select the comparison operator to use when testing a condition for equality | == |
| The code to access the contents of an input box named email on a form is | document. forms[0] . email.value |
| A _______ is a term used to describe a select list that allows the user to select an option to load another webpage | Jump Menu |
| The _______ property can set the background color of the document | document . bgcolor |
| The _______ event handler is triggered when the visitor places their mouse on an object | onmouseover |
| How many scripts can be embedded in an XHTML document? | As many as you need |
| In the context of web page interactivity an _______ can be described as an action taken by the user | event |
| The _______ method displays a message to the user and contains one button | alert () |
| The measurement, collection, analysis and reporting of internet data for the purposes of understanding and optimizing web usage is called _______ | Web analytics |
| The first step in submitting oyur website to search engines and search directories is to | prepare your pages for search engines by adding keyword and description meta tags to your pages |
| A _______ is an action that can be performed with an object | Method |
| A _______ is a reusable block of JavaScript statements | Function |
| Select the technology that was developed by a joint effort between Netscape and Sun Microsystems | Javascript |
| Which of the following will assign the value "Smith" to the variable customerName? | customerName="Smith"; |
| A _______ is an attribute or characteristic of an object | Property |
| Select the XHTML below that would associate a label displaying the text "Phone" with the text box named customerPhone | BOTH: label Phone <input type="text" name="customerPhone"> label</label |
| The purpose of the ________ is to configure a label for a fieldset | Legend |
| Choose the HTML tag configure scrolling textbox with the name Feedback 3 rows and 60 chars | text area name="feedback" rows="3" cols="60"> </texta> |
| In HTML 5 ________ form control provides the user with a selectrion of choices along with the option to enter information | datalist |
| Use the ________ attribute on the form tag to specify the name and location of the scripts that will process form control values | Action |
| Select the tag that configures a text box with the name "email" and a width of 50 char | input type="text" name="email" size="40"> |
| ________ is a standard method or protocal for web pages to request special processing on the webserver such as database queries, sending emails or handling form data | Common Gateway Interface |
| The ________ element is used with an object element to provide additional information | Param |