a collection data items of the same type
array
What is the size of an array that supports indices from 0 to 9?
The array size is 10, as it has indices ranging from 0 to 9
How are the indices of an array represented in memory?
Indices are represented as positions starting from 0 up to (size - 1).
What does each index in the array correspond to in memory?
Each index corresponds to a unique memory address and can store a specific value.
static variables
values retained between function calls
git status
n view the status of the changed files
git branch
You can check your current branch
git branch <new-branch></new-branch>
(from the current branch)
git switch <branch></branch>
move between branches