Deck 2: Functions and Control Structures

ملء الشاشة (f)
exit full mode
سؤال
Like variables, function names are case sensitive.
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
Functions are placed within parentheses that follow a parameter name.
سؤال
The default label contains statements that execute when the value returned by the switch statement expression does not match any case label.
سؤال
A function executes automatically.
سؤال
If you attempt to use a local variable outside the function in which it is declared, you receive an error message.
سؤال
To ensure that the while statement will eventually end, you must include code within the body of the while statement that changes the value of the conditional expression.
سؤال
A function must contain a parameter.
سؤال
Using parentheses to enclose the conditional expression of an if statement is optional.
سؤال
Global variables are automatically available to all parts of your program, including functions.
سؤال
The formal parameters within the parentheses of a function declaration are global variables.
سؤال
A function must return a value.
سؤال
When one decision-making statement is contained within another decision-making statement, they are referred to as multiple decision-making structures.
سؤال
Variable scope refers to the location that a declared variable can be used.
سؤال
A return statement is a statement that returns a value to the statement that called the function.
سؤال
Function arguments are the statements that do the actual work of the function and must be contained within the function braces.
سؤال
The else clause can only be used with an if statement.
سؤال
The switch statement controls program flow by executing a specific set of statements, depending on the value of an expression.
سؤال
If a command block is missing either the opening or closing brace, an error occurs.
سؤال
In PHP, you must declare a global variable with the global keyword inside a function definition for the variable to be available within the scope of that function.
سؤال
A function definition contains the lines of code that make up a function.
سؤال
Include statements support only absolute path notation.
سؤال
The primary use of the include and require statements is to reuse content on multiple web pages by allowing you to insert the content of an external file, called an include file, in your PHP scripts.
سؤال
One of the primary differences between the while statement and the for statement is that in addition to a conditional expression, the for statement can also include code that initializes a counter and changes its value with each iteration.
سؤال
A command block is a group of statements within a set of opening and closing ____.

A) brackets
B) braces
C) parentheses
D) quotation marks
سؤال
A(n) ____ statement is a control structure that repeatedly executes a statement or series of statements while a specific condition is TRUE or until a specific condition becomes TRUE.

A) repeat
B) replicate
C) loop
D) circular
سؤال
When one decision-making statement is contained within another decision-making statement it is referred to as a ____ decision-making structure.

A) enclosed
B) contained
C) nested
D) layered
سؤال
You can use the terminate statement to halt a looping statement and restart the loop with a new iteration.
سؤال
With many programming languages, global variables are automatically available to all parts of your program, including ____.

A) statements
B) definitions
C) functions
D) declarations
سؤال
What will be returned if you use a local variable outside the function in which it is declared?

A) value
B) error message
C) function
D) nothing
سؤال
When you declare a global variable with the global keyword, you do not need to assign the variable a(n) ____.

A) value
B) definition
C) function
D) name
سؤال
When you use a variable in a PHP program, you must be aware of the variable's ____.

A) placement
B) scope
C) function
D) statement
سؤال
Which of the following terms is not associated with the switch statement?

A) switch title
B) case label
C) executable statements
D) break keyword
سؤال
The statements in a do...while statement always execute repeatedly before the conditional expression evaluates the count variable.
سؤال
The include statement and the require statement perform the same function and can be used interchangeably.
سؤال
The parameters within the parentheses of a function declaration are what kind of variables?

A) local
B) global
C) unknown
D) declared
سؤال
You will not receive an error if you attempt to use a foreach statement with any variable types other than arrays.
سؤال
The for statement performs essentially the same function as the while statement.
سؤال
The do...while statement executes a statement or statements once, then repeats the execution as long as a given conditional expression evaluates to TRUE.
سؤال
A variable's scope can be either global or ____.

A) local
B) undeclared
C) universal
D) declared
سؤال
The for...while statement is used to iterate or loop through the elements in an array.
سؤال
An if statement that includes an else clause is called a(n) ____________________ statement.
سؤال
The ____ file is typically saved with a prefix of inc_.

A) insert
B) include
C) nested
D) increment
سؤال
You must use the ____________________ keyword to declare a global variable within the scope of a function.
سؤال
The ____________________ statement is used to execute specific programming code if the evaluation of a conditional expression returns a value of true.
سؤال
When one decision-making statement is contained within another decision-making statement, they are called ____________________ decision-making structures.
سؤال
A ____________________ variable is declared outside a function and is available to all parts of the program.
سؤال
A formal ____________________ is a variable that is used within a function.
سؤال
____________________-control statements allow you to determine the order in which statements execute in a program.
سؤال
A ____________________ variable is declared inside a function and is only available within the function in which it is declared.
سؤال
A ____________________ statement is a statement that returns a value to the statement that called the function.
سؤال
Passing by ____________________ means that the actual variable is used within the function and any changes made to the variable by the function will remain after the function completes.
سؤال
A ____ statement is used to iterate or loop through the elements in an array.

A) for
B) while
C) foreach
D) if...else
سؤال
Groups of statements you can execute as a single unit are called ____________________.
سؤال
A function ____________________ executes a function
سؤال
A ____ is a variable that increments or decrements with each iteration of a loop statement

