Arrays: Data Structures

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

Which of the following best describes the primary function of an array?

  • To define a single variable with multiple data types.
  • To store multiple values under a single name. (correct)
  • To execute a block of code repeatedly.
  • To create a random number sequence.

What is the significance of subscripts or index values in the context of arrays?

  • They distinguish between the different values stored in the array. (correct)
  • They are used to name the array.
  • They are mathematical constants used in array calculations.
  • They determine the data type of the array elements.

What restriction applies to the data stored in an array?

  • Data must be unique within the array.
  • All data must be of the same kind (e.g., all integers or all strings). (correct)
  • Data must be organized in a specific pattern.
  • Data must be sorted in ascending order.

Once the number of memory locations for an array is specified, what happens at runtime?

<p>The size remains fixed for the duration of the program's execution. (C)</p> Signup and view all the answers

What steps are required to change the number of memory locations reserved for an array after it has been initially defined?

<p>Modify the declaration in the source code, then re-compile and execute the program. (A)</p> Signup and view all the answers

In the context of arrays, what is an 'element'?

<p>Each individual value stored in the array. (B)</p> Signup and view all the answers

How is an element's location identified within an array?

<p>By a number (index) corresponding to its location in memory. (D)</p> Signup and view all the answers

Which two pieces of information are required to specify an array element?

<p>The array name and the index number. (B)</p> Signup and view all the answers

What is the 'index' in the context of a one-dimensional array?

<p>A reference number indicating the position of an element. (B)</p> Signup and view all the answers

In array declaration, what does array_size refer to?

<p>The number of elements the array can hold. (D)</p> Signup and view all the answers

Which statement is true regarding the number of elements in an array?

<p>It is fixed when the array is declared and cannot be changed during execution. (A)</p> Signup and view all the answers

If an array is declared as int numbers[5];, what is the valid range of indices for accessing its elements?

<p>0 to 4 (B)</p> Signup and view all the answers

What does the term 'lower bound' refer to in the context of array indexing?

<p>The smallest index in the array. (D)</p> Signup and view all the answers

What is the 'upper bound' of the array indices?

<p>The index of the last element in the array. (A)</p> Signup and view all the answers

If an array is declared as int a[100];, what is the upper bound of this array?

<p>99 (D)</p> Signup and view all the answers

Which of the following is the correct way to declare and initialize an integer array num of size 5 with all elements set to zero in a single line?

<p><code>int num[5] = {0, 0, 0, 0, 0};</code> (B)</p> Signup and view all the answers

In the context of initializing an array, what happens if you provide fewer initial values than the declared size of the array?

<p>The remaining elements are initialized to a default value (usually zero). (A)</p> Signup and view all the answers

Given the declaration int x[8]={3};, what is the value of x[5]?

<p>0 (C)</p> Signup and view all the answers

What is the primary purpose of iterating through an array?

<p>To access and process each element in the array. (A)</p> Signup and view all the answers

What information is essential for iterating through an array using a loop?

<p>The size of the array (number of elements). (A)</p> Signup and view all the answers

How can the size of an array in bytes be determined?

<p>By using the <code>sizeof</code> operator. (A)</p> Signup and view all the answers

In context of the sizeof operator, what does the following expression calculate? sizeof(myArray)/sizeof(myArray[0])

<p>The number of elements in the array. (A)</p> Signup and view all the answers

How are elements designated in a two-dimensional array?

<p>By row and column numbers. (C)</p> Signup and view all the answers

In a two-dimensional array, is the row number or the column number listed first?

<p>The row number. (A)</p> Signup and view all the answers

How is the total number of elements calculated in a two-dimensional array?

<p>Multiplying the row size by the column size. (A)</p> Signup and view all the answers

What data type can be used for the row and column numbers?

<p>Integer data type. (D)</p> Signup and view all the answers

What happens if you initialise less values than the number of array elemets?

<p>The remaining elements are initialised to zero. (D)</p> Signup and view all the answers

Which of the following is true about iterating through two-dimensional arrays?

<p>Nested loops are used, with the outer loop for rows and the inner loop for columns. (C)</p> Signup and view all the answers

In C/C++, what is the common practice for passing an array as a parameter to a function?

<p>The array's name is passed, which acts as a pointer to the first element. (A)</p> Signup and view all the answers

When passing an array as a parameter to a function, which of the following is true?

<p>The array's name is passed without square brackets. (B)</p> Signup and view all the answers

When defining a function that takes an array as a parameter, what notation is used to indicate that an array is expected?

<p>Square brackets after the array's name. (C)</p> Signup and view all the answers

Can an array be returned directly from a function in C/C++?

<p>No, arrays cannot be directly returned from a function. (D)</p> Signup and view all the answers

