Data Types
Pandas & Matplotlib
Sorting Algorithms & Time Complexity
Computer Memory
Wildcard
100

What sort of data type do we use to store a single word?

What is a string?

100

What is the pandas package used for? 

What is creating and manipulating dataframes?
100

What is the default order for lists to be sorted in?

What is ascending?

100

What does ROM stand for?

What is read-only memory?

100

What do we call the template for creating an object?

What is class?

200

What is the difference between an integer and a float?

What is a decimal places?

200

What command is used to display a plot?

What is plt.show()?

200

What two things does time complexity measure the relationship between?

What is the input size and the number of steps taken (or time)? 

200

What is the term for the number of cycles a CPU executes per second?

What is clock speed?

200

What command is needed to make a label appear on a window when using tkinter?

What is label.pack()?

300

What data type is A=[(1,2),('dog','cat'), (7.6,3.4)]?

What is a list of tuples?

300

What is the term given to the labels along every data point on either the x or y axes? 

What are ticks?

300

What is the time complexity of insertion sort?

What is O(n^2)?

300

What type of computer memory is fastest?

What is cache?

300

Where are the calls to a recursive function and its local variables stored?

What is the stack?
400

If I write library["no_of_books"], what data type is library? 

What is dictionary?
400

What command is get rows or columns at a certain index positions from dataframes? 

What is iloc?

400

In what scenario might an algorithm with time complexity O(n^2) be a better choice than one with O(1)? 

What is the data being of a very small size? 

400

In what form does computer memory store data?

What is binary?

400

How do you specify a hyperlink in HTML? 

What is href?

500

What are the two main differences between tuples and lists?

What is tuples being immutable and using less memory?

500

What command is needed to combine two dataframes along a common column?

What is pd.merge?

500

Where does merge sort get the log(n) component of it's time complexity from?

What is the repetition of division by 2 until the sub-arrays reach size 1?

500

What does SRAM use to store data?

What is a flip-flop circuit?
500

For what problem (that we have covered) is a greedy algorithm guaranteed to find the optimal solution? 

What is the scheduling problem?

M
e
n
u