Which of the following is not a basic activity of agile development?

A) coding
B) listening
C) documenting
D) designing


C) documenting

Computer Science & Information Technology

You might also like to view...

When you define a C++ class so that the result is an ADT, which of the following remarks about whether to make a member variable or function public or private are correct?

a) Make them all public. It simplifies life and makes things more efficient to be able access members anywhere. b) Don’t make member variables public. c) Make all member functions public. d) There are some member functions that shouldn’t be public, but most should be public.

Computer Science & Information Technology

The keyboard shortcut to move to cell A1 is ________

A) Home B) Ctrl + Home C) Shift + Home D) Alt + Home

Computer Science & Information Technology

If gPtr is a pointer that points to the first element of an integer array (and each integer requires four bytes of storage), ____ references the variable that is three integers beyond the variable pointed to by gPtr.

A. *gPtr + 3 B. *(gPtr + 3) C. *(gPtr + 3 * 4) D. *(gPtr + 3 / 4)

Computer Science & Information Technology

The ____ algorithm is used to find the shortest path between any two nodes in a graph.

A. minimum spanning tree B. Edsger C. Dijkstra D. breadth first

Computer Science & Information Technology