In C/C++, how is it possible to effectively "return" an array from a function?

<p>By returning a pointer to the array. (D)</p> Signup and view all the answers

Which of the following is the typical use for loops when working with arrays?

<p>To perform operations on each element of the array. (C)</p> Signup and view all the answers

Given code snippet for deleting an array value. What is the main purpose of the given code arr[i] = arr[i + 1];?

<p>To shift elements to overwrite the element being deleted. (A)</p> Signup and view all the answers

In the given code for deleting a value, why is it necessary to decrease (n--)?

<p>To update the size of the array after element deletion. (A)</p> Signup and view all the answers

In a sorted numbered array, assume you have the following methods 'Copy', 'Sort', 'Delete', and 'Insert'. Which of the following methods would likely take the most resources?

<p>Sort (A)</p> Signup and view all the answers

In the insertion algorithm for sorted arrays, the code provides the condition if (arr[i] < insertValue && arr[i + 1] > insertValue). What is the purpose of testing arr[i + 1] > insertValue?

<p>To ensure that the new value is between the two adjacent array elements so that the array remains sorted. (A)</p> Signup and view all the answers

Flashcards

Variable

A named storage location in the computer's memory.

Array

A collection of variables of the same type, stored contiguously in memory.

Index/Subscript

A unique identifier for each value stored in the array.

Array Data Type

The data type that all elements in array must be.

Signup and view all the flashcards

Memory locations

A contiguous segment of memory that contains the elements of an array.

Signup and view all the flashcards

Array memory

A series of variables of the same data type placed in consecutive memory locations.

Signup and view all the flashcards

Element

A single value within an array, accessed by index.

Signup and view all the flashcards

One-Dimensional Array

The simplest array type, visualized as a column of memory locations.

Signup and view all the flashcards

Array Declaration

The declaration specifies the data type, array name, and element count.

Signup and view all the flashcards

Lower Bound

The starting index of an array; in C/C++, it's always 0.

Signup and view all the flashcards

Upper Bound

The highest valid index in an array, which is one less than the size.

Signup and view all the flashcards

Range/Size

The number of elements an array can hold.

Signup and view all the flashcards

Array Initialization

Assigning initial values to array elements during declaration.

Signup and view all the flashcards

Accessing by Index

Accessing an array element using the array's name and its index.

Signup and view all the flashcards

Iterating Arrays

To process each element in an array, often using a loop.

Signup and view all the flashcards

Finding array size

Use sizeof operator, which gives the size of the operand in Bytes

Signup and view all the flashcards

Two-Dimensional Arrays

A memory arrangement designated with a row and column.

Signup and view all the flashcards

Iterating Two-Dimensional Arrays

Nested loops used to process all elements in 2D arrays.

Signup and view all the flashcards

Array operations

Provides a summary of common operations on arrays.

Signup and view all the flashcards

Fill Arrays

Initializing all elements of array.

Signup and view all the flashcards

Copy arrays

Copying elements of arrays to other arrays.

Signup and view all the flashcards

Delete arrays

Removing elements of arrays.

Signup and view all the flashcards

Insert arrays

Inserting/Adding elements to the arrays.

Signup and view all the flashcards

Study Notes

  • Data Structures enable sophisticated data manipulation and organization.

Arrays

  • Arrays store multiple values using a single name.
  • An array is a series of variables of the same data type placed in consecutive memory locations as a block.
  • Subscripts, or index values, are used to differentiate between the different array values.
  • The data stored should be of the same kind, making it easier to read and use.
  • The programmer must tell the computer how many memory locations to reserve for an array.
  • This number cannot be changed while the program runs.
  • To change the reserved memory, the source code must be edited, re-compiled, and executed again.
  • Each individual value of an array is called an element.
  • Each Element is given a number (index) corresponding to its location in memory.
    • An array element's index gives its location information relative to the first member.
    • The actual memory address is stored with the array's name.
  • An array element is written using two parts of information: the array name and the index number.

One-Dimensional Arrays

  • The simplest array is the one-dimensional array, which can be visualized as a column of memory locations.
  • The index, a number inside square brackets, acts as a reference.
  • It can be a constant, variable, or expression.
  • A one-dimensional array is declared using: data_type array_name[array_size];
  • The number of elements in an array can not change while the program is executing.
  • Example array named numbers: int Numbers[5]; that can store five values of type integer (int).
  • Individual elements of an array are accessed using the array's name with an index enclosed in square brackets [].
  • Each element in an array is numbered by its index (offset/subscript), which gives its relative position to the first element.
  • The smallest index is called the lower bound will always be 0 in C/C++.
  • The highest index is called the upper bound.
  • When declaring an array, the number in the square brackets [] is the size, but when accessing an element, it denotes the element's index.

