FCT 1063: Understanding Arrays

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall with Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/9

flashcard set

Earn XP

Description and Tags

These flashcards cover key definitions, declarations, and examples of arrays and multidimensional arrays from the lecture notes.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No study sessions yet.

10 Terms

1
New cards

What is an array in programming?

A collection of elements of the same data type, stored in contiguous memory locations and accessed using an index.

2
New cards

How do you declare an array?

Using the syntax: dataType arrayName[size];

3
New cards

What are the rules for declaring an array?

  1. All elements must be of the same datatype. 2. The size of the array is fixed upon declaration. 3. The first element is at index 0. 4. The array must be declared before use.
4
New cards

What is the initialization syntax for an array?

dataType arrayName[size] = {elements};

5
New cards

How many elements can the array int scores[5] hold?

It can hold 5 elements.

6
New cards

What is the value stored at index 2 in the array numbers[5] = {10, 20, 30, 40, 50}?

30.

7
New cards

What happens if you access numbers[5] in the numbers array?

It causes out-of-bounds access (undefined behavior).

8
New cards

What is a multidimensional array?

An array of arrays that stores data in more than one dimension, commonly a 2D array.

9
New cards

Provide an example of a 2D array declaration.

string letters[2][4] = { { 'A', 'B', 'C', 'D' }, { 'E', 'F', 'G', 'H' } };

10
New cards

How do you access an element in a multidimensional array?

Using the syntax: arrayName[row][column]. For example, letters[1][2] returns 'G'.

Explore top flashcards

October exam
Updated 465d ago
flashcards Flashcards (32)
10/6
Updated 218d ago
flashcards Flashcards (62)
PSCH 262 Final Exam
Updated 634d ago
flashcards Flashcards (110)
WWII
Updated 4d ago
flashcards Flashcards (35)
October exam
Updated 465d ago
flashcards Flashcards (32)
10/6
Updated 218d ago
flashcards Flashcards (62)
PSCH 262 Final Exam
Updated 634d ago
flashcards Flashcards (110)
WWII
Updated 4d ago
flashcards Flashcards (35)