Which way does the AP Psuedocode arrow point towards?
<--- What is the left?
What is iteration?
What is an algorithm that repeats steps?
Which symbol allows a Python function to accept any number of arguments?
a) &
b) *
c) $
d) #
e) %
What is b?
A school is in a rural area where they don't have reliable internet access at home or school. What is this called?
What is digital divide?
What is the shortened way to say "pixels"?
What is "els"?
How does Python differ from AP Psuedocode in terms of how it's read?
What is read by computers, not humans?
In a flowchart model, what does the diamond shape represent?
What is a conditional step in a process?
What does .append() do?
What is adds a single element to the end of an existing data structure, like a list?
How many bits are in 1 byte?
What is 8 bits?
What is a digital image?
What is a representation of a real image formed by a set of numbers that are stored and handled by a digital computer or device?
What is a logic error?
What is it when a program runs successfully, but produces unintended, incorrect, or unexpected results?
What do you start your conditional process with in order to use elif?
What is an if statement?
What will print?
phrase = "Hello World : )"
print (len ( phrase ) )
What is 15?
Community members contribute to an online shared database of bird sightings in the area to help a local university's research project.
Is this an example of crowdsourcing, crowdfunding, or outsourcing?
What is crowdsourcing?
A megapixel is made up of how many pixels?
What is a million pixels?
Solve 100 % 30
What is 10?
An example of ITERATION in Python would be using a(n):
a.) random function
b.) repeat function
c.) for loop
d.) when loop
What is for loop (C)?
What does myList.remove(i) do?
What is removes the first instance of element 'i' from myList?
A policy that allows people to have access to documents (like research papers) for reading or data (like government datasets) for analysis
a) restricted access
b) isolation
c) rogue access point
d) open access
What is open access (d)?
What is the internet?
What does the internet use?
What is the internet is an interconnected network?
What is the internet uses communication protocols?
What are the 3 steps of the 3-step process?
What is 1. Explain the code in English?
2. Draft code in AP Pseudocode?
3. Code program in Python?
Range(15) includes integers, what to what? Is it inclusive or exclusive?
What are all the integers 0 through 8 inclusive?
What will this code output if the function call is print(guess(2))?
def guess(num):
if num * 2 > 10:
return num - 10
else:
return 10 - num
What is 8?
What is the difference between an overflow and a roundoff error?
What is overflow error happens when a number is too large to fit in the stored memory and roundoff error happens when a number is too precise to be stored exactly, resulting in an approximation?
What was the original internet called?
What was ARPANET (Advanced Research Projects Agency Network)