Size of an Array

  • The number of elements in the array is called its range (size).
  • The upper bound (highest index) is one less than the range (size).
  • Equation for range: range = upper bound + 1
  • Example: int a[100]; specifies an array of 100 integers with a lower bound of 0, a range of 100, and an upper bound of 99.

Declaring and Initialising an Array

  • The array num is declared to hold 5 integer values: int num[5];.
  • num[0]=58; initializes the first array element with an integer value of 58.
  • The index for this first element is 0; also considered the lower bound.
  • num[1]=9; initializes the second array element with an integer value of 9.
  • (index is 1) array element with an integer value of 9.
  • num[2]=8; initializes the third array element with an integer value of 8.
  • num[3]=5; initializes the fourth array element with an integer value of 5.
  • num[4]=7; this represents the initialization of the fifth (and final) array element with an integer value of 7.
  • The index for this last element is 4; also considered the higher bound.
  • An array i is declared to hold five float values: float i[5];.
  • Code example: i[]={ 58.2,9.12,8.77,100.001,7.19 }; initializes all array elements with float values 58.2, 9.12, 8.77, 100.001, and 7.19 respectively: the index starts at [0].
  • The program doesn't need a specified number when initializing the array during the declaration: float i[]={ 58.2, 9.12, 8.77, 100.001, 7.19 };
  • The compiler will count the actual number of elements and create an array to store them all.

Visualizing Arrays

  • int i[]={ 58, 9, 8, 100, 7 };
  • In memory, given four bytes per integer, this array occupies 20 bytes in total.

Behavior with Insufficient Initializer Values:

  • When the number of initialiser values are less than the number of array elements, the remaining elements are initialised to zero (0).
  • Example: double rate[3]={ 0.075, 0.81 };
  • The rate array will hold: 0.075 , 0.81, and the last element 0.0 by default.
  • When an array such as: int x[8]={3}; is declared, the variable values are:
  • 3, 0, 0, 0, 0, 0, 0, 0

Practice exercises:

  • Declaring an integer array named c with five elements requires the code int c[5];.
  • Assigning value 12 to the first element of array c translates to c[0] = 12;.
  • Adding the first 3 elements of array c and storing the result in the 4th array element: c[3] = c[0] + c[1] + c[2];.
  • Dividing the 4th element of array c by 7 and assigning the result to the last element of array c: c[4] = c[3] / 7;.

Iterating Arrays

  • Accessing each element of an array can be done through a loop.
  • It’s important to either know or be able to determine the size of the array, as that will be the condition to end the loop.

Finding the Size of an Array

  • To find the size of an array (number of elements), use the sizeof operator, which gives the size of the operand in Bytes.
  • Code example to determine and display the size of the array:
// Find the number of elements in array
#include <iostream>
using namespace std;

int main() {
    int myArray[] = {5, 2, -98765, 8, 56, 78, 1, 4445, 23, 1209837, -9999, -834, 429, -674, -388, -689, -654, 267, 301, 581, -387, -82, -402, -485, -649, 961, -911, -275, -41, 683, -846, 909, 284, 644, -618, 717, -862, -670, 594, -497, 729, -447, 497, -861, 389};

    cout << "myArray is " << sizeof(myArray) << " Bytes" << endl;
    cout << "First element of myArray is " << sizeof(myArray[0]) << " Bytes" << endl;

    int arraySize = sizeof(myArray) / sizeof(myArray[0]);
    cout << "myArray has " << arraySize << " elements" << endl;

Two-Dimensional Arrays

  • A two-dimensional array is a block of memory locations associated with a single variable name, designated by row and column numbers.
  • The row number is always specified first, and then the column number.
  • The total number of elements in a two-dimensional array is calculated by multiplying the row size (first dimension) by the column size (second dimension). The calculated value should be an integer data type.
  • The row and column numbers can be constants, variables, or expressions: data_type array_name [row_size] [column_size];
  • The number of elements in a two-dimensional array can NOT change while the program is executing.
  • data_type array_name [row_size] [column_size];
  • Total Number of Elements = row_size * column_size
  • Example: int numbers[5][3];
  • A two-dimensional array can store 15 integer values.
  • It has 15 memory locations where you can store an integer.
  • Each element can be called using a row and column index (similar to a table).
  • Iterating through a two-dimensional array is performed using nested loops.
  • The outer loop is for the rows and the inner loop is for the columns.

What happens in Memory…

  • double rate[3][3]={ {0.075, 0.81}, {4.6} }; the remaining elements get initialized to Zero (0).

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

Related Documents

More Like This

Next Greater Element Quiz
3 questions
Arrays in C++
30 questions

Arrays in C++

AmenableCadmium avatar
AmenableCadmium
Use Quizgecko on...
Browser
Browser