Deck 12: Programming

ملء الشاشة (f)
exit full mode
سؤال
 A place to enter source code for a computer program is called a(n) _______. 

A) ​interpreter 
B) ​code editor 
C) ​debugger 
D) ​compiler
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
 A________ is a computer program that is used to find errors that may exist in a program.​
سؤال
 Adding comments generally makes the code ________. 

A) ​easier to understand 
B) ​harder to read 
C) ​harder to maintain 
D) ​none of the above
سؤال
 ​Computer programming is also known as ______. 

A) ​debugging 
B) ​coding 
C) ​programming 
D) ​none of the above
سؤال
 A string can contain which of the following?​ 

A) ​numerals 
B) ​words 
C) ​letters 
D) ​all of the above
سؤال
 Instruction code for a computer program is based on an algorithm. 
سؤال
 A sequence of steps for solving a problem or performing a task is called a code editor.​ 
سؤال
 In programming, a sequence of characters is called a ____.​
سؤال
 The acronym IDE stands for which of the following? 

A) ​Integral Database End-user 
B) ​Integrated Development Environment 
C) ​Internet Data Enterprise 
D) none of the above
سؤال
 To include more than one line of comments in your code, you must start each line with which of the following symbols? 

A) ​# 
B) ​* 
C) ​+ 
D) ​==
سؤال
 Instruction code for a computer program is based on a(n) ______.
سؤال
 ​The ​Python programming language was named after the TV show Monty Python's Flying Circus. 
سؤال
 A _____ in Python​ is used by programmers to explain what the code does--it does not show up when the program runs.
سؤال
 The most famous program in the world is a single line of code that prints "Hello Earth!" on the screen.​ 
سؤال
 The term ________ is used by programmers any time two or more characters are connected.​
سؤال
 Which of the following is a concatenation operator?​ 

A) ​+ 
B) ​# 
C) ​= 
D) ​<
سؤال
 The Python programming language has its own ______, which is a set of rules that defines how it can be written.
سؤال
 Instructions that tell a computer what to do are referred to as code.​ 
سؤال
 The Python programming language has a small vocabulary of how many keywords? 

A) ​18 
B) ​7 
C) ​33 
D) ​42
سؤال
 Only about 10 keywords are frequently used in Python. 
سؤال
 The type of data that a variable can hold is referred to as its ______.​
سؤال
 A good name for a variable that will contain a first name would be "last_name."​ 
سؤال
 A syntax error occurs when an instruction does not follow the rules of the programming language.​ 
سؤال
 Which of the following is a valid variable name in Python​? 

A) first_name 
B) ​76trombones 
C) ​class 
D) ​more$
سؤال
 A programming error is called a ____.​
سؤال
 ​Programmers think of variables as empty boxes where data can be stored. 
سؤال
 The process of creating a variable is sometimes referred to as _____ a variable.​
سؤال
 When storing data in a variable, programmers use which symbol to indicate the assignment operator?​ 

A) ​* 
B) ​> 
C) ​+ 
D) ​=
سؤال
 Which of the following is a Python keyword?​ 

A) ​elif 
B) ​else 
C) ​def 
D) ​all of the above
سؤال
 An error in a program code is referred to as a tick.​ 
سؤال
 The process of tracking down bugs and correcting them is called ______.​
سؤال
 Syntax errors and ____ errors are the two most frequently encountered when debugging a program.​
سؤال
 String variables cannot be concatenated directly with integer variables.​ 
سؤال
 A ____ is a named memory location that holds data specified by a programmer or entered by an end user.​
سؤال
 Which of the following is considered to be a common data type?​ 

A) ​integers 
B) ​strings 
C) ​floating-point numbers 
D) ​all of the above
سؤال
 A program containing a _____ error will run without displaying an error message, but it will not produce the expected result.​
سؤال
 Which of the following is not a Python syntax rule?​ 

A) ​Comments always start with a # symbol. 
B) ​Python is case sensitive. 
C) ​Strings are delineated by == symbols. 
D) ​Keywords can only be used for their intended purpose.
سؤال
 Putting data in a variable is referred to as assigning a ____ to it.​
