Mod 4 guided notes
Mod 4 guided notes
Describe the difference between correlation and causation as they relate to data:
Vocabulary
Definition
Term
List An organized way to express data
Spreadsheets Databases
1.
2.
2.
2.
3.
4.
5.
Vocabulary
Definition
Term
Data abstraction A simplified and reusable representation of raw data
1.
2.
3.
Using the code below, list the name of the element at the specified index:
Index Element
2
5
console.log(days[3]);
console.log(class.substr(0, 3));
On the AP Exam, you will declare lists using the 🡨. Use the code below to determine where the
value is located in the list.
Element Index
oranges
nectarines
bananas
04.04 Arrays
Vocabulary
Definition
Term
Appends
Traversing
Loop
Write out the code to assign the values below to an array called gpa:
Elemen
Code
t
4.2
3.7
4.0
Write the code to update the values below to an array called gpa:
Instructions Code
What is the code for the length of the gpa array to be displayed?
_________________________________________________________
What is the code to call on a function named printAlpha with an array named alphabet as a
parameter?