CSharp Chapter 2 Vocab

CSharp Chapter 2 Vocab

memorize.aimemorize.ai (lvl 286)
Section 1

Preview this deck

Enumeration

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 14, 2020

Cards (15)

Section 1

(15 cards)

Enumeration

Front

A system which uses a set of constants represented by identifiers

Back

Concatenate

Front

To tack together two strings of characters, making one longer string

Back

Prompt

Front

A question or demand the program asks the user

Back

Immutable

Front

unchangeable; C# strings are this quality

Back

Unary operator

Front

An operator with one value

Back

Constant

Front

Cannot be changed after a program is compiled

Back

Format specifier

Front

a string that contains special characters specifying how the numeric value should be formatted; examples: currency ($X,XXX.XX), number (X,XXX.XX), scientific (X.XXXe+xxx)

Back

Order of operation

Front

Operates from left to right

Back

Variable declaration

Front

Statement that names a variable and reserves storage

Back

Assignment operator

Front

the equal sign in an assignment statement

Back

Data Type

Front

Describes the format and size of a data item

Back

Initialization

Front

Assigning a value to a variable as part of its definition

Back

Explicit cast

Front

Involves placing the desired result type in parentheses followed by the variable or constant

Back

Implicit cast

Front

The automatic transformation that occurs when a value is assigned to a type with higher precedence

Back

Precision specifier

Front

Controls the number of significant digits or zeros to the right of the decimal point

Back