Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Once again I need to see what I know off the top of my head. Thank for your help

ID: 3622700 • Letter: O

Question

Once again I need to see what I know off the top of my head. Thank for your help.

1. Display by the browser in a monospace font, caption-side
2. Style value that causes borders to be combinded, unorderd list
3. Type of cell tat occupies more than one row or column in a table, fields
4. The amount of space between table cells, cell spacing
5. The default aligment of a table of a cell, right
6. Used to specify an item as either present or absent, option button
7. Basic elemtn storing each piece of form information, ?
8. Used to select a single option from a list, check boxes
9. Used for a long list options, collaspe
10. Used for extended entries that can included several lines of text, text area

1a. Translated into more basic language (Machine), interpreted
2b. The type of information stored in a variable, data type
3c. Display a text message with an OK, declaring
4d. Tells the JavaScript interpreter to reserve memory space for a variable, logical operator
5e. Language excuted with beign complied,var
6f. Named element in a program that stores information, event handler
7g. Used to declare a named element in a program, data object
8h. Variable associated with a function, arithmetic operator
9i.. Created using date()., increment operator
10j. Used in creating conditional expressions, function
11. Has methods of rounding numbers, unary operator
12. Changes an values sign,?
13. Can be placed before or after an operand, variable
14 Tells browser what code to run, ?
15 Performs simple calculation, compiled

Explanation / Answer

1. Display by the browser in a monospace font: font-family:monospace

2. Style value that causes borders to be combined:
    border:#0000FF 5px solid;

The statement above combines the border-color border-width and border-style properties of an element into one definition.

3. Type of cell that occupies more than one row or column in a table: td
The other type of cell is th, but it is typically only used for table headers and occupies only one row.

4. The amount of space between table cells: cellspacing

5. The default alignment of a table of a cell: left if td, center if th

6. Used to specify an item as either present or absent: checkbox

7. Basic element storing each piece of form information: input

8. Used to select a single option from a list: radio buttons

9. Used for a long list options: optgroup
Additional reference at:
http://www.w3schools.com/html5/tag_optgroup.asp

10. Used for extended entries that can included several lines of text: textarea

1a. Translated into more basic language (Machine): compiled
Your initial answer of interpreted would work to an extend, but since interpreted code have to be translated every time the the code is executed, where as compiled code had to only be translated once.

2b. The type of information stored in a variable: datatype

3c. Display a text message with an OK: alert method
For example: alert("Hello World!");

4d. Tells the JavaScript interpreter to reserve memory space for a variable: declaring a variable

5e. Language executed without being complied: interpreted

6f. Named element in a program that stores information: variable

7g. Used to declare a named element in a program: var

8h. Variable associated with a function: argument/parameter
The difference between parameter and argument is that parameters are variables being passed to the function, whereas arguments are variables defined inside the function. The difference is subtle that most people use the terms interchangeably.

9i. Created using Date(): Date Object with methods for calculating timestamps

10j. Used in creating conditional expressions:
       ? operator (conditional operator)

For example:
       var x = ( <expression> ? <value_if_true> : <value_if_false> );

11. Has methods of rounding numbers: Math Object

12. Changes an values sign: multiply value by -1
A positive number multiply by -1 will be negative, and a negative number multiply by -1 will be positive.

13. Can be placed before or after an operand:
      increment
(++) / decrement (--) operators
For example i++ and ++i are both valid. However, the precedence in which they are evaluated differs. This is more apparent when comparing them to another variable. With i++, i will be compared using its current value and then gets incremented after the comparison. With ++i, i is incremented before the comparison is performed.

14 Tells browser what code to run: script
This element specifies where the code is located. The code could either be from an external file or be directly embedded between the script tags.

15 Performs simple calculation: arithmetic operators

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote