CIS150 C# Ch 4 Arrays

CIS150 C# Ch 4 Arrays

memorize.aimemorize.ai (lvl 286)
Section 1

Preview this deck

array

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (13)

Section 1

(13 cards)

array

Front

data structure that may contain any number of variables of the same type that are referenced by a single identifier

Back

index of the array

Front

references the location of the variable relative to the first element; also called subscript

Back

dimensioning the array

Front

instantiate the array by indicating how many elements to allocate

Back

verbatim string literal

Front

string literals that begin with @ symbol

Back

subscripted variables

Front

elements in an array

Back

parallel arrays

Front

two or more arrays that have a relationship

Back

parameter array

Front

parameter in a method that uses the params modifier keyword indicating that the number of arguments to the method may vary

Back

size of the array

Front

number of elements in the array

Back

length of the array

Front

number of elements in the array

Back

base type

Front

the data type of the data values

Back

compile-time initialization

Front

initialize the elements of an array during declaration

Back

elements of an array

Front

individual variables in the array

Back

indexed variables

Front

elements in an array

Back