_______ is information describing other information.
Fill in the blank(s) with the appropriate word(s).
metadata
You might also like to view...
Classes ________ and ____________ provide operations for manipulating sets of values where the values are the keys—there is not a separate value associated with each key.
Fill in the blank(s) with the appropriate word(s).
What value is passed to the first parameter?
source file: mySource.js: ``` 1. function product(x.y); 2. { 3. var x; var y; var product; 4. product = x * y; 5. return (product); 6. } ``` web page script, assume the file links to mySource.js: ``` 1. function math(); 2. { 3. var num1 = 3; var num2 = 4; 4. var result = product(num2, num1); 5. document.write(num2 + " X " + num1 + " = " + result); 6. } 7. function product(a.b); 8. { 9. var a; var b; var answer; 10. answer = a * b * b; 11. } ``` a. 4 b. 3 c. a d. x
The Enter button is found on the ________
Fill in the blank(s) with correct word
A _____ documents the details of a functional primitive and represents a specific set of processing steps and business logic.
A. logical description B. primitive description C. process description D. function-based description