Deck 4: Variables and Arithmetic Operations

Full screen (f)
exit full mode
Question
The prefix ____ should be used for naming a TextBox object.

A) tbox
B) txtbox
C) txt
D) obj
Use Space or
up arrow
down arrow
to flip the card.
Question
____ is an arithmetic operation.

A) Comparison
B) Division
C) Addition
D) Multiplication
Question
The memory allocation for the Char data type is ____ bytes.

A) 2
B) 4
C) 8
D) 16
Question
The CancelButton property of the Windows Form object allows you to specify which button is activated when the CTRL key on the keyboard is pressed.
Question
A variable that will be used to contain only nondecimal whole numbers should be declared as a(n) ____ data type.

A) Decimal
B) Double
C) Integer
D) Single
Question
The Decimal data type can represent ____.

A) dollar amounts
B) very precise decimal numbers
C) large numbers
D) numbers accurate to 280 digits
Question
A(n) green squiggly underline beneath a variable name in a declaration statement indicates that the variable is not references within the program.
Question
A ____ can be represented by using the Char data type.

A) letter
B) very large number
C) punctuation symbol
D) symbol
Question
A ____ beneath a variable name in a declaration statement indicates that the variable is not referenced within the program.

A) blue squiggly underline
B) green squiggly underline
C) red squiggly underline
D) yellow squiggly underline
Question
The Void procedure clears any data currently placed in the Text property of a TextBox object. _________________________
Question
The Double data type can store a ____.

A) floating-point number
B) very small negative number
C) huge positive number
D) value to the right of the decimal point
Question
A(n) PredefinedTextBox object can be used to control the format of data that a user enters.
Question
The event handler of a button designated as the Cancel button will be processed when the user presses the ____ key on the keyboard.

A) ESC
B) ENTER
C) CTRL
D) ALT
Question
A(n) ____ data type must be used in arithmetic operations.

A) string
B) numeric
C) character
D) either A or B
Question
When defining a variable, the keyword ____ is required at the beginning of the statement.

A) Assign
B) Declare
C) Define
D) Dim
Question
When defining a variable to be used to hold values that the user enters in a TextBox object, the declaration statement should have ____ at the end of the statement.

A) As Char
B) As Char Type
C) As String
D) As String Type
Question
The AcceptButton property of the form specifies which button will be activated when the ____ key on the keyboard is pressed.

A) F2
B) ENTER
C) ESC
D) CTRL
Question
The ampersand character at the end of a line in the code editor indicates that the line of code continues on the next line.
Question
The ____ indicates that a statement is an assignment statement.

A) keyword Set
B) ampersand (&)
C) equal sign (=)
D) keyword Assign
Question
A variable is ____.

A) a place where data is stored
B) a named location in RAM
C) defined in the coding of the program
D) a location in memory
Question
A variable that will be used to hold only True or False values should be declared as a(n) ____ data type.

A) Boolean
B) Decimal
C) Integer
D) Single
Question
The ____ of a variable specifies where a variable can be referenced within a program.

A) range
B) lifetime
C) scope
D) scale
Question
A prefix of ____ is used to denote a variable defined as a Decimal data type.

A) dec
B) dml
C) num
D) int
Question
Used with the ToString function, the ____ format specifier will display the value 8976.43561 as 8,976.44.

A) Fixed (F)
B) Number (N)
C) Currency (C)
D) General ( G)
Question
A prefix of ____ is used to denote a variable defined as a Char data type.

A) str
B) chr
C) txt
D) wrd
Question
A prefix of ____ is used for variables defined as a String data type.

A) chr
B) wrd
C) str
D) txt
Question
A variable that has been defined as a Single data type is denoted with the ____ prefix.

A) sng
B) sin
C) num
D) sge
Question
Used with the ToString function, the ____ format specifier will display the value 8976.43561 as 8976.44.

A) Fixed (F)
B) Number (N)
C) General (G)
D) Currency (C)
Question
The dtm prefix is used to denote a(n) ____ data type.

A) Boolean
B) Char
C) Single
D) Date
Question
The ____ operator is used for exponentiation.

A) *
B) ^
C) ˜
D) \
Question
The prefix ____ should be used for a Double variable.

A) dbl
B) dub
C) dou
D) dob
Question
The character D is the literal-type character for the ____ data type.

A) Single
B) Integer
C) Double
D) Decimal
Question
When using ____ division (\), any remainder amount is dropped or truncated.

A) modular
B) integer
C) linear
D) decimal
Question
A prefix of ____ is used to denote a variable defined as an Integer data type

