CSP206Final

Is this your test? Login to manage it. If not, you can develop a test just like it.

This is a non-interactive preview of the quiz content.

1.
2 points
In computing,________________ is a process in which objects are defined in terms of other objects of the same type. It is a function (procedure) that calls itself!
2.
2 points
Setting up your website used software that was provided as a free service by Weebly. Your website lives on the internet. Basically, you don't know exactly where your portfolio page is stored, as you would if it were a product (like Microsoft Word) on your home computer.

This is an example of:



The above information is an example of:
3.
2 points
Select the BEST answer to fill in the blank:

Your computer successfully creates the illusion that it contains photographs, letters, songs, and movies. All it really contains is________, lots of them, patterned in ways you can’t see.
4.
2 points
In computer Science building your own block/ creating your own function is an example of ___________________.

Select the BEST answer.
5.
2 points
The "PURPOSE" in Games With A Purpose refers to all of the following EXCEPT:


Select the BEST answer.
6.
2 points
A command block is _________________________.
7.
2 points
Set NUMBER to 3
Repeat until NUMBER >6
---- change NUMBER by 1
---- add NUMBER to LIST1

Based on the above block, which of the following values are possible for the result of LIST1 after this block runs
8.
2 points

Repeat until x>10
if x is even, x +1
if x is odd, x +2

Select the BEST answer below
9.
2 points
In computer science, arguments can be provided to a block. This can include typing from the user, or data received from the network.


The above sentence refers to:
10.
2 points
The process of repeating a set of instructions a specified number of times, until a specific result is achieved, or until the program closes is defined as____________.
11.
2 points
A system that perceives its environment and takes actions that maximize its chances of success is known as _________________.
12.
2 points
Pseudocode is best described as_________________.
13.
2 points
A variable is a symbol that represents a memory location where a piece of data can be stored.
14.
2 points
Select the BEST answer:

In computer programming, creating a list can be useful for all of the following EXCEPT
15.
2 points
What is Cryptography?
16.
2 points
Which of the following statements BEST defines abstraction
17.
2 points
Select the BEST example of data and information. data/information

18.
2 points
I am writing a program to keep score. I perform the following:

Set SCORE1 to 0

Select the BEST answer below:
19.
2 points
Let us say that you are trying to create a program that lets you play Monopoly on your computer. You will probably want to use a variable to keep track of how much money you have as the game progresses. In Monopoly, each time you pass the Go square, you get $200. If you are keeping track of your money in a variable, which of the following blocks would be most appropriate for changing the amount of money you have when you pass Go? Choose one answer.
20.
2 points
If score is > 10, say "Great job!"


Select the BEST description for the example above.