Podcast
Questions and Answers
Which of the following is a characteristic of arrays?
Which of the following is a characteristic of arrays?
- They are dynamic in size.
- Elements can be of different data types
- Elements are accessed using a single name and an index (correct)
- They can only store primitive data types
Arrays can store elements of different data types.
Arrays can store elements of different data types.
False (B)
How is a specific element accessed in an array?
How is a specific element accessed in an array?
index
In the context of arrays, the term 'static entity' means that the array's ______ remains constant throughout the program's execution.
In the context of arrays, the term 'static entity' means that the array's ______ remains constant throughout the program's execution.
Match the array characteristic with its description.
Match the array characteristic with its description.
What is the primary difference between one-dimensional and two-dimensional arrays?
What is the primary difference between one-dimensional and two-dimensional arrays?
The lowest memory address of an array corresponds to its last element.
The lowest memory address of an array corresponds to its last element.
What is the index of the last element in an array of size N?
What is the index of the last element in an array of size N?
To access an element in a one-dimensional array, you specify the array name followed by the element's ______ in square brackets.
To access an element in a one-dimensional array, you specify the array name followed by the element's ______ in square brackets.
Match the following array indices with their corresponding element positions in an array:
Match the following array indices with their corresponding element positions in an array:
Which of the following is necessary when declaring an array?
Which of the following is necessary when declaring an array?
When declaring arrays, the type refers to the structure of the arrangement of the array elements.
When declaring arrays, the type refers to the structure of the arrangement of the array elements.
In the declaration int arr[10];
, what does the number 10 represent?
In the declaration int arr[10];
, what does the number 10 represent?
When declaring an array of a specific type, it is possible to use ______ data type.
When declaring an array of a specific type, it is possible to use ______ data type.
Match the declaration with its function.
Match the declaration with its function.
What happens if an array is initialized with fewer initializers than its declared size?
What happens if an array is initialized with fewer initializers than its declared size?
The initializer list can be omitted if the array has been initialized previously.
The initializer list can be omitted if the array has been initialized previously.
What does the term 'arrayName[index]' represent when accessing array elements?
What does the term 'arrayName[index]' represent when accessing array elements?
If the array size is omitted during initialization, initializers ______ array size.
If the array size is omitted during initialization, initializers ______ array size.
Match the array element with its equivalent declaration.
Match the array element with its equivalent declaration.
What is the benefit of using a const
variable to specify the size of an array?
What is the benefit of using a const
variable to specify the size of an array?
Constants must be initialized when declared.
Constants must be initialized when declared.
What is the other name of constants?
What is the other name of constants?
Constants cannot be ______ once they are assigned a value.
Constants cannot be ______ once they are assigned a value.
Match the statement to its description.
Match the statement to its description.
Which search algorithm requires the data to be sorted?
Which search algorithm requires the data to be sorted?
Searching is not possible in an array.
Searching is not possible in an array.
Name the method which we use to sort an array.
Name the method which we use to sort an array.
The elements of the array after sorting are in ______ order.
The elements of the array after sorting are in ______ order.
Match the output to their respective sorting algorithms.
Match the output to their respective sorting algorithms.
In a multi-dimensional array, what do the subscripts typically represent?
In a multi-dimensional array, what do the subscripts typically represent?
In a two-dimensional array, both subscripts must be specified using commas.
In a two-dimensional array, both subscripts must be specified using commas.
For a two dimensional array, what is the name of a the individual dimension called?
For a two dimensional array, what is the name of a the individual dimension called?
In a two-dimensional array, the first subscript conventionally identifies the element's ______.
In a two-dimensional array, the first subscript conventionally identifies the element's ______.
Match the description with its dimension.
Match the description with its dimension.
What purpose does the new
operator serve when using dynamically allocated arrays?
What purpose does the new
operator serve when using dynamically allocated arrays?
The size of dynamically allocated arrays cannot be changed.
The size of dynamically allocated arrays cannot be changed.
What is the type of a dynamically allocated array?
What is the type of a dynamically allocated array?
The new
operator does not restrict the size to be a ______
The new
operator does not restrict the size to be a ______
Match the following data type to its memory (heap).
Match the following data type to its memory (heap).
Which of the following libraries contains functions for creating dynamic arrays?
Which of the following libraries contains functions for creating dynamic arrays?
vector
also supports dynamic resizing.
vector
also supports dynamic resizing.
What does the member function size obtain?
What does the member function size obtain?
The STL class template vector is similar to class template ______
The STL class template vector is similar to class template ______
Match the code with their respective usage.
Match the code with their respective usage.
Flashcards
What is an array?
What is an array?
A collection of related data items, all of the same data type.
What is subscript notation?
What is subscript notation?
Using an index (or subscript) to identify a specific element within an array.
What is a static array?
What is a static array?
An array whose size remains constant throughout the program's execution.
How are arrays stored?
How are arrays stored?
Signup and view all the flashcards
What's a 1-D Array?
What's a 1-D Array?
Signup and view all the flashcards
What to specify when declaring arrays?
What to specify when declaring arrays?
Signup and view all the flashcards
How can arrays be initialized?
How can arrays be initialized?
Signup and view all the flashcards
How to access array elements?
How to access array elements?
Signup and view all the flashcards
Array size using 'const'?
Array size using 'const'?
Signup and view all the flashcards
What is an STL array?
What is an STL array?
Signup and view all the flashcards
array <type, size> arrayname is used for?
array <type, size> arrayname is used for?
Signup and view all the flashcards
What is array sorting?
What is array sorting?
Signup and view all the flashcards
What is a 2D array?
What is a 2D array?
Signup and view all the flashcards
In a 2D array, subscripts represent what?
In a 2D array, subscripts represent what?
Signup and view all the flashcards
How are 2D array elements referenced?
How are 2D array elements referenced?
Signup and view all the flashcards
Static array limitations?
Static array limitations?
Signup and view all the flashcards
What are dynamic arrays?
What are dynamic arrays?
Signup and view all the flashcards
What is STL 'vector'?
What is STL 'vector'?
Signup and view all the flashcards
What are functions?
What are functions?
Signup and view all the flashcards
Making function calls involves?
Making function calls involves?
Signup and view all the flashcards
What's 'return-value-type'?
What's 'return-value-type'?
Signup and view all the flashcards
What is a function prototype?
What is a function prototype?
Signup and view all the flashcards
What does the rand() function do?
What does the rand() function do?
Signup and view all the flashcards
Study Notes
Arrays Basics
- Arrays constitute collections of related data items.
- All data items in an array are of the same data type.
- Arrays utilize a single name for a collection of data values.
- Subscript notation identifies individual values within an array.
- Arrays have a static size which stays the same length throughout the program.
- They enable declaring one array variable instead of individual variables.
- Individual variables are then represented using indexes.
- An index accesses a specific element in an array.
Array Specifics
- Arrays can have one or multiple dimensions.
- Arrays form a consecutive group of memory locations.
- All elements in an array share the same name and type.
- The compiler allocates a memory section to store all array data.
- The lowest address in memory corresponds to the first element of the array.
- The highest address corresponds to the last element.
- To refer to a specific element, specify the array name and position number (index).
- Array elements are accessed using the format:
arrayname[position number]
. - The first element is at position 0, with an index of 0.
- The last element is at position N-1, with an index of N-1.
- In a 10-element array
c
, the elements arec[0]
,c[1]
, ...,c[9]
.
One-Dimensional Arrays
- All elements of a 1-D array are of the same name.
- Each element can be directly accessed by its position number.
- You can use a variable name, or use a value like vowel[3].
- Elements can be accessed used for calculations.
Declaring Arrays
- The declaration of arrays requires specifying a name, data type, and size.
- Any data type can be used for an array.
- Array size is defined by the number of elements.
- Multiple arrays of the same type can be declared using a comma-separated list by adding the
int
keyword.
Initializing Arrays
- Arrays can be initialized using a for loop to set each element.
- Initializer lists initializes arrays by declaring each element
- If there are not enough initializers, then the rightmost elements are set to 0.
- There will be a syntax error if there are too many initializers
- You can individually assign values to each element during arrays
- If the array size is omitted, the number of initializers determines the array size.
Accessing Array Elements
- Values of any elements in an array can be accessed by index.
- Elements can be accessed with the syntax Arrayname[index] such as: n[0], n[1], student_name[5], vowel[3], course_name[1] etc
- You can create operations using its elements e.g. Variable1=vowel[3] or x=n[0]+n[1]
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.