Deck 2: Using Data

ملء الشاشة (f)
exit full mode
سؤال
You declare a Boolean variable by using type ____.

A) char
B) bool
C) int
D) boolean
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
In the C# statement moneyString = someMoney.ToString("F3") , the expression F3 is an example of a(n) ____.

A) literal constant
B) standard numeric format string
C) named constant
D) intrinsic type
سؤال
In C#, you use the ____ data type to hold a series of characters.

A) int
B) string
C) sbyte
D) char
سؤال
+= is the C# ____ operator; it adds the operand on the right to the operand on the left and assigns it to the operand on the left in one step.

A) prefix increment
B) postfix increment
C) add and assign
D) increment and assign
سؤال
The equal sign ( = ) is the C# assignment operator.
سؤال
A(n) ____ arithmetic operator has one argument to the left and another argument to the right of the operator.

A) binary
B) complex
C) composite
D) unary
سؤال
A(n) ____ is a named location in computer memory that can hold different values at different points in time.

A) variable
B) constant
C) literal constant
D) alias
سؤال
someValue++ is an example of the use of the prefix increment operator.
سؤال
An expression containing a(n) ____ operator has a Boolean value.

A) decrement
B) comparison
C) assignment
D) unifying
سؤال
Operator precedence rules ensure that addition and subtraction always take place prior to multiplication, division, or remainder in an expression.
سؤال
If a value is given to a variable at the time it is declared, this is called a(n) ____.

A) definition
B) allocation
C) assignment
D) initialization
سؤال
A ____ is a string of characters that optionally contains fixed text and contains one or more format items or placeholders for variable values.

A) namespace
B) placeholder
C) format string
D) whitespace
سؤال
In arithmetic operations with operands of dissimilar types, a(n) ____ is the automatic conversion of nonconforming operands to a unifying type.

A) implicit cast
B) explicit cast
C) manual cast
D) level cast
سؤال
You can concatenate two strings with the plus ( + ) sign.
سؤال
To purposefully override the unifying type in an arithmetic operation, use a(n) ____ by placing the desired result type in parentheses followed by the variable or constant to be cast.

A) implicit cast
B) automatic cast
C) intrinsic cast
D) explicit cast
سؤال
An escape sequence is used to represent special characters such as a carriage return or a tab, and always begins with a backslash.
سؤال
You use the ____ data type to hold any single character.

A) char
B) string
C) bool
D) int
سؤال
A ____ consists of a pair of curly braces containing a number that indicates the desired variable's position in a list that follows the string.

A) format string
B) whitespace
C) namespace
D) placeholder
سؤال
A prefix or postfix ____ operator reduces a variable's value by 1.

A) increment
B) sub and assign
C) add and assign
D) decrement
سؤال
A(n) ____ number is one that contains decimal positions.

A) integer
B) whole
C) floating-point
D) int
سؤال
Explain how to use the C# shortcut arithmetic operators -= , *= , and /= .
سؤال
How is a named constant different from a variable? How would you create a named constant (and show an example)?
سؤال
A data item is ____________________ when it cannot be changed after a program is compiled.
سؤال
Operators are used to manipulate values in a program. For example, in the expression X + Y, + is an operator. The values that operators use, such as X and Y, are called ____________________.
سؤال
What is a variable declaration, what is its purpose, and what does the declaration include?
سؤال
How can you compare strings using the Compare() method?
سؤال
Giving a value to a variable, as in the statement someVariable = 5 , is called a(n) ____________________.
سؤال
Operators that have only one argument, such as the prefix and postfix increment operators, are called ____________________ operators.
سؤال
What is an enumeration and what are the advantages of creating an enumeration type? Show an example of an enumeration definition.
سؤال
What are the differences between the prefix increment operator and postfix increment operator?
سؤال
As an alternative to the Convert class methods, you can use a(n) ____  method to convert a string to a number.

A) Cast()
B) Parse()
C) Assign()
D) Write()
سؤال
You can use the ____ method to accept user input from the keyboard.

A) Next()
B) NextLine()
C) ReadLine()
D) Input()
سؤال
An instruction to the user to enter data is called a ____.

A) line
B) prompt
C) cue
D) hint
سؤال
What are the three floating-point data types in C#? Briefly describe the characteristics of each type.
سؤال
The ____ method from the Convert class converts a specified value to an 8-bit unsigned integer.

A) ToDecimal()
B) ToSingle()
C) ToInt16()
D) ToByte()
سؤال
A program that accepts console input from the user is a(n) ____ program.