A) counter
B) incrementer/decrementer
C) iterator
D) repetitor
سؤال
____________________ are added to both the if and else portions of the if...else statement if a section contains more than one statement.
سؤال
The ____ statement halts the processing of the web page and displays an error if an include file cannot be found.

A) include
B) insert
C) Insert-contents
D) require
سؤال
If you do not include code that changes the value used the by the condition expression, your program will be caught in a ____ loop.

A) continuous
B) continuing
C) constant
D) infinite
سؤال
A(n) ____________________ block is a group of statements contained within a set of braces, similar to the way function statements are contained within a set of braces
سؤال
The function ____________________ is the lines of code that make up a function
سؤال
A(n) ____________________ statement is a control structure that repeatedly executes a statement or a series of statements while a specific condition is TRUE or until a specific condition becomes TRUE.
سؤال
The ____________________ statement repeats a statement or series of statements as long as a given conditional expression evaluates to TRUE.
سؤال
A switch statement contains the following components: the keyword switch, an expression, an opening brace, a case label, the executable statements, the keyword ____________________, a default label, and a closing brace.
سؤال
The ____________________ loop executes a statement or statements once, then repeats the execution as long as a given conditional expression evaluates to TRUE.
سؤال
You must include a(n) ____________________ to separate each section in a for loop.
سؤال
The ____________________ statement controls program flow using a case statement that executing a specific set of statements, depending on the value of an expression.
سؤال
case $ExampleVar is an example of a ____________________ data type being used as a case label
سؤال
A ____________________ is a variable that increments or decrements with each iteration of a loop statement.
سؤال
The ____________________ statement is used to iterate or loop through the elements in an array.
سؤال
A ____________________ statement keeps repeating until its conditional expression evaluates to FALSE.
سؤال
The final ____________________ statement after the final case or default statement is not required.
سؤال
Each repetition of a looping statement is called a(n) ____________________.
سؤال
case 42 is an example of a ____________________ data type being used as a case label.
سؤال
The ____________________ statement is used for repeating a statement or series of statements as long as a given conditional expression evaluates to TRUE.
سؤال
The switch statement compares the value of an expression to a value contained within a special statement called a ____________________.
سؤال
case 125.78 is an example of a ____________________ data type being used as a case label.
سؤال
In a(n) ____________________ loop, a loop statement never ends because its conditional expression is never FALSE.
سؤال
The ____________________ label contains statements that execute when the value returned by the switch statement expression does not match a case label.
سؤال
case "Monday" is an example of a ____________________ data type being used as a case label.
سؤال
The conditional expression in the while statement is enclosed within ____________________ following the keyword while.
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/83
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 2: Functions and Control Structures
1
Like variables, function names are case sensitive.
False
2
Functions are placed within parentheses that follow a parameter name.
False
3
The default label contains statements that execute when the value returned by the switch statement expression does not match any case label.
True
4
A function executes automatically.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
5
If you attempt to use a local variable outside the function in which it is declared, you receive an error message.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
6
To ensure that the while statement will eventually end, you must include code within the body of the while statement that changes the value of the conditional expression.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
7
A function must contain a parameter.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
8
Using parentheses to enclose the conditional expression of an if statement is optional.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
9
Global variables are automatically available to all parts of your program, including functions.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
10
The formal parameters within the parentheses of a function declaration are global variables.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
11
A function must return a value.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
12
When one decision-making statement is contained within another decision-making statement, they are referred to as multiple decision-making structures.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
13
Variable scope refers to the location that a declared variable can be used.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
14
A return statement is a statement that returns a value to the statement that called the function.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
15
Function arguments are the statements that do the actual work of the function and must be contained within the function braces.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
16
The else clause can only be used with an if statement.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
17
The switch statement controls program flow by executing a specific set of statements, depending on the value of an expression.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
18
If a command block is missing either the opening or closing brace, an error occurs.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
19
In PHP, you must declare a global variable with the global keyword inside a function definition for the variable to be available within the scope of that function.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
20
A function definition contains the lines of code that make up a function.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
21
Include statements support only absolute path notation.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
22
The primary use of the include and require statements is to reuse content on multiple web pages by allowing you to insert the content of an external file, called an include file, in your PHP scripts.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
23
One of the primary differences between the while statement and the for statement is that in addition to a conditional expression, the for statement can also include code that initializes a counter and changes its value with each iteration.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
24
A command block is a group of statements within a set of opening and closing ____.

A) brackets
B) braces
C) parentheses
D) quotation marks
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
25
A(n) ____ statement is a control structure that repeatedly executes a statement or series of statements while a specific condition is TRUE or until a specific condition becomes TRUE.

A) repeat
B) replicate
C) loop
D) circular
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
26
When one decision-making statement is contained within another decision-making statement it is referred to as a ____ decision-making structure.

A) enclosed
B) contained
C) nested
D) layered
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
27
You can use the terminate statement to halt a looping statement and restart the loop with a new iteration.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
28
With many programming languages, global variables are automatically available to all parts of your program, including ____.

