Match concepts with their deÕnition.
An error in a program.
bug
The process of Õnding and removing any of the
three kinds of programming errors.
debugging
Any one of the languages that people have
designed for spe
...
Match concepts with their deÕnition.
An error in a program.
bug
The process of Õnding and removing any of the
three kinds of programming errors.
debugging
Any one of the languages that people have
designed for speciÕc purposes, such as
representing mathematical ideas or computer
programs; all programming languages are this kind
of languages.
formal language
A programming language like Python that is
designed to be easy for humans to read and write.
high-level language
A program that reads another program and
executes it.
interpreter
A programming language that is designed to be
easy for a computer to execute; also called
machine language or assembly language.
low-level language
Any one of the languages that people speak that
evolved naturally.
natural language
To examine a program and analyse the syntactic
structure.
parse
A property of a program that can run on more than
one kind of computer.
portability
An instruction that causes the Python interpreter to
display a value on the screen.
print statement
The process of formulating a problem, Õnding a
solution, and expressing the solution.
problem solving
a sequence of instructions that speciÕes to a
computer actions and computations to be
performed.
program
A program stored in a Õle (usually one that will be
interpreted).
scriptQuestion 2
Correct
Mark 1.00 out of
1.00
Question 3
Correct
Mark 1.00 out of
1.00
One of the basic elements of the syntactic structure
of a program, analogous to a word in a natural
language.
token
The structure of a program.
syntax
Given a Python dictionary d and a value v, it is eÞcient to Õnd the
corresponding key: d[k] = v.
Select one:
True
False
Which one of the following Python expressions generates a syntax error?
Select one:
a. 8 ^ 2
b. 8 ** 2
c. 8 +- 2
d. 8 += 2
e. 8 -+ 2
Your answer is correct.Question 4
Correct
[Show More]