This officer is the treasurer.
Who is Ananya?
x = 5 / 2
print(x)
2.5
x = 5 / 2
cout << x;
2
This logical operator has the lowest precedence.
What is or? (||)
The set of GE courses to complete prior to transferring.
What is IGETC?
This officer is an econ major.
True or False:
"CAT" < "cat"
True
Library is needed to handle files.
What is <fstream>?
Type of loop is used when the number of repetitions is known.
What is a for loop?
This website provides all transfer agreements from Community colleges to UCs and CSUs.
What is assist?
This officer's favorite song is beautiful scars.
Who is Trista?
These brackets create a set instead of a list or tuple.
What are curly brackets?
What is rand() % 100 + 1?
semi-pseudocode
x = 0
if x = 0
print x
This set of courses is required for most engineering majors and contains mechanics, electricity & magnetism, and thermodynamics & optics
What is physics?
This officer is a CIS teaching assistant.
Who is Kate?
str = "WiCS"
print(str[2:])
CS
A shortcut for dereferencing a pointer and accessing a member:
ex. *ptr.print()
What is an arow ->
ex. ptr->print
Naming style when variables are separated by underscores.
ex. user_num
Snake Case
This counselor specializes in students majoring in CIS
Who is Trisha Tran?
This officer's favorite food is Gedha.
Who is Jannah?
myList = (0, 1, 2, 3)
myList.append(4)
print(myList)
Syntax Error
When a derived class declares a function with the same name and parameters
What is overriding?
The bigO of a binary search tree (search function).
What is a Olog(N)?
This course can be taken in any language and is a major requirement for most CS and data science majors.
What is 22C: Data structures?