A) num
B) dec
C) nbr
D) int
Question
The ____ of a variable indicates how long the variable remains alive.

A) lifetime
B) scope
C) range
D) duration
Question
The ____ statement prevents automatic conversion of data types.

A) Manual Conversion On
B) Option Strict Off
C) Manual Conversion Off
D) Option Strict On
Question
A(n) ____ variable should be used for values that will consist of a single character only.

A) Boolean
B) Char
C) Decimal
D) Integer
Question
The \ operator is the arithmetic operator for ____ division.

A) integer
B) decimal
C) modular
D) linear
Question
A prefix of ____ is used to denote that a variable has been defined as a Boolean data type.

A) tru
B) tfl
C) bln
D) trf
Question
The character C is the literal-type character for the ____ data type.

A) Char
B) Short
C) Integer
D) Decimal
Question
Used with the ToString function, the ____ format specifier will display the value 8976.43561 as $8,976.44.

A) Fixed (F)
B) Number (N)
C) General (G)
D) Currency (C)
Question
When setting up a mask for a MaskedTextBox object, select the Use Validating Type check box to cause the object to verify that the user entered valid numeric data.
Question
The maximum size of a TextBox object often is determined by the design of the user interface, so it looks and feels good in the user interface.
Question
Users always follow the expected path.
Question
Which of the following can be used to connect string text?

A) *
B) +
C) ^
D) %
Question
The style of the text displayed in a TextBox object can be set using the Font property.
Question
By default, a text box will display as many lines of text as the user enters.
Question
Used with the ToString function, the ____ format specifier will display the value 8976.43561 as 8976.43561.

A) Fixed (F)
B) Number (N)
C) General (G)
D) Currency (C)
Question
A String data type allows for the storing of the standard English letters only.
Question
A ____ Exception occurs when the user enters data that a statement cannot process properly.

A) Style
B) Substance
C) Format
D) Setting
Question
When the user interacts with an object in the graphical user interface, the ____ shifts to that object.

A) scope
B) focus
C) visibility
D) precision
Question
The variable name on the left of an assignment statement is the variable that receives the data that results from the evaluation of the expression on the right side of the assignment statement.
Question
Whenever data is stored in RAM, it does not need to be stored as a particular data type.
Question
The ____ operator is used to concatenate two strings.

A) &
B) #
C) @
D) ^
Question
A(n) ____ Exception occurs when a calculation creates a value larger than one that can be processed by a procedure.

A) Excessive input
B) MaxSize
C) Stack
D) Overflow
Question
A(n) ____ Exception occurs when the user enters a value larger than the maximum value that can be processed by the statement.

A) Excessive input
B) MaxSize
C) Stack
D) Overflow
Question
A TextBox object allows a user to enter programming code into the program during program execution.
Question
A ____ Exception occurs when code attempts to divide a number by zero.

A) Divide by Zero
B) Zero denominator
C) Zero error
D) Division Error
Question
A numeric data type must be used in arithmetic operations.
Question
The process of joining two string values together is called ____.

A) addition
B) alignment
C) combination
D) concatenation
Question
Integer variables can be used to store fractional values.
Question
String data types can be used in arithmetic operations.
Question
Calculations are preformed from right to left, working toward the equal sign.
Question
The ToString function requires a format specifier argument.
Question
The term ____________________ refers to a predefined layout for the data a user enters.
Question
The ____________________ property of a TextBox object controls the alignment of the text content.
Question
A(n) ____________________ object allows users to enter data into a program.
Question
A(n) ____________________ text box allows the user to enter multiple lines in a text box.
Question
Char variables can be used in arithmetic operations.
Question
A variable that can be used in multiple regions of code is called a universal variable.
Question
You must enclose a value in parentheses to assign it to a variable declared as Char data type.
Question
The Option Strict On statement enables automatic data type conversions.
Question
A procedure that does not return a value is called a function.
Question
A(n) ____________________ object allows you to specify the data format of the value typed into the text box.
Question
A Short data type is used for a very short string value of 10 bytes or less.
Question
MOD operations occur before any other arithmetic operations.
Question
A local variable is a variable that can only be accessed in the region in which it was defined.
Question
An Overflow Exception will occur if the user enters a value greater than the maximum value that can be processed by the statement.
Question
To force a literal value to be treated as a specific data type, you must use a literal-type character designator.
Question
A property identifies a value required by a procedure that must be passed into the procedure when it is called.
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/112
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 4: Variables and Arithmetic Operations
1
The prefix ____ should be used for naming a TextBox object.

