What are use cases?
Give this one a try later!
lists of user actions and system responses
Why is a Node typically defined as a struct in the private part of the host class?
, Give this one a try later!
a struct's data members are public by default
If N = size / 2 and M = size * size, what is the big-O of the following?
for (i = 0; i < N; ++i) { // statements}
for ( j = 0; j < M; j++) { //statements}?
O(max(N,M))
O(NxM)
O(n^2)
O(n)
Give this one a try later!
O(n^2)
What is true of translation units?
Give this one a try later!
compiled into object files, joined by the linker
Both the client and programmer can do _____testing. Typically only the ______ does ______
testing. Black box; client; functional; programmer; white box; glass box; closed-box.
Give this one a try later!
Give this one a try later!
lists of user actions and system responses
Why is a Node typically defined as a struct in the private part of the host class?
, Give this one a try later!
a struct's data members are public by default
If N = size / 2 and M = size * size, what is the big-O of the following?
for (i = 0; i < N; ++i) { // statements}
for ( j = 0; j < M; j++) { //statements}?
O(max(N,M))
O(NxM)
O(n^2)
O(n)
Give this one a try later!
O(n^2)
What is true of translation units?
Give this one a try later!
compiled into object files, joined by the linker
Both the client and programmer can do _____testing. Typically only the ______ does ______
testing. Black box; client; functional; programmer; white box; glass box; closed-box.
Give this one a try later!