سؤال
 Python keywords, such as print and class, are not allowed as variable names.​ 
سؤال
 In Python, using the keyword _____ means you want the computer to display something on the screen.​
سؤال
 The object-oriented ________ is based on objects and classes that can be defined and manipulated by program code.​
سؤال
 You can use the float() command to convert the input data to an integer.​ 
سؤال
 A _______ control structure tells a computer what to do based on whether a condition is true or false.​
سؤال
 ​A comparison operator is used in an expression to compare two______. 

A) ​expressions 
B) ​classes 
C) ​values 
D) ​symbols
سؤال
 An instance of a class is said to be __________ (created) from the class.​
سؤال
 In programming, an ______ is a symbol that represents an action.​
سؤال
 ​When programmers want one thing to happen when a condition is true and something else to happen when it is false they use the ______ statement. 

A) ​elif 
B) ​if...else 
C) ​if 
D) ​none of the above
سؤال
 Input can be accepted from a _______ or a _______.​
سؤال
 ​The if command requires which of the following as punctuation? 

A) ​a colon 
B) ​a period 
C) ​a dash 
D) ​none of the above
سؤال
 Classes enable programmers to build objects with multiple _______ and define ways for objects to interact with each other.​ 

A) ​programs 
B) ​variables 
C) ​attributes 
D) ​none of the above
سؤال
 A class attribute defines the characteristics of a set of _______. 

A) ​methods 
B) ​classes 
C) ​instances 
D) ​objects
سؤال
 In mathematics, the order of _______ is a collection of rules that dictate which procedures to perform first when calculating an arithmetic expression.​
سؤال
 ​To instruct the computer to perform a calculation, programmers use an _______ expression, which contains values and arithmetic operators.
سؤال
 The ______ command allows the program to display a message on the screen that asks a user to enter information.​
سؤال
 In Python, the order of operations dictates that addition and subtraction are performed first.​ 
سؤال
 A ______ is a description or template that the computer uses to create an object.​
سؤال
 The if command is an example of a selection control structure.​ 
سؤال
 ​There is no limit on the number of elif statements that can follow an if statement. 
سؤال
 An object created from a class is called an instance.​ 
سؤال
 _______ programming is a style of programming that focuses​ on using objects to design and build applications.
سؤال
 You can define functions in Python using the _______ command.​ 

A) ​def 
B) ​if...else 
C) ​if 
D) ​none of the above
سؤال
 The operator != is a comparison operator.​ 
سؤال
 A programmer-defined _______ is typically a block of code that is part of a program but is not included in the main execution path.​
سؤال
 Strings in Python are not case sensitive.​ 
سؤال
 A ______ in Python is an ordered group of items that can be numbers or strings that are modifiable.​
سؤال
 The section of code that repeats is referred to as a _____ or an _______.​
سؤال
 A ______ is a numeric variable used for counting something, such as the number of times to execute a loop.​
سؤال
 Which of the following symbols represents the assignment operator?​ 

A) ​= 
B) ​< > 
C) ​> 
D) ​==
سؤال
 The code block within every function starts with a semi-colon (;).​ 
سؤال
 The control statement for a for-loop begins with what command word?​ 

A) ​print 
B) ​else 
C) ​for 
D) ​if
سؤال
 An accumulator is a numeric variable in which values are repetitively subtracted.​ 
سؤال
 The contents within a parentheses that are passed to a function are called ________. 

A) ​variables 
B) ​definitions 
C) ​values 
D) ​parameters
سؤال
 When you do not know in advance the number of times you want to execute a statement, use a ______-loop. 

A) ​for 
B) ​while 
C) ​if 
D) none of the above
سؤال
 The == symbol is referred to as the ______ operator.​
سؤال
 Which of the following words is a logical operator in Python?​ 

A) ​NOT 
B) ​OR 
C) ​AND 
D) ​all of the above
سؤال
 Before you can increment or decrement a variable, you have to _______ it.​
سؤال
 To advance the number of times a statement is executed, use a(n) ________-loop.​ 

