Composing Programs One Flashcards
What do we need to define a computational process?
A programming language.
What are 2 uses of a programming language?
A means for instructing computers to perform tasks and a framework in which we organise ideas about computational processes.
What are 3 mechanisms a programming language has for combining simple ideas to form more complex ones?
Primitive expressions/statements, means of combination(building) and means of abstraction(naming).
What are two kinds of elements we deal with in programming?
Functions and data.
Informally, what is data?
Stuff we want to manipulate.
Informally, what does a function do?
They describe the rules for manipulating data.
Name a primitive expression.
Number
Describe infix notation in an expression.
The operator appears between the operands.
What is the most important type of compound expression?
A call expression, which applies a function to some arguments.
What are three reasons function notation is better than infix notation?
Functions can take an arbitrary number of arguments, for ambiguity can arise because the function name always precedes its arguments. Function expression extends in a straightforward way to nested expressions. Some of the notation can be difficult to type.
What comprises the Python library?
Modules.
What is in a module?
Functions and other quanitities.
If a value has been given to a name, what do we say about the relation to the value and the name?
We say the name binds to the value.
How we do establish new bindings?
With the assignment statement (=).
Name another way names are bound.
With the import statement.
What is assignment an example of?
Abstraction, for it allows us to use simple names to refer to the results of compound operations
What is an environment?
A memory that keeps track of names, values and bindings.
What is another name for names in Python?
Variables, because they can be bound to different values in the course of executing a program.
What is the interpreter doing when it evaluates nested call expressions?
Following a procedure
Name the two steps Python does to evaluate a call expression? And what is this procedures nature?
- Evaluate the operator and operand subexpressions, then
- apply the function that is the value of the operator subexpression to the arguments that are the values of the operand subexpressions.
Recursive
What are the objects at each point in a tree called?
Nodes
What direction do trees grow from?
The top down
What is the complete, full expression at the top of a tree called?
Root
What do we have to do before we evaluate the root in a tree?
We evaluate the subexpressions
What are leaf expressions?
nodes with no branches stemming from them.
What are the two parts of interior nodes?
the call expression to which our evaluation rule is applied and the result of that expression.
What are two different types of functions?
Pure and non-pure
What are the two properties of a pure function?
Applying them has no effects beyond returning a value. A pure function must always return the same value when called twice with the same arguments
What is the property of a non pure function?
A non-pure function can generate side effects, which make some change to the state of the interpreter or computer.
What are the advantages of pure functions?
They can be composed more reliably into compound expressions.
They can be simpler to test as they always return the same value.
How do you define a function?
Function definitions consist of a def statement that indicates a <name> and a comm separated list of <formal> then a return statement called the function body that specifies the <return> of the function.</return></formal></name>
What does an environment consist of? (in detail)
A sequence of frames
What does a frame contain?
Bindings
How many global frames are there?
A single global frame
What is the name (for a function) appearing in the function ?
Intrinsic name
What is the name (for a function) appearing in the frame?
Bound name
Does the intrinsic name for a function play a role in evaluating a function?
No
What does applying a user-defined function introduce?
A local frame
What are the two steps in applying a user defined function?
Bind the arguments to the names of the function’s formal parameters in a new local frame.
Execute the body of the function in the environment that starts with this frame.
What is name evaluation?
A name evaluates to the value bound to that name in the earliest frame of the current environment in which that name is found.
How many jobs should a function have?
One
What is the DRY principle?
Dont repeat yourself. Logic should be implemented once, given a name, and applied multiple times.
How to provide default argument values?
Write argument = x in the def line of the function.
What does control statements allow us to do?
Make comparisons and perform different operations based on the results of comparisons. They are statements that control the flow of a program’s execution based on the results of logical comparisons.
Why are statements different from expressions?
Statements differ fundamentally from the expressions that we have studied so far. They have no value. Instead of computing something, executing a control statement determines what the interpreter should do next.
Are statements or expressions evaluated or executed?
Statements are executed and expressions are evaluated
What is the role of statements?
Statements govern the relationship among different expressions in a program and what happens to their results.
What is Python code, simply?
A sequence of statements?
What is a simple statement?
A line of code that doesnt end in a colon.
Why is it called a compound statement?
Because it is composed of simple and compound statements. Compound statements typically span multiple lines and start with a one-line header ending in a colon, which identifies the type of statement
What is a clause?
Together, a header and an indented suite of statements is called a clause. A compound statement consists of one or more clauses
How do we recursively understand multi-line programs?
To execute a sequence of statements, execute the first statement. If that statement does not redirect control, then proceed to execute the rest of the sequence of statements, if any remain
What is the essential structure of a recursively defined sequence?
a sequence can be decomposed into its first element and the rest of its elements. The “rest” of a sequence of statements is itself a sequence of statements! Thus, we can recursively apply this execution rule.
WHat does a conditional statement in Python consist of?
conditional statement in Python consists of a series of headers and suites: a required if clause, an optional sequence of elif clauses, and finally an optional else clause
What is the computational process of executing a conditional clause?
The computational process of executing a conditional clause follows.
Evaluate the header’s expression.
If it is a true value, execute the suite. Then, skip over all subsequent clauses in the conditional statement.
What is an expression in boolean context?
The expressions inside the header statements of conditional blocks are said to be in boolean contexts: their truth values matter to control flow, but otherwise their values are not assigned or returned.