Deck 4: The Selection Structure

ملء الشاشة (f)
exit full mode
سؤال
The ____ operator expresses "not equal to."

A) >
B) <>
C) >=
D) <=
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
What is the value of the following expression: 9 * 2 - 8 > 5 + 2 / 2?

A) 10
B) 6
C) False
D) True
سؤال
A programmer must phrase the condition of a selection structure so that it results in either a true or a false answer only.
سؤال
The expression 12 > 0 AndAlso 12 < 10 * 2 evaluates to True.
سؤال
The diamond symbol is used in a flowchart for a calculation task.
سؤال
You can include an identifying label on a group box by setting the group box's Identity property.
سؤال
Before using a string in a comparison,you can use either the ToUpper method or the ToLower method to convert the string to uppercase or lowercase,respectively,and then use the converted string in the comparison.
سؤال
Comparison operators are always evaluated after arithmetic operators in a conditional expression.
سؤال
The ____ operator is evaluated last in the following expression: 9 * 2 - 8 > 5 + 2 / 2.

A) -
B) +
C) >
D) *
سؤال
Which of the following conditions will evaluate to True when the intPackages variable contains the value 100?

A) If intPackages = 100 Then
B) If intPackages <> 0 Then
C) If intPackages > 1 Then
D) All of the above would evaluate to True.
سؤال
The And operator always checks both conditions,while the AndAlso operator does not always evaluate the second condition.
سؤال
Comparison operators are also referred to as ____ operators.

A) relational
B) arithmetic
C) logical
D) Boolean
سؤال
If dblMiles >= 500 Then dblMiles = dblMiles * 0.45
Else
DblMiles = dblMiles * 0.25
End If
The dblMiles variable contains the number 575 before the code above is processed.What value will be in the variable after the code is processed?

A) 0
B) 143.75
C) 225
D) 258.75
سؤال
The expression 2 * 3 + 1 > 1 * 2 + 3 Or 7 + 2 < 4 + 1 evaluates to False.
سؤال
The Not operator would make a True statement False,but would not make a False statement True.
سؤال
The ____ operator is evaluated first in the following expression: 9 * 2 - 8 > 5 + 2 / 2.

A) -
B) +
C) >
D) *
سؤال
If the intInventory variable contains the value 28,the condition If intInventory <= 25 Then will evaluate to ____.

A) Yes
B) No
C) True
D) False
سؤال
Which of the following has the most limited scope?

A) a variable declared at the beginning of a procedure
B) a variable declared within the true path of a selection structure
C) a static variable declared at the beginning of a procedure
D) a class-level variable
سؤال
Use the ____ flowchart symbol to represent the condition in both the selection and repetition structures.

A) oval
B) rectangle
C) parallelogram
D) diamond
سؤال
When coding a selection instruction in Visual Basic,the code that follows the Else statement includes those instructions that will be executed when the condition is true.
سؤال
In the MessageBox.Show(text,caption,buttons,icon[,defaultButton])method,which of the following arguments controls the words appearing in the message box?

A) text
B) caption
C) buttons
D) icon
سؤال
The Backspace key is represented by the ____ constant.

A) ControlChars.Back
B) ControlChars.BackSpace
C) ControlChars.Backspace
D) ControlChars.Backspc
سؤال
If the intQuantity and decPrice variables contain the numbers 3 and 15.75,respectively,the condition If intQuantity > 0 AndAlso intQuantity < 10 OrElse decPrice > 20 will evaluate to ____.

A) True
B) False
C) Yes
D) No
سؤال
The ____ method displays a message box that contains text,one or more buttons,and an icon.

A) MessageBox.Display
B) MessageBox.Group
C) MessageBox.Show
D) MessageBox.Output
سؤال
Consider the expression 3 * 2 ^ 2 < 16 + 5 AndAlso 100 / 10 * 2 > 15 - 3.Which operation is performed second?

A) ^
B) /
C) *
D) +
سؤال
A variable that has ____ scope can be used anywhere within the procedure.

A) block
B) statement
C) method
D) procedure
سؤال
Consider the expression 3 * 2 ^ 2 < 16 + 5 AndAlso 100 / 10 * 2 > 15 - 3.Which operation is performed last?

A) ^
B) <
C) >
D) AndAlso
سؤال
Logical operators are sometimes referred to as ____ operators.

A) relational
B) arithmetic
C) comparison
D) Boolean
سؤال
The application needs to display a message box to remind the clerk to ask customers to join the Rental Rewards Program when they check out.This message box should only display if the customer is not currently in the program.Which of the following If clauses would evaluate to True and display the message box for the clerk? The application needs to display a message box to remind the clerk to ask customers to join the Rental Rewards Program when they check out.This message box should only display if the customer is not currently in the program.Which of the following If clauses would evaluate to True and display the message box for the clerk?  <div style=padding-top: 35px>
سؤال
A control's ____ event occurs each time the user presses a key while the control has the focus.