A) tbox
B) txtbox
C) txt
D) obj
C
2
____ is an arithmetic operation.

A) Comparison
B) Division
C) Addition
D) Multiplication
B,C,D
3
The memory allocation for the Char data type is ____ bytes.

A) 2
B) 4
C) 8
D) 16
A
4
The CancelButton property of the Windows Form object allows you to specify which button is activated when the CTRL key on the keyboard is pressed.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
5
A variable that will be used to contain only nondecimal whole numbers should be declared as a(n) ____ data type.

A) Decimal
B) Double
C) Integer
D) Single
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
6
The Decimal data type can represent ____.

A) dollar amounts
B) very precise decimal numbers
C) large numbers
D) numbers accurate to 280 digits
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
7
A(n) green squiggly underline beneath a variable name in a declaration statement indicates that the variable is not references within the program.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
8
A ____ can be represented by using the Char data type.

A) letter
B) very large number
C) punctuation symbol
D) symbol
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
9
A ____ beneath a variable name in a declaration statement indicates that the variable is not referenced within the program.

A) blue squiggly underline
B) green squiggly underline
C) red squiggly underline
D) yellow squiggly underline
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
10
The Void procedure clears any data currently placed in the Text property of a TextBox object. _________________________
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
11
The Double data type can store a ____.

A) floating-point number
B) very small negative number
C) huge positive number
D) value to the right of the decimal point
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
12
A(n) PredefinedTextBox object can be used to control the format of data that a user enters.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
13
The event handler of a button designated as the Cancel button will be processed when the user presses the ____ key on the keyboard.

A) ESC
B) ENTER
C) CTRL
D) ALT
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
14
A(n) ____ data type must be used in arithmetic operations.

A) string
B) numeric
C) character
D) either A or B
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
15
When defining a variable, the keyword ____ is required at the beginning of the statement.

A) Assign
B) Declare
C) Define
D) Dim
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
16
When defining a variable to be used to hold values that the user enters in a TextBox object, the declaration statement should have ____ at the end of the statement.

A) As Char
B) As Char Type
C) As String
D) As String Type
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
17
The AcceptButton property of the form specifies which button will be activated when the ____ key on the keyboard is pressed.

A) F2
B) ENTER
C) ESC
D) CTRL
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
18
The ampersand character at the end of a line in the code editor indicates that the line of code continues on the next line.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
19
The ____ indicates that a statement is an assignment statement.

A) keyword Set
B) ampersand (&)
C) equal sign (=)
D) keyword Assign
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
20
A variable is ____.

A) a place where data is stored
B) a named location in RAM
C) defined in the coding of the program
D) a location in memory
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
21
A variable that will be used to hold only True or False values should be declared as a(n) ____ data type.

A) Boolean
B) Decimal
C) Integer
D) Single
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
22
The ____ of a variable specifies where a variable can be referenced within a program.

A) range
B) lifetime
C) scope
D) scale
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
23
A prefix of ____ is used to denote a variable defined as a Decimal data type.

A) dec
B) dml
C) num
D) int
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
24
Used with the ToString function, the ____ format specifier will display the value 8976.43561 as 8,976.44.

A) Fixed (F)
B) Number (N)
C) Currency (C)
D) General ( G)
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
25
A prefix of ____ is used to denote a variable defined as a Char data type.

A) str
B) chr
C) txt
D) wrd
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
26
A prefix of ____ is used for variables defined as a String data type.

A) chr
B) wrd
C) str
D) txt
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
27
A variable that has been defined as a Single data type is denoted with the ____ prefix.

A) sng
B) sin
C) num
D) sge
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
28
Used with the ToString function, the ____ format specifier will display the value 8976.43561 as 8976.44.

A) Fixed (F)
B) Number (N)
C) General (G)
D) Currency (C)
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
29
The dtm prefix is used to denote a(n) ____ data type.

A) Boolean
B) Char
C) Single
D) Date
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
30
The ____ operator is used for exponentiation.

A) *
B) ^
C) ˜
D) \
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
31
The prefix ____ should be used for a Double variable.

A) dbl
B) dub
C) dou
D) dob
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
32
The character D is the literal-type character for the ____ data type.

A) Single
B) Integer
C) Double
D) Decimal
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
33
When using ____ division (\), any remainder amount is dropped or truncated.

A) modular
B) integer
C) linear
D) decimal
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
34
A prefix of ____ is used to denote a variable defined as an Integer data type

