Term
|
Definition
| Source code, compiler, machine code, execute |
|
|
Term
|
Definition
|
|
Term
|
Definition
| Distribution and portability |
|
|
Term
|
Definition
| Source code, interpreter, execute |
|
|
Term
|
Definition
|
|
Term
| Why not use an interpreter? |
|
Definition
|
|
Term
| Where does python fall in this divide. |
|
Definition
Somewhere in the middle. Source code, compiler, bytecode, interpreter, execute |
|
|
Term
| With python being in the middle what is the result of case scenarios? |
|
Definition
| Best and worst of both world case scenarios. |
|
|
Term
TRUE or FALSE print ((5 >= 1) and (3 <= 5)) |
|
Definition
|
|
Term
TRUE or FALSE non-zero output |
|
Definition
|
|
Term
| What is the program for the Fibonacci series |
|
Definition
while b < 10:
...print a,b
...a,b = b, a + b |
|
|
Term
|
Definition
|
|
Term
|
Definition
Only goes one direction
[image] |
|
|
Term
|
Definition
Goes forward and backward
[image] |
|
|
Term
|
Definition
when you push a number into a stack
[image] |
|
|
Term
| Dequeque() and Enqueque() |
|
Definition
When you pus a number through a tube
[image] |
|
|
Term
|
Definition
| divides the input data of a software unit into partitions of equivalent data from which test cases can be derived. |
|
|
Term
| build a general recursion program |
|
Definition
#the basics of recursion def foo(n): ...if not n: ......return n
...else:
.......return foo(n) |
|
|