A) PressEnter
B) KeyEnter
C) KeyPress
D) FocusPress
سؤال
In the MessageBox.Show(text,caption,buttons,icon[,defaultButton])method,which of the following arguments controls the words appearing on the message box title bar?

A) text
B) caption
C) buttons
D) icon
سؤال
In the MessageBox.Show(text,caption,buttons,icon[,defaultButton])method,which of the following arguments controls the symbol appearing in the message box?

A) text
B) caption
C) buttons
D) icon
سؤال
You can use a(n)____ to visually separate related controls from other controls on the form.

A) radio button
B) check box
C) group box
D) icon area
سؤال
Consider the expression 3 * 2 ^ 2 < 16 + 5 AndAlso 100 / 10 * 2 > 15 - 3.Which operation is performed first?

A) ^
B) /
C) *
D) +
سؤال
Which of the following If clauses would evaluate to True and apply the 10% discount for a commercial customer? Which of the following If clauses would evaluate to True and apply the 10% discount for a commercial customer?  <div style=padding-top: 35px>
سؤال
To prevent a text box from accepting inappropriate characters,you first use the e parameter's ____ property to determine the key that the user pressed.

A) KeyStruck
B) KeyEnter
C) KeyChar
D) KeyPress
سؤال
You use the ____ method to select all of the text contained in a text box.

A) All
B) SelectAll
C) AllText
D) GetAll
سؤال
With the KeyPress event,use the e parameter's ____ property to cancel the key if it is an inappropriate one.

A) Check
B) KeyEnter
C) KeyChar
D) Handled
سؤال
Which of the following statements assigns the contents of the txtGrade control,in uppercase,to the strGrade variable? Which of the following statements assigns the contents of the txtGrade control,in uppercase,to the strGrade variable?  <div style=padding-top: 35px>
سؤال
A text box's ____ event occurs when the text box receives the focus.

A) Focus
B) It
C) Key
D) Enter
سؤال
What is a selection structure? What is the difference between a single-alternative and dual-alternative selection structure?
سؤال
List the three most commonly used icons for display in a message box.
سؤال
The message provided when a customer is not a current member of the Rental Rewards Program is "Enroll this customer in the Rental Rewards Program?".The clerk must enter a decision before the application can continue.Which of the message box buttons should be used?

A) OK
B) OKCancel
C) YesNo
D) Information
سؤال
Write an If...Then...Else statement that assigns the number 2000 to the intBonus variable when the decSales variable contains a number that is greater than or equal to $50,000;otherwise,assign the number 500.
سؤال
Complete the chart shown below.
Complete the chart shown below.  <div style=padding-top: 35px>
سؤال
An application needs to calculate a discount for customers who are either preferred customers or senior citizens.Preferred customers have a discount code of "P".Senior citizens have a discount code of "S".The discount code is stored in the strCode variable.Write an If clause to calculate a discount for all preferred members and senior citizens using the strCode variable.
سؤال
Write a statement that creates a message box that displays an OK button,an Information icon,"Harris Pharmacy" in the title bar,and the message "Please enter a pickup time for your order".
سؤال
If a customer decides to enroll in the Rental Rewards Program,the Member Information Form displays for the clerk to enter the membership data for the customer.Which of the following statements sends the focus to the txtFirstName control and highlights any text within it? If a customer decides to enroll in the Rental Rewards Program,the Member Information Form displays for the clerk to enter the membership data for the customer.Which of the following statements sends the focus to the txtFirstName control and highlights any text within it?  <div style=padding-top: 35px>
سؤال
Gino's Subs & Pies wants an application that allows a user to enter a customer's order total and address.When a customer purchases $30 or more of food,Gino's offers free delivery.The delivery fee for all other orders is $10.The calculation should display the total amount the customer owes,including any delivery fee.Draw the flowchart for the solution to this problem.
سؤال
Write an If clause to determine whether the dblTemp variable contains a number that is between 65 and 75.
سؤال
What is a group box and how is it used?
سؤال
The button selected by the clerk will determine the next task performed by the computer.The application is using the ____ of the MessageBox.Show method.

A) Boolean value
B) return value
C) selection structure
D) function
سؤال
Write an If statement that allows only numbers and a decimal place to be accepted.
سؤال
Write a statement that changes the contents of the txtStatus control's text property to uppercase and stores it in the strStatus variable.
سؤال
Write an If clause that will determine if the strColor variable contains either the string "red" or the string "blue".
سؤال
Write an If clause to determine whether the user pressed the Backspace key.
سؤال
Write an If...Then...Else statement that displays the string "Balance Due" in the lblMessage control when the decBalance variable contains a number that is greater than 0;otherwise,assign the string "Thank you for your payment."
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/57
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 4: The Selection Structure
1
The ____ operator expresses "not equal to."

