The amount of time a SFE checker collects data at a FCA
What is one hour?
The busiest subway station, with 64,531,511 annual riders passing through in 2016
What is Times Square (N/Q/R/W/S/1/2/3/7/ 42 St A/C/E)?
This is the output of the following Python code
True = False
while True:
print(True)
break
What is SyntaxError?
(True is a keyword and it’s value cannot be changed)
The name of an nxn matrix with 1 entries on the diagonal and 0 entries elsewhere as shown
What is the identity matrix?
The number of edges in a K_13
What is 13 choose 2 = 78?
The number of hours a checker needs to work in order to get a paid 30 minute lunch break
What is 7?
The percentage of subway stops that are underground.
What is 60%?
This is the output of the following code fragment:
list = ['a', 'b', 'c', 'd', 'e']
print (list[10:])
What is []?
(there won’t be any error like an IndexError)
An nxn (0,1)-matrix with entries defined as follows:
What is an adjacency matrix?
The clique number of the graph below
What is 4?
The minimum target for sample completion each month?
What is 80%?
The only subway line that does not make any stops in Manhattan.
What is the G train?
Suppose list1 is [2, 33, 222, 14, 25]. Then this is list1[:-1]
What is [2, 33, 222, 14] ?
The eigenvalues of this matrix
What are -1 and -2?
A Hamiltonian circuit in the graph shown
What is
The number of round-trips a BFA checker is currently scheduled to make daily
What is 2?
Jay Z's name honors the J & Z subway lines in this borough, his hometown
What is Brooklyn?
This is the output of the following Python code:
x = "abcdef"
while i in x:
print(i, end=" ")
What is NameError?
(i is not defined)
The projection of (a,b,c) onto the z-axis?
What is (0,0,c)
The minimum spanning tree of this graph
What is
The number of hours a part-time checker works
What is 6 hours?
The train line with the longest route.
What is the A line?
The 31-mile journey carries passengers from 207th St. in Manhattan, to Far Rockaway in Queens
This is the output of the following Python code:
A = [[1, 2, 3],
[4, 5, 6],
[7, 8, 9]]
[A[i][i] for i in range(len(A))]
What is [1, 5, 9]?
Another word for a singular matrix, such as the one below:
What is invertible?
The minimum cost from vertex b to vertex f
What is 6?