silshack.github.io

Website:http://silshack.github.io
Upvotes received0
Downvotes received1
Karma:0 (upvotes-downvotes)



0 earned Badges

No badges were found



Definitions (38)

1

0 Thumbs up   0 Thumbs down

activecode


A unique interpreter environment that allows Python to be executed from within a web browser. Our textbook and our class site use activecode to make runnable Python.
Source: silshack.github.io

2

0 Thumbs up   0 Thumbs down

algorithm


A general step by step process for solving a problem.
Source: silshack.github.io

3

0 Thumbs up   0 Thumbs down

bug


An error in a program.
Source: silshack.github.io

4

0 Thumbs up   0 Thumbs down

byte code


An intermediate language between source code and object code. Many modern languages first compile source code into byte code and then interpret the byte code with a program called a virtual machine.
Source: silshack.github.io

5

0 Thumbs up   0 Thumbs down

codelens


An interactive environment that allows the user to control the step by step execution of a Python program
Source: silshack.github.io

6

0 Thumbs up   0 Thumbs down

comment


Information in a program that is meant for other programmers (or anyone reading the source code) and has no effect on the execution of the program. In Python, comments are written after #
Source: silshack.github.io

7

0 Thumbs up   0 Thumbs down

compile


To translate a program written in a high-level language into a low-level language all at once, in preparation for later execution.
Source: silshack.github.io

8

0 Thumbs up   0 Thumbs down

debugging


The process of finding and removing any of the three kinds of programming errors. Read more about debugging in our textbook here
Source: silshack.github.io

9

0 Thumbs up   0 Thumbs down

exception


Another name for a runtime error.
Source: silshack.github.io

10

0 Thumbs up   0 Thumbs down

executable


Another name for object code that is ready to be executed.
Source: silshack.github.io


To view all 38 definitions, please sign in.