A) >
B) <>
C) >=
D) <=
B
2
What is the value of the following expression: 9 * 2 - 8 > 5 + 2 / 2?

A) 10
B) 6
C) False
D) True
D
3
A programmer must phrase the condition of a selection structure so that it results in either a true or a false answer only.
True
4
The expression 12 > 0 AndAlso 12 < 10 * 2 evaluates to True.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
5
The diamond symbol is used in a flowchart for a calculation task.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
6
You can include an identifying label on a group box by setting the group box's Identity property.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
7
Before using a string in a comparison,you can use either the ToUpper method or the ToLower method to convert the string to uppercase or lowercase,respectively,and then use the converted string in the comparison.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
8
Comparison operators are always evaluated after arithmetic operators in a conditional expression.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
9
The ____ operator is evaluated last in the following expression: 9 * 2 - 8 > 5 + 2 / 2.

A) -
B) +
C) >
D) *
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
10
Which of the following conditions will evaluate to True when the intPackages variable contains the value 100?

A) If intPackages = 100 Then
B) If intPackages <> 0 Then
C) If intPackages > 1 Then
D) All of the above would evaluate to True.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
11
The And operator always checks both conditions,while the AndAlso operator does not always evaluate the second condition.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
12
Comparison operators are also referred to as ____ operators.

A) relational
B) arithmetic
C) logical
D) Boolean
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
13
If dblMiles >= 500 Then dblMiles = dblMiles * 0.45
Else
DblMiles = dblMiles * 0.25
End If
The dblMiles variable contains the number 575 before the code above is processed.What value will be in the variable after the code is processed?

A) 0
B) 143.75
C) 225
D) 258.75
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
14
The expression 2 * 3 + 1 > 1 * 2 + 3 Or 7 + 2 < 4 + 1 evaluates to False.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
15
The Not operator would make a True statement False,but would not make a False statement True.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
16
The ____ operator is evaluated first in the following expression: 9 * 2 - 8 > 5 + 2 / 2.

A) -
B) +
C) >
D) *
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
17
If the intInventory variable contains the value 28,the condition If intInventory <= 25 Then will evaluate to ____.

A) Yes
B) No
C) True
D) False
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
18
Which of the following has the most limited scope?

A) a variable declared at the beginning of a procedure
B) a variable declared within the true path of a selection structure
C) a static variable declared at the beginning of a procedure
D) a class-level variable
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
19
Use the ____ flowchart symbol to represent the condition in both the selection and repetition structures.

A) oval
B) rectangle
C) parallelogram
D) diamond
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
20
When coding a selection instruction in Visual Basic,the code that follows the Else statement includes those instructions that will be executed when the condition is true.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
21
In the MessageBox.Show(text,caption,buttons,icon[,defaultButton])method,which of the following arguments controls the words appearing in the message box?

A) text
B) caption
C) buttons
D) icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
22
The Backspace key is represented by the ____ constant.

A) ControlChars.Back
B) ControlChars.BackSpace
C) ControlChars.Backspace
D) ControlChars.Backspc
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
23
If the intQuantity and decPrice variables contain the numbers 3 and 15.75,respectively,the condition If intQuantity > 0 AndAlso intQuantity < 10 OrElse decPrice > 20 will evaluate to ____.

A) True
B) False
C) Yes
D) No
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
24
The ____ method displays a message box that contains text,one or more buttons,and an icon.

A) MessageBox.Display
B) MessageBox.Group
C) MessageBox.Show
D) MessageBox.Output
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
25
Consider the expression 3 * 2 ^ 2 < 16 + 5 AndAlso 100 / 10 * 2 > 15 - 3.Which operation is performed second?

A) ^
B) /
C) *
D) +
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
26
A variable that has ____ scope can be used anywhere within the procedure.

A) block
B) statement
C) method
D) procedure
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
27
Consider the expression 3 * 2 ^ 2 < 16 + 5 AndAlso 100 / 10 * 2 > 15 - 3.Which operation is performed last?

A) ^
B) <
C) >
D) AndAlso
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
28
Logical operators are sometimes referred to as ____ operators.

A) relational
B) arithmetic
C) comparison
D) Boolean
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
29
The application needs to display a message box to remind the clerk to ask customers to join the Rental Rewards Program when they check out.This message box should only display if the customer is not currently in the program.Which of the following If clauses would evaluate to True and display the message box for the clerk? The application needs to display a message box to remind the clerk to ask customers to join the Rental Rewards Program when they check out.This message box should only display if the customer is not currently in the program.Which of the following If clauses would evaluate to True and display the message box for the clerk?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
30
A control's ____ event occurs each time the user presses a key while the control has the focus.