A) ​if 
B) ​else 
C) ​for 
D) ​none of the above
سؤال
 Logical operators are also known as Boolean operators.​ 
سؤال
 A ______ control structure allows programmers to write code that can repeatedly execute a statement or a series of statements.​
سؤال
 To ______ a variable means to add an amount to its current value.​
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/90
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 12: Programming
1
 A place to enter source code for a computer program is called a(n) _______. 

A) ​interpreter 
B) ​code editor 
C) ​debugger 
D) ​compiler
  B
2
 A________ is a computer program that is used to find errors that may exist in a program.​
  debugger​
3
 Adding comments generally makes the code ________. 

A) ​easier to understand 
B) ​harder to read 
C) ​harder to maintain 
D) ​none of the above
  A
4
 ​Computer programming is also known as ______. 

A) ​debugging 
B) ​coding 
C) ​programming 
D) ​none of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
5
 A string can contain which of the following?​ 

A) ​numerals 
B) ​words 
C) ​letters 
D) ​all of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
6
 Instruction code for a computer program is based on an algorithm. 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
7
 A sequence of steps for solving a problem or performing a task is called a code editor.​ 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
8
 In programming, a sequence of characters is called a ____.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
9
 The acronym IDE stands for which of the following? 

A) ​Integral Database End-user 
B) ​Integrated Development Environment 
C) ​Internet Data Enterprise 
D) none of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
10
 To include more than one line of comments in your code, you must start each line with which of the following symbols? 

A) ​# 
B) ​* 
C) ​+ 
D) ​==
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
11
 Instruction code for a computer program is based on a(n) ______.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
12
 ​The ​Python programming language was named after the TV show Monty Python's Flying Circus. 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
13
 A _____ in Python​ is used by programmers to explain what the code does--it does not show up when the program runs.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
14
 The most famous program in the world is a single line of code that prints "Hello Earth!" on the screen.​ 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
15
 The term ________ is used by programmers any time two or more characters are connected.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
16
 Which of the following is a concatenation operator?​ 

A) ​+ 
B) ​# 
C) ​= 
D) ​<
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
17
 The Python programming language has its own ______, which is a set of rules that defines how it can be written.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
18
 Instructions that tell a computer what to do are referred to as code.​ 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
19
 The Python programming language has a small vocabulary of how many keywords? 

A) ​18 
B) ​7 
C) ​33 
D) ​42
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
20
 Only about 10 keywords are frequently used in Python. 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
21
 The type of data that a variable can hold is referred to as its ______.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
22
 A good name for a variable that will contain a first name would be "last_name."​ 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
23
 A syntax error occurs when an instruction does not follow the rules of the programming language.​ 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
24
 Which of the following is a valid variable name in Python​? 

A) first_name 
B) ​76trombones 
C) ​class 
D) ​more$
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
25
 A programming error is called a ____.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
26
 ​Programmers think of variables as empty boxes where data can be stored. 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
27
 The process of creating a variable is sometimes referred to as _____ a variable.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
28
 When storing data in a variable, programmers use which symbol to indicate the assignment operator?​ 

A) ​* 
B) ​> 
C) ​+ 
D) ​=
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
29
 Which of the following is a Python keyword?​ 

A) ​elif 
B) ​else 
C) ​def 
D) ​all of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
30
 An error in a program code is referred to as a tick.​ 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
31
 The process of tracking down bugs and correcting them is called ______.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
32
 Syntax errors and ____ errors are the two most frequently encountered when debugging a program.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
33
 String variables cannot be concatenated directly with integer variables.​ 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
34
 A ____ is a named memory location that holds data specified by a programmer or entered by an end user.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
35
 Which of the following is considered to be a common data type?​ 

A) ​integers 
B) ​strings 
C) ​floating-point numbers 
D) ​all of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
36
 A program containing a _____ error will run without displaying an error message, but it will not produce the expected result.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
37
 Which of the following is not a Python syntax rule?​ 

A) ​Comments always start with a # symbol. 
B) ​Python is case sensitive. 
C) ​Strings are delineated by == symbols. 
D) ​Keywords can only be used for their intended purpose.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
38
 Putting data in a variable is referred to as assigning a ____ to it.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
