返回卡包市场

Chapter 8: Programming

暂无描述。系统推荐的高质量记忆内容,适合每天坚持背诵学习。

卡片总数: 24内容版本: v3公开卡包更新时间: 8/1/2026

卡片预览 (24 张)

#1
正面 (问题)

Definition of a variable

背面 (解答)

a named data store that contains a value that may change during the execution of a program

#2
正面 (问题)

Definition of a constant

背面 (解答)

a named data store that contains a value that does not change during the execution of a program

#3
正面 (问题)

Definition of declare

背面 (解答)

define the value and data type of a variable or constant

#4
正面 (问题)

Definition of integer

背面 (解答)

a positive or negative whole number that can be used with mathematical operators

#5
正面 (问题)

Definition of real number

背面 (解答)

a positive or negative number with a fractional part; Real numbers can be used with mathematical operators

#6
正面 (问题)

Definition of char

背面 (解答)

a variable or constant that is a single character

#7
正面 (问题)

Definition of string

背面 (解答)

a variable or constant that is several characters in length. Strings vary in length and may even have no characters (an empty string); the characters can be letters and/or digits and/or any other printable symbol

#8
正面 (问题)

Definition of sequence

背面 (解答)

the order in which the steps in a program are executed

#9
正面 (问题)

Definition of selection

背面 (解答)

allowing the selection of different paths through the steps of a program

#10
正面 (问题)

Definition of iteration

背面 (解答)

a section of programming code that can be repeated under certain conditions

#11
正面 (问题)

Definition of counting

背面 (解答)

keeping track of the number of times an action is performed

#12
正面 (问题)

Definition of totalling

背面 (解答)

keeping a total that values are added to

#13
正面 (问题)

Definition of operator

背面 (解答)

a special character or word in a programming language that identifies an action to be performed

#14
正面 (问题)

Definition of arithmetic operator

背面 (解答)

an operator that is used to perform calculations

#15
正面 (问题)

Definition of logical operator

背面 (解答)

an operator that is used to decide the path to take through a program if the expression formed is true or false

#16
正面 (问题)

Definition of Boolean operator

背面 (解答)

an operator that is used with logical operators to form more complex expressions

#17
正面 (问题)

Definition of nesting

背面 (解答)

the inclusion of one type of code construct inside another

#18
正面 (问题)

Definition of procedure

背面 (解答)

A set of programming statements grouped together under a single name that can be called to perform a task in a program, rather than including a copy of the code every time the task is performed

#19
正面 (问题)

Definition of function

背面 (解答)

a set of programming statements grouped together under a single name which can be called to perform a task in a program, rather than including a copy of the code every time

#20
正面 (问题)

Definition of parameters

背面 (解答)

the variables in a procedure or function declaration that store the values of the arguments passed from the main program to a procedure or function

#21
正面 (问题)

Definition of MOD

背面 (解答)

an arithmetic operator that returns the remainder of a division; different languages use different symbols for this operation

#22
正面 (问题)

Definition of DIV

背面 (解答)

an arithmetic operator that returns the quotient (whole number part) of a division; different languages use different symbols for this operation

#23
正面 (问题)

Definition of ROUND

背面 (解答)

a library routine that rounds a value to a given number of decimal places

#24
正面 (问题)

Definition of RANDOM

背面 (解答)

a library routine that generates a random number