Font size
WorksheetsCSP EOC Review
Total questions: 118
Worksheet time: 2hrs 46mins
The != operator stands for
"Not equal"
"Equal"
"True"
"False"
|| stands for
And
Or
Not
Not equal
&& stands for
Or
Not
Not equal
And
The || operator,
Both sides of the logical expression has to be true in order to print out "true".
Both
Only one side of the logical expression has to be true in order to print "true".
Both
Software, such as Dr. Java and Eclipse, that provides tools that enable a developer to code, test and implement a program is called __________ __________ __________ software? (hint: the initials are IDE)
Integrated Development Environment
Integrated Diverse Environment
Internal Development Environment
Integrated Development Exercise
_________________ is the term in programming used to describe the concept of an object being composed of other objects. For example, a Menu bar object can include a File menu object, Edit menu object, and Tools menu object.
(Hint: the words starts with an “A”)
Age
Appreciate
Application
Aggregate
Explain the purpose of % operator in programming
The purpose of the % operator is to divide two variables and print out the remainder only.
The purpose of the % operator is to multiple two variables and print out the remainder only.
The purpose of the % operator is to add two variables and print out the remainder only.
The purpose of the % operator is to subtract two variables and print out the remainder only.
Programming in which programming instructions are packaged into a single unit is called ___________ __________ __________ . (Hint: the initials are OOP)
Object Operation Programs
Operation Object Plan
Object Oriented Programming
Object Operation plan
What is a peer walk through?
A peer walk through in programming is implemented by the public to check code for accuracy and quality
A peer walk through in programming is implemented by testers to check code for accuracy and quality
A peer walk through in programming is implemented by coaches to check code for accuracy and quality
A peer walk through in programming is implemented by coders to check code for accuracy and quality
In programming the concept of _______________ refers to how a subclass inherits functionality from its superclass. It is also referred to as subclassing, is a very efficient way to reuse code. (Hint: the words starts with an “I”)
Inhaul
Inhumane
Inhibit
Inheritance
Explain the difference between an alpha release and a beta release in The Software Release life cycle.
An Alpha Release has less bugs, is used for demonstration purposes, and ends in a feature freeze. While a Beta Release is closer to the final product, and can be released to the general public in either an closed group only.
An Alpha Release has more bugs, and ends in a feature freeze. While a Beta Release is closer to the final product, used for demonstration purposes and can be released to the general public in either an open or closed group.
An Alpha Release has less bugs, is used for demonstration purposes. While a Beta Release ends in a feature freeze is closer to the final product, and can be released to the general public in either an open or closed group.
An Alpha Release has more bugs, is used for demonstration purposes, and ends in a feature freeze. While a Beta Release is closer to the final product, and can be released to the general public in either an open or closed group.
Many requests made to the same IP address to make the site crash?
Redirecting a site's IP to a similar, fake site to collect user input information?
print(Hello world!)
print("Hello world!")
print(3+4)
print("3+4")
print(3*4)
print(3*4+5)
print(9/3)
print(9/3*2+4-5)
print("Hello" + "world!")
print("Hello" + 2 + "world")
name = input("What is your name?")
7 % 5
print (people[1])
What would this result be?
print (people[-1])
What would this result be?
print (people[4])
what would this result be?
var = "Santa Gema"
print var[2]
Score = Score + 1
len(“love”)
and, or, ____
