Week 11 Part 1 Flashcards
- What is an array?
o A collection of values having the same data-type stored in the computers memory in a linear, contiguous manner
o Real life examples that can be represented as Arrays
Alphabet = index system
Prices of each item for sale in a store
Amount of gasoline to refuel a car each month
o What would a declared array called prices (num) look like with an element size of 3
num[] prices = new num[3]
o What are the 3 parts of an array declaration?
Data type, variable name, size
o By convention arrays have ______ names
plural
o Each storage location in an array is referred to as an
Element
o Each element in an array is accessed using a
Subscript, also called an index
“Populating an array” means
Initializing the elements with data
o The lowest index for an array is _, the max index is the array size minus _
0, minus 1
o Meaning: Array lower bound and upper bound
Lowest index value [0], highest index value [size-1]
o Using an index value that is outside of the array bounds will cause problems, such as (2 cases)
Best case - Run time error and crash
Worst case - Corrupts memory that is not part of your program, causing other programs/OS to crash
o Java arrays enforce _____ ______, with a run-time exception causing a crash
Array bounds
o Why is it important to enforce array bounds in programming?
Can be used as a security exploit by hackers, to corrupt memory and run viruses
o Memory in computers is organized a sequence of _ ____ blocks of _ ___ each
1 byte, 8 bits
o Each byte in the computer has a unique ______ _______
Memory address
o Arrays and Memory: size of array’s elements is determined by the arrays
Data type.
o Arrays and Memory: Integers in Java occupy 4 bytes of memory. If it’s an integer array, each element will occupy
4 bytes of memory, or 32 bits
o Arrays and Memory: Each element of an array is placed ___________ after the other, in a ___________ manner
Immediately, contiguous
o How many bytes of memory would this occupy? Int number [4]
16 bytes, 128 bits (4x4bytes), (4x32bits)
o In order to find an array in memory, the system uses
The subscript, datatype, and name to perform a calculation and jump to the correct memory location
o Explain these
1. int value = numbers[0]
2. numbers[0] = 33
1. Read from a single array element, 2. Write to a single array element
o Num numbers[5] = 3.3, 4.4, 5.5 which index will these elements attach to?
Leftmost will attach to 0, and so on*
o T/F – Each element in an array diagram is represented by a single box, regardless of the number of bytes
True
o An Array is a ____ of data items in ___________ memory locations
group, contiguous