39
 Python keywords, such as print and class, are not allowed as variable names.​ 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
40
 In Python, using the keyword _____ means you want the computer to display something on the screen.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
41
 The object-oriented ________ is based on objects and classes that can be defined and manipulated by program code.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
42
 You can use the float() command to convert the input data to an integer.​ 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
43
 A _______ control structure tells a computer what to do based on whether a condition is true or false.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
44
 ​A comparison operator is used in an expression to compare two______. 

A) ​expressions 
B) ​classes 
C) ​values 
D) ​symbols
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
45
 An instance of a class is said to be __________ (created) from the class.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
46
 In programming, an ______ is a symbol that represents an action.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
47
 ​When programmers want one thing to happen when a condition is true and something else to happen when it is false they use the ______ statement. 

A) ​elif 
B) ​if...else 
C) ​if 
D) ​none of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
48
 Input can be accepted from a _______ or a _______.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
49
 ​The if command requires which of the following as punctuation? 

A) ​a colon 
B) ​a period 
C) ​a dash 
D) ​none of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
50
 Classes enable programmers to build objects with multiple _______ and define ways for objects to interact with each other.​ 

A) ​programs 
B) ​variables 
C) ​attributes 
D) ​none of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
51
 A class attribute defines the characteristics of a set of _______. 

A) ​methods 
B) ​classes 
C) ​instances 
D) ​objects
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
52
 In mathematics, the order of _______ is a collection of rules that dictate which procedures to perform first when calculating an arithmetic expression.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
53
 ​To instruct the computer to perform a calculation, programmers use an _______ expression, which contains values and arithmetic operators.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
54
 The ______ command allows the program to display a message on the screen that asks a user to enter information.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
55
 In Python, the order of operations dictates that addition and subtraction are performed first.​ 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
56
 A ______ is a description or template that the computer uses to create an object.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
57
 The if command is an example of a selection control structure.​ 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
58
 ​There is no limit on the number of elif statements that can follow an if statement. 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
59
 An object created from a class is called an instance.​ 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
60
 _______ programming is a style of programming that focuses​ on using objects to design and build applications.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
61
 You can define functions in Python using the _______ command.​ 

A) ​def 
B) ​if...else 
C) ​if 
D) ​none of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
62
 The operator != is a comparison operator.​ 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
63
 A programmer-defined _______ is typically a block of code that is part of a program but is not included in the main execution path.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
64
 Strings in Python are not case sensitive.​ 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
65
 A ______ in Python is an ordered group of items that can be numbers or strings that are modifiable.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
66
 The section of code that repeats is referred to as a _____ or an _______.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
67
 A ______ is a numeric variable used for counting something, such as the number of times to execute a loop.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
68
 Which of the following symbols represents the assignment operator?​ 

A) ​= 
B) ​< > 
C) ​> 
D) ​==
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
69
 The code block within every function starts with a semi-colon (;).​ 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
70
 The control statement for a for-loop begins with what command word?​ 

A) ​print 
B) ​else 
C) ​for 
D) ​if
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
71
 An accumulator is a numeric variable in which values are repetitively subtracted.​ 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
72
 The contents within a parentheses that are passed to a function are called ________. 

A) ​variables 
B) ​definitions 
C) ​values 
D) ​parameters
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
73
 When you do not know in advance the number of times you want to execute a statement, use a ______-loop. 

A) ​for 
B) ​while 
C) ​if 
D) none of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
74
 The == symbol is referred to as the ______ operator.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
75
 Which of the following words is a logical operator in Python?​ 

A) ​NOT 
B) ​OR 
C) ​AND 
D) ​all of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
76
 Before you can increment or decrement a variable, you have to _______ it.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
77
 To advance the number of times a statement is executed, use a(n) ________-loop.​ 

A) ​if 
B) ​else 
C) ​for 
D) ​none of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
78
 Logical operators are also known as Boolean operators.​ 
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
79
 A ______ control structure allows programmers to write code that can repeatedly execute a statement or a series of statements.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
80
 To ______ a variable means to add an amount to its current value.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 90 في هذه المجموعة.