A) statements
B) definitions
C) functions
D) declarations
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
29
What will be returned if you use a local variable outside the function in which it is declared?

A) value
B) error message
C) function
D) nothing
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
30
When you declare a global variable with the global keyword, you do not need to assign the variable a(n) ____.

A) value
B) definition
C) function
D) name
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
31
When you use a variable in a PHP program, you must be aware of the variable's ____.

A) placement
B) scope
C) function
D) statement
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
32
Which of the following terms is not associated with the switch statement?

A) switch title
B) case label
C) executable statements
D) break keyword
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
33
The statements in a do...while statement always execute repeatedly before the conditional expression evaluates the count variable.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
34
The include statement and the require statement perform the same function and can be used interchangeably.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
35
The parameters within the parentheses of a function declaration are what kind of variables?

A) local
B) global
C) unknown
D) declared
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
36
You will not receive an error if you attempt to use a foreach statement with any variable types other than arrays.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
37
The for statement performs essentially the same function as the while statement.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
38
The do...while statement executes a statement or statements once, then repeats the execution as long as a given conditional expression evaluates to TRUE.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
39
A variable's scope can be either global or ____.

A) local
B) undeclared
C) universal
D) declared
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
40
The for...while statement is used to iterate or loop through the elements in an array.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
41
An if statement that includes an else clause is called a(n) ____________________ statement.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
42
The ____ file is typically saved with a prefix of inc_.

A) insert
B) include
C) nested
D) increment
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
43
You must use the ____________________ keyword to declare a global variable within the scope of a function.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
44
The ____________________ statement is used to execute specific programming code if the evaluation of a conditional expression returns a value of true.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
45
When one decision-making statement is contained within another decision-making statement, they are called ____________________ decision-making structures.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
46
A ____________________ variable is declared outside a function and is available to all parts of the program.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
47
A formal ____________________ is a variable that is used within a function.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
48
____________________-control statements allow you to determine the order in which statements execute in a program.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
49
A ____________________ variable is declared inside a function and is only available within the function in which it is declared.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
50
A ____________________ statement is a statement that returns a value to the statement that called the function.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
51
Passing by ____________________ means that the actual variable is used within the function and any changes made to the variable by the function will remain after the function completes.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
52
A ____ statement is used to iterate or loop through the elements in an array.

A) for
B) while
C) foreach
D) if...else
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
53
Groups of statements you can execute as a single unit are called ____________________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
54
A function ____________________ executes a function
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
55
A ____ is a variable that increments or decrements with each iteration of a loop statement

A) counter
B) incrementer/decrementer
C) iterator
D) repetitor
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
56
____________________ are added to both the if and else portions of the if...else statement if a section contains more than one statement.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
57
The ____ statement halts the processing of the web page and displays an error if an include file cannot be found.

A) include
B) insert
C) Insert-contents
D) require
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
58
If you do not include code that changes the value used the by the condition expression, your program will be caught in a ____ loop.

A) continuous
B) continuing
C) constant
D) infinite
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
59
A(n) ____________________ block is a group of statements contained within a set of braces, similar to the way function statements are contained within a set of braces
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
60
The function ____________________ is the lines of code that make up a function
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
61
A(n) ____________________ statement is a control structure that repeatedly executes a statement or a series of statements while a specific condition is TRUE or until a specific condition becomes TRUE.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
62
The ____________________ statement repeats a statement or series of statements as long as a given conditional expression evaluates to TRUE.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
63
A switch statement contains the following components: the keyword switch, an expression, an opening brace, a case label, the executable statements, the keyword ____________________, a default label, and a closing brace.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
64
The ____________________ loop executes a statement or statements once, then repeats the execution as long as a given conditional expression evaluates to TRUE.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
65
You must include a(n) ____________________ to separate each section in a for loop.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
66
The ____________________ statement controls program flow using a case statement that executing a specific set of statements, depending on the value of an expression.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
67
case $ExampleVar is an example of a ____________________ data type being used as a case label
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
68
A ____________________ is a variable that increments or decrements with each iteration of a loop statement.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
69
The ____________________ statement is used to iterate or loop through the elements in an array.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
70
A ____________________ statement keeps repeating until its conditional expression evaluates to FALSE.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
71
The final ____________________ statement after the final case or default statement is not required.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
72
Each repetition of a looping statement is called a(n) ____________________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
73
case 42 is an example of a ____________________ data type being used as a case label.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
74
The ____________________ statement is used for repeating a statement or series of statements as long as a given conditional expression evaluates to TRUE.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
75
The switch statement compares the value of an expression to a value contained within a special statement called a ____________________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
76
case 125.78 is an example of a ____________________ data type being used as a case label.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
77
In a(n) ____________________ loop, a loop statement never ends because its conditional expression is never FALSE.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
78
The ____________________ label contains statements that execute when the value returned by the switch statement expression does not match a case label.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
79
case "Monday" is an example of a ____________________ data type being used as a case label.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
80
The conditional expression in the while statement is enclosed within ____________________ following the keyword while.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 83 في هذه المجموعة.