What does Beyonce carry in her bag?
What is Hot Sauce?
Who is the creator of Apple?
Steve Jobs
This type of loop runs for a specific number of iterations, often based on a range of numbers.
What is a for loop?
What does BSCO stand for?
What is Black Students Computing Organization?
Finish the lyric.
You and me will always be tight...
What is "Family every single day and night"?
This term describes a function that calls itself within its definition.
What is recursion/recursive?
Who are the BSCO Membership Chairs?
What is Jordan and Tolani?
What does it mean if your ear keeps itching?
What is Somebody is talking about you?
This data structure implements LIFO (Last In - First Out) principles.
What is a stack?
Who is the Communications Chair for BSCO?
What is Nedu?
Who played Ricky in Boyz in the Hood?
What is Morris Chestnut?
This type of error occurs during the execution of a program and is not detected during compilation.
What is a runtime error?
What are the three pillars of BSCO?
What is Community Security, Academic Support, Corporate Enrichment?
In what year was the NAACP founded?
What is 1909?
Write a snippet of code that takes in a string of words and returns the reversed order.
Ex: input = "Sally sold seashells"
output = "seashells sold Sally"
*s is a String
def function(s):
words = s.split()
t = " ".join(words[::-1])
return t
(doesn't have to be this exactly)
What was BSCO's first meeting after the Welcome Back GBM?
What is Aux Wars?