A) PressEnter
B) KeyEnter
C) KeyPress
D) FocusPress
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
31
In the MessageBox.Show(text,caption,buttons,icon[,defaultButton])method,which of the following arguments controls the words appearing on the message box title bar?

A) text
B) caption
C) buttons
D) icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
32
In the MessageBox.Show(text,caption,buttons,icon[,defaultButton])method,which of the following arguments controls the symbol appearing in the message box?

A) text
B) caption
C) buttons
D) icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
33
You can use a(n)____ to visually separate related controls from other controls on the form.

A) radio button
B) check box
C) group box
D) icon area
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
34
Consider the expression 3 * 2 ^ 2 < 16 + 5 AndAlso 100 / 10 * 2 > 15 - 3.Which operation is performed first?

A) ^
B) /
C) *
D) +
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
35
Which of the following If clauses would evaluate to True and apply the 10% discount for a commercial customer? Which of the following If clauses would evaluate to True and apply the 10% discount for a commercial customer?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
36
To prevent a text box from accepting inappropriate characters,you first use the e parameter's ____ property to determine the key that the user pressed.

A) KeyStruck
B) KeyEnter
C) KeyChar
D) KeyPress
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
37
You use the ____ method to select all of the text contained in a text box.

A) All
B) SelectAll
C) AllText
D) GetAll
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
38
With the KeyPress event,use the e parameter's ____ property to cancel the key if it is an inappropriate one.

A) Check
B) KeyEnter
C) KeyChar
D) Handled
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
39
Which of the following statements assigns the contents of the txtGrade control,in uppercase,to the strGrade variable? Which of the following statements assigns the contents of the txtGrade control,in uppercase,to the strGrade variable?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
40
A text box's ____ event occurs when the text box receives the focus.

A) Focus
B) It
C) Key
D) Enter
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
41
What is a selection structure? What is the difference between a single-alternative and dual-alternative selection structure?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
42
List the three most commonly used icons for display in a message box.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
43
The message provided when a customer is not a current member of the Rental Rewards Program is "Enroll this customer in the Rental Rewards Program?".The clerk must enter a decision before the application can continue.Which of the message box buttons should be used?

A) OK
B) OKCancel
C) YesNo
D) Information
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
44
Write an If...Then...Else statement that assigns the number 2000 to the intBonus variable when the decSales variable contains a number that is greater than or equal to $50,000;otherwise,assign the number 500.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
45
Complete the chart shown below.
Complete the chart shown below.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
46
An application needs to calculate a discount for customers who are either preferred customers or senior citizens.Preferred customers have a discount code of "P".Senior citizens have a discount code of "S".The discount code is stored in the strCode variable.Write an If clause to calculate a discount for all preferred members and senior citizens using the strCode variable.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
47
Write a statement that creates a message box that displays an OK button,an Information icon,"Harris Pharmacy" in the title bar,and the message "Please enter a pickup time for your order".
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
48
If a customer decides to enroll in the Rental Rewards Program,the Member Information Form displays for the clerk to enter the membership data for the customer.Which of the following statements sends the focus to the txtFirstName control and highlights any text within it? If a customer decides to enroll in the Rental Rewards Program,the Member Information Form displays for the clerk to enter the membership data for the customer.Which of the following statements sends the focus to the txtFirstName control and highlights any text within it?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
49
Gino's Subs & Pies wants an application that allows a user to enter a customer's order total and address.When a customer purchases $30 or more of food,Gino's offers free delivery.The delivery fee for all other orders is $10.The calculation should display the total amount the customer owes,including any delivery fee.Draw the flowchart for the solution to this problem.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
50
Write an If clause to determine whether the dblTemp variable contains a number that is between 65 and 75.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
51
What is a group box and how is it used?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
52
The button selected by the clerk will determine the next task performed by the computer.The application is using the ____ of the MessageBox.Show method.

A) Boolean value
B) return value
C) selection structure
D) function
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
53
Write an If statement that allows only numbers and a decimal place to be accepted.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
54
Write a statement that changes the contents of the txtStatus control's text property to uppercase and stores it in the strStatus variable.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
55
Write an If clause that will determine if the strColor variable contains either the string "red" or the string "blue".
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
56
Write an If clause to determine whether the user pressed the Backspace key.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
57
Write an If...Then...Else statement that displays the string "Balance Due" in the lblMessage control when the decBalance variable contains a number that is greater than 0;otherwise,assign the string "Thank you for your payment."
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 57 في هذه المجموعة.