A) interactive
B) static
C) constant
D) better
سؤال
Explain why implicit numeric conversions are necessary and how C# chooses operands to convert.
سؤال
The keyword ____ is used to declare a named constant.

A) final
B) static
C) const
D) fix
سؤال
What are the nine integral data types in C# and how do you decide which is the most appropriate to use in a particular situation?
سؤال
The number of significant digits in a floating point number specifies the mathematical accuracy of the value. A(n) ____________________ data type can hold up to 16 significant digits of accuracy.
سؤال
Match between columns
A 16-bit coding scheme for characters
named constant
A 16-bit coding scheme for characters
culture
A 16-bit coding scheme for characters
precision specifier
A 16-bit coding scheme for characters
Unicode
A 16-bit coding scheme for characters
Boolean variable
A 16-bit coding scheme for characters
integral data type
A 16-bit coding scheme for characters
operator precedence
A 16-bit coding scheme for characters
data type
A 16-bit coding scheme for characters
comparison operator
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
named constant
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
culture
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
precision specifier
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
Unicode
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
Boolean variable
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
integral data type
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
operator precedence
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
data type
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
comparison operator
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
named constant
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
culture
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
precision specifier
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
Unicode
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
Boolean variable
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
integral data type
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
operator precedence
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
data type
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
comparison operator
Can hold only one of two values: true or false
named constant
Can hold only one of two values: true or false
culture
Can hold only one of two values: true or false
precision specifier
Can hold only one of two values: true or false
Unicode
Can hold only one of two values: true or false
Boolean variable
Can hold only one of two values: true or false
integral data type
Can hold only one of two values: true or false
operator precedence
Can hold only one of two values: true or false
data type
Can hold only one of two values: true or false
comparison operator
Rules that determine the order in which parts of a mathematical expression are evaluated
named constant
Rules that determine the order in which parts of a mathematical expression are evaluated
culture
Rules that determine the order in which parts of a mathematical expression are evaluated
precision specifier
Rules that determine the order in which parts of a mathematical expression are evaluated
Unicode
Rules that determine the order in which parts of a mathematical expression are evaluated
Boolean variable
Rules that determine the order in which parts of a mathematical expression are evaluated
integral data type
Rules that determine the order in which parts of a mathematical expression are evaluated
operator precedence
Rules that determine the order in which parts of a mathematical expression are evaluated
data type
Rules that determine the order in which parts of a mathematical expression are evaluated
comparison operator
Stores a whole number
named constant
Stores a whole number
culture
Stores a whole number
precision specifier
Stores a whole number
Unicode
Stores a whole number
Boolean variable
Stores a whole number
integral data type
Stores a whole number
operator precedence
Stores a whole number
data type
Stores a whole number
comparison operator
can compare numbers or strings and perform evaluations.
named constant
can compare numbers or strings and perform evaluations.
culture
can compare numbers or strings and perform evaluations.
precision specifier
can compare numbers or strings and perform evaluations.
Unicode
can compare numbers or strings and perform evaluations.
Boolean variable
can compare numbers or strings and perform evaluations.
integral data type
can compare numbers or strings and perform evaluations.
operator precedence
can compare numbers or strings and perform evaluations.
data type
can compare numbers or strings and perform evaluations.
comparison operator
Controls the number of significant digits or zeros to the right of a decimal point
named constant
Controls the number of significant digits or zeros to the right of a decimal point
culture
Controls the number of significant digits or zeros to the right of a decimal point
precision specifier
Controls the number of significant digits or zeros to the right of a decimal point
Unicode
Controls the number of significant digits or zeros to the right of a decimal point
Boolean variable
Controls the number of significant digits or zeros to the right of a decimal point
integral data type
Controls the number of significant digits or zeros to the right of a decimal point
operator precedence
Controls the number of significant digits or zeros to the right of a decimal point
data type
Controls the number of significant digits or zeros to the right of a decimal point
comparison operator
An identifier whose contents cannot change
named constant
An identifier whose contents cannot change
culture
An identifier whose contents cannot change
precision specifier
An identifier whose contents cannot change
Unicode
An identifier whose contents cannot change
Boolean variable
An identifier whose contents cannot change
integral data type
An identifier whose contents cannot change
operator precedence
An identifier whose contents cannot change
data type
An identifier whose contents cannot change
comparison operator
سؤال
What is the purpose of the ReadLine() method? How would you use it with a variable of type string ? How would you use it with a variable of type double ?
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/42
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 2: Using Data
1
You declare a Boolean variable by using type ____.

