Chapters 1-3 Terms – Flashcards

Unlock all answers in this set

Unlock answers
question
follows instruction to perform a task
answer
This is what a computer device does...
question
program
answer
this a set of instructions that the computer follows
question
algorithm
answer
this is a set of well-defined logical steps that must be taken in order to perform a task
question
machine language
answer
this is the only language that a computer understands
question
binary
answer
this is a number that consists of only 1's and 0's
question
a programming language
answer
a program written in this is much easier for people to understand than a program written in machine language
question
complier
answer
this translates a program into machine language
question
key words
answer
these are the words that make up a programming language
question
syntax
answer
this is a set of rules that must be strictly followed when writing a program
question
syntax error
answer
if a program contains even one of these, it cannot be translated into an executable program
question
object tree
answer
this is the part of the Alice environment that holds a list of all the objects in the world
question
properties
answer
each object in an Alice world has these, which are values that specify the object's characteristics
question
methods
answer
this is a set of programming statements that an object can execute
question
class
answer
this is a description of a particular type of object; you can think of it as a blueprint that objects may be created from
question
instance of a class
answer
in programming terminology, this is what objects are called
question
bounding box
answer
this is a yellow box that appears around an object to indicate that it is selected
question
details panel
answer
this is the part of the Alice environment where an object's properties are displayed
question
six
answer
this is how many degrees of freedom objects in a 3D world have
question
center point
answer
this is what an object turns around when you rotate it
question
forward
answer
when an object is selected you see three axes displayed in or near the object, which indicate the objects orientation. This is the direction in which the blue axis points.
question
primitive methods
answer
this what all objects in an Alice world have
question
first- direction, second- distance/amount
answer
the primitive move method requires two arguments. What are they?
question
calling the method
answer
when programmers execute a method, which is what they commonly say they are doing..
question
argument
answer
this is a piece of information that a method requires in order for it to execute
question
custom
answer
this is a method that only objects of a specific class have
question
camel Case
answer
this is the naming convention in which monkeySee is written
question
Pascal Case
answer
this is the naming convention in which WhiteRabbit is written
question
camel Case
answer
this is the naming convention in which object names and method names should be written
question
Pascal Case
answer
this is the naming convention in which class names are written
question
pseudocode
answer
this is a way of writing out the steps of an algorithm in English
question
flowchart
answer
this is a graphical diagram that depicts the steps in a diagram
question
logical error
answer
this is a mistake that does not prevent the program from running, but causes it to produce incorrect results
question
comment
answer
this is a note of explanation that is inserted into a program
question
Do together
answer
this is a structure that causes a group of instructions to be executed simultaneously
question
Do in order
answer
this is a structure that causes a group of instructions to be executed in the order that they appear inside the structure
question
a method
answer
This is what a local variable belongs to
question
the variables type is number
answer
What is meant when the characters 123 appear on a variable tile?
question
set instruction
answer
This type of instruction changes the contents of a variable
question
a variable assignment
answer
This is what an instruction that set s a variable to a value is often called.
question
a function returns a value back to the instruction that called the function
answer
This is the difference between a method and a function
question
ask user for a number
answer
This world function allows the user to enter a number, and returns that number
question
distance to
answer
This primitive function returns the distance from one object's center point to another object's center point.
question
*
answer
This symbol is used as the multiplication operator in most programming languages
question
ask user for a string
answer
This world function allows the user to enter a string, and returns that string.
question
string concatenation
answer
This is what joining two strings is also known as
question
the a joined with b function
answer
What world function do you use to join two strings?
question
the what as a string function
answer
What world function do you use to convert a non-string object to a string?
question
computer
answer
a device that follows instructions for manipulating and storing data
question
speed slider control
answer
how do you control the speed at which a world is played
question
world view window
answer
what part of the Alice environment displays a view of the world, as seen through the camera?
question
tile
answer
graphical building blocks, into an editor fully functional programming statements that you can easily customize
question
color property and opacity
answer
what is the name of the property that determines an objects color? what is the name of the property that determines whether you can see through an object?
question
class
answer
a description of a particular type of object, written in programming statements
question
classes
answer
what is stored in the Alice galleries
question
scene editor mode
answer
when you click the "add objects" button, what mode does Alice go into?
question
object, its lowercase
answer
In an Alice world, would the word dog be the name of a class, or the name of an object? how can you tell?
question
detail panel
answer
in what area of the alice environment do you select an objects properties
question
up and down button
answer
which mouse mode button is not displayed when in quad view mode?
question
Pascal Case
answer
what naming convention are class names written
question
camel Case
answer
what naming convention should you use for object names? for method names?
question
variable
answer
a storage location that is represented by a name
question
string
answer
a sequence of characters
question
local variable
answer
belongs to a specific method. It can be used only by the method the variable belongs to. When a method stops executing, it cease to exist in memory.
question
Parameter variables
answer
variable is used to hold an argument that is passed to a method when the method is called.
question
Class-level variables
answer
like a property that belongs to a specific object
question
World-level variables
answer
A world -level variable is like a property that belongs to the world.
question
name
answer
must be unique within method, must be meaningful, must use camelCase convention
question
function returns a value back to the instruction that called it, and a method does not.
answer
The difference between a function and a method
question
Ask User Functions
answer
When asking the user for a value, you must use the World's
question
proximity
answer
These functions return values indicating the object's proximity to other objects
question
size
answer
return values pertaining to the size of the object
question
Spatial relation
answer
return values indicating the object's position relative to other objects
question
dot notation
answer
commonly used by object oriented programming languages to distinguish an object from its methods, properties, functions, etc.
question
move to
answer
moves centerpoint of object to centerpoint of second object (this one is passed as an argument)
question
orient to
answer
aligns axes of object so that all three point in the same directions as the axes of the second object (passed as an argument)
question
point at
answer
object is tilted so that is forward axis is aiming at the second object's center point (passed as an argument)
question
set point of view to
answer
makes location and orientation of object match the location and orientation of second object.
Get an explanation on any task
Get unstuck with the help of our AI assistant in seconds
New