Programming Foundations with
correct answers
( ) - correct answer ✔✔parents or parentheses
[ ] - correct answer ✔✔brackets or square brackets
{ } - correct answer ✔✔braces or curly braces
Array - correct answer ✔✔a variable type that is an ordered list of items of a given data type
element - correct answer ✔✔each item in an array
index / indices - correct answer ✔✔the location of each element in an array, starts with 0, not 1
scalar - correct answer ✔✔a single item (non-array) variable
size (attribute) - correct answer ✔✔the number of elements in an array
swapping - correct answer ✔✔exchanging the values of two variables with each other
vector - correct answer ✔✔a construct similar to an array, used by some programming
languages