A) char
B) bool
C) int
D) boolean
B
2
In the C# statement moneyString = someMoney.ToString("F3") , the expression F3 is an example of a(n) ____.

A) literal constant
B) standard numeric format string
C) named constant
D) intrinsic type
B
3
In C#, you use the ____ data type to hold a series of characters.

A) int
B) string
C) sbyte
D) char
B
4
+= is the C# ____ operator; it adds the operand on the right to the operand on the left and assigns it to the operand on the left in one step.

A) prefix increment
B) postfix increment
C) add and assign
D) increment and assign
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
5
The equal sign ( = ) is the C# assignment operator.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
6
A(n) ____ arithmetic operator has one argument to the left and another argument to the right of the operator.

A) binary
B) complex
C) composite
D) unary
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
7
A(n) ____ is a named location in computer memory that can hold different values at different points in time.

A) variable
B) constant
C) literal constant
D) alias
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
8
someValue++ is an example of the use of the prefix increment operator.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
9
An expression containing a(n) ____ operator has a Boolean value.

A) decrement
B) comparison
C) assignment
D) unifying
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
10
Operator precedence rules ensure that addition and subtraction always take place prior to multiplication, division, or remainder in an expression.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
11
If a value is given to a variable at the time it is declared, this is called a(n) ____.

A) definition
B) allocation
C) assignment
D) initialization
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
12
A ____ is a string of characters that optionally contains fixed text and contains one or more format items or placeholders for variable values.

A) namespace
B) placeholder
C) format string
D) whitespace
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
13
In arithmetic operations with operands of dissimilar types, a(n) ____ is the automatic conversion of nonconforming operands to a unifying type.

A) implicit cast
B) explicit cast
C) manual cast
D) level cast
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
14
You can concatenate two strings with the plus ( + ) sign.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
15
To purposefully override the unifying type in an arithmetic operation, use a(n) ____ by placing the desired result type in parentheses followed by the variable or constant to be cast.

A) implicit cast
B) automatic cast
C) intrinsic cast
D) explicit cast
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
16
An escape sequence is used to represent special characters such as a carriage return or a tab, and always begins with a backslash.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
17
You use the ____ data type to hold any single character.

A) char
B) string
C) bool
D) int
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
18
A ____ consists of a pair of curly braces containing a number that indicates the desired variable's position in a list that follows the string.

A) format string
B) whitespace
C) namespace
D) placeholder
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
19
A prefix or postfix ____ operator reduces a variable's value by 1.

A) increment
B) sub and assign
C) add and assign
D) decrement
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
20
A(n) ____ number is one that contains decimal positions.

A) integer
B) whole
C) floating-point
D) int
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
21
Explain how to use the C# shortcut arithmetic operators -= , *= , and /= .
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
22
How is a named constant different from a variable? How would you create a named constant (and show an example)?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
23
A data item is ____________________ when it cannot be changed after a program is compiled.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
24
Operators are used to manipulate values in a program. For example, in the expression X + Y, + is an operator. The values that operators use, such as X and Y, are called ____________________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
25
What is a variable declaration, what is its purpose, and what does the declaration include?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
26
How can you compare strings using the Compare() method?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
27
Giving a value to a variable, as in the statement someVariable = 5 , is called a(n) ____________________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
28
Operators that have only one argument, such as the prefix and postfix increment operators, are called ____________________ operators.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
29
What is an enumeration and what are the advantages of creating an enumeration type? Show an example of an enumeration definition.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
30
What are the differences between the prefix increment operator and postfix increment operator?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
31
As an alternative to the Convert class methods, you can use a(n) ____  method to convert a string to a number.

A) Cast()
B) Parse()
C) Assign()
D) Write()
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
32
You can use the ____ method to accept user input from the keyboard.

A) Next()
B) NextLine()
C) ReadLine()
D) Input()
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
33
An instruction to the user to enter data is called a ____.

A) line
B) prompt
C) cue
D) hint
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
34
What are the three floating-point data types in C#? Briefly describe the characteristics of each type.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
35
The ____ method from the Convert class converts a specified value to an 8-bit unsigned integer.

A) ToDecimal()
B) ToSingle()
C) ToInt16()
D) ToByte()
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
36
A program that accepts console input from the user is a(n) ____ program.

A) interactive
B) static
C) constant
D) better
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
37
Explain why implicit numeric conversions are necessary and how C# chooses operands to convert.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
38
The keyword ____ is used to declare a named constant.