A) num
B) dec
C) nbr
D) int
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
35
The ____ of a variable indicates how long the variable remains alive.

A) lifetime
B) scope
C) range
D) duration
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
36
The ____ statement prevents automatic conversion of data types.

A) Manual Conversion On
B) Option Strict Off
C) Manual Conversion Off
D) Option Strict On
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
37
A(n) ____ variable should be used for values that will consist of a single character only.

A) Boolean
B) Char
C) Decimal
D) Integer
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
38
The \ operator is the arithmetic operator for ____ division.

A) integer
B) decimal
C) modular
D) linear
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
39
A prefix of ____ is used to denote that a variable has been defined as a Boolean data type.

A) tru
B) tfl
C) bln
D) trf
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
40
The character C is the literal-type character for the ____ data type.

A) Char
B) Short
C) Integer
D) Decimal
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
41
Used with the ToString function, the ____ format specifier will display the value 8976.43561 as $8,976.44.

A) Fixed (F)
B) Number (N)
C) General (G)
D) Currency (C)
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
42
When setting up a mask for a MaskedTextBox object, select the Use Validating Type check box to cause the object to verify that the user entered valid numeric data.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
43
The maximum size of a TextBox object often is determined by the design of the user interface, so it looks and feels good in the user interface.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
44
Users always follow the expected path.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
45
Which of the following can be used to connect string text?

A) *
B) +
C) ^
D) %
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
46
The style of the text displayed in a TextBox object can be set using the Font property.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
47
By default, a text box will display as many lines of text as the user enters.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
48
Used with the ToString function, the ____ format specifier will display the value 8976.43561 as 8976.43561.

A) Fixed (F)
B) Number (N)
C) General (G)
D) Currency (C)
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
49
A String data type allows for the storing of the standard English letters only.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
50
A ____ Exception occurs when the user enters data that a statement cannot process properly.

A) Style
B) Substance
C) Format
D) Setting
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
51
When the user interacts with an object in the graphical user interface, the ____ shifts to that object.

A) scope
B) focus
C) visibility
D) precision
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
52
The variable name on the left of an assignment statement is the variable that receives the data that results from the evaluation of the expression on the right side of the assignment statement.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
53
Whenever data is stored in RAM, it does not need to be stored as a particular data type.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
54
The ____ operator is used to concatenate two strings.

A) &
B) #
C) @
D) ^
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
55
A(n) ____ Exception occurs when a calculation creates a value larger than one that can be processed by a procedure.

A) Excessive input
B) MaxSize
C) Stack
D) Overflow
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
56
A(n) ____ Exception occurs when the user enters a value larger than the maximum value that can be processed by the statement.

A) Excessive input
B) MaxSize
C) Stack
D) Overflow
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
57
A TextBox object allows a user to enter programming code into the program during program execution.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
58
A ____ Exception occurs when code attempts to divide a number by zero.

A) Divide by Zero
B) Zero denominator
C) Zero error
D) Division Error
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
59
A numeric data type must be used in arithmetic operations.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
60
The process of joining two string values together is called ____.

A) addition
B) alignment
C) combination
D) concatenation
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
61
Integer variables can be used to store fractional values.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
62
String data types can be used in arithmetic operations.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
63
Calculations are preformed from right to left, working toward the equal sign.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
64
The ToString function requires a format specifier argument.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
65
The term ____________________ refers to a predefined layout for the data a user enters.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
66
The ____________________ property of a TextBox object controls the alignment of the text content.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
67
A(n) ____________________ object allows users to enter data into a program.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
68
A(n) ____________________ text box allows the user to enter multiple lines in a text box.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
69
Char variables can be used in arithmetic operations.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
70
A variable that can be used in multiple regions of code is called a universal variable.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
71
You must enclose a value in parentheses to assign it to a variable declared as Char data type.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
72
The Option Strict On statement enables automatic data type conversions.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
73
A procedure that does not return a value is called a function.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
74
A(n) ____________________ object allows you to specify the data format of the value typed into the text box.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
75
A Short data type is used for a very short string value of 10 bytes or less.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
76
MOD operations occur before any other arithmetic operations.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
77
A local variable is a variable that can only be accessed in the region in which it was defined.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
78
An Overflow Exception will occur if the user enters a value greater than the maximum value that can be processed by the statement.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
79
To force a literal value to be treated as a specific data type, you must use a literal-type character designator.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
80
A property identifies a value required by a procedure that must be passed into the procedure when it is called.
Unlock Deck
Unlock for access to all 112 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 112 flashcards in this deck.