Step 3 in problem solving is to identify alternative ways to solve the problem. This means:

a. To define the knowledge base of all participant
b. To write a list of pros and cons for each solution.
c. To identify as many solutions as possible to the problem.
d. To identify a few solutions to the problem.

c. To identify as many solutions as possible to the problem.

Computer Science & Information Technology

You might also like to view...

Function MySQLdb.connect and Cursor method execute raise an________exception when they fail.

a) MySQLdb.DatabaseError. b) MySQLdb.OperationalError. c) MySQLdb.DBError. d) None of the above.

Computer Science & Information Technology

What is the output for the following code segment:

int a = 1; int b = 5; if (a + b < 6) cout << a; else cout << b; cout << a + b;

Computer Science & Information Technology