A) final
B) static
C) const
D) fix
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
39
What are the nine integral data types in C# and how do you decide which is the most appropriate to use in a particular situation?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
40
The number of significant digits in a floating point number specifies the mathematical accuracy of the value. A(n) ____________________ data type can hold up to 16 significant digits of accuracy.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
41
Match between columns
A 16-bit coding scheme for characters
named constant
A 16-bit coding scheme for characters
culture
A 16-bit coding scheme for characters
precision specifier
A 16-bit coding scheme for characters
Unicode
A 16-bit coding scheme for characters
Boolean variable
A 16-bit coding scheme for characters
integral data type
A 16-bit coding scheme for characters
operator precedence
A 16-bit coding scheme for characters
data type
A 16-bit coding scheme for characters
comparison operator
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
named constant
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
culture
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
precision specifier
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
Unicode
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
Boolean variable
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
integral data type
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
operator precedence
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
data type
Describes the format and size (amount of memory occupied) of a data item and defines a set of relevant operations
comparison operator
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
named constant
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
culture
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
precision specifier
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
Unicode
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
Boolean variable
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
integral data type
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
operator precedence
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
data type
A set of rules that determines how to format values such as money and dates that can be represented differently based on locale and tradition
comparison operator
Can hold only one of two values: true or false
named constant
Can hold only one of two values: true or false
culture
Can hold only one of two values: true or false
precision specifier
Can hold only one of two values: true or false
Unicode
Can hold only one of two values: true or false
Boolean variable
Can hold only one of two values: true or false
integral data type
Can hold only one of two values: true or false
operator precedence
Can hold only one of two values: true or false
data type
Can hold only one of two values: true or false
comparison operator
Rules that determine the order in which parts of a mathematical expression are evaluated
named constant
Rules that determine the order in which parts of a mathematical expression are evaluated
culture
Rules that determine the order in which parts of a mathematical expression are evaluated
precision specifier
Rules that determine the order in which parts of a mathematical expression are evaluated
Unicode
Rules that determine the order in which parts of a mathematical expression are evaluated
Boolean variable
Rules that determine the order in which parts of a mathematical expression are evaluated
integral data type
Rules that determine the order in which parts of a mathematical expression are evaluated
operator precedence
Rules that determine the order in which parts of a mathematical expression are evaluated
data type
Rules that determine the order in which parts of a mathematical expression are evaluated
comparison operator
Stores a whole number
named constant
Stores a whole number
culture
Stores a whole number
precision specifier
Stores a whole number
Unicode
Stores a whole number
Boolean variable
Stores a whole number
integral data type
Stores a whole number
operator precedence
Stores a whole number
data type
Stores a whole number
comparison operator
can compare numbers or strings and perform evaluations.
named constant
can compare numbers or strings and perform evaluations.
culture
can compare numbers or strings and perform evaluations.
precision specifier
can compare numbers or strings and perform evaluations.
Unicode
can compare numbers or strings and perform evaluations.
Boolean variable
can compare numbers or strings and perform evaluations.
integral data type
can compare numbers or strings and perform evaluations.
operator precedence
can compare numbers or strings and perform evaluations.
data type
can compare numbers or strings and perform evaluations.
comparison operator
Controls the number of significant digits or zeros to the right of a decimal point
named constant
Controls the number of significant digits or zeros to the right of a decimal point
culture
Controls the number of significant digits or zeros to the right of a decimal point
precision specifier
Controls the number of significant digits or zeros to the right of a decimal point
Unicode
Controls the number of significant digits or zeros to the right of a decimal point
Boolean variable
Controls the number of significant digits or zeros to the right of a decimal point
integral data type
Controls the number of significant digits or zeros to the right of a decimal point
operator precedence
Controls the number of significant digits or zeros to the right of a decimal point
data type
Controls the number of significant digits or zeros to the right of a decimal point
comparison operator
An identifier whose contents cannot change
named constant
An identifier whose contents cannot change
culture
An identifier whose contents cannot change
precision specifier
An identifier whose contents cannot change
Unicode
An identifier whose contents cannot change
Boolean variable
An identifier whose contents cannot change
integral data type
An identifier whose contents cannot change
operator precedence
An identifier whose contents cannot change
data type
An identifier whose contents cannot change
comparison operator
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
42
What is the purpose of the ReadLine() method? How would you use it with a variable of type string ? How would you use it with a variable of type double ?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.