Consider this code: if A < B then exchange A and B: endif if...
Consider this code: if A < B then exchange A and B: endif if B < C then exchange B and C: endif if A > D then exchange A and B; endif What is the cyclomatic complexity of this code? (Note: Express your answer as a number. For example 1, 2, 3, etc.)
Read Details