The overall complexity of a program depends upon the number of Branch Points. If there are 10 true/false decisions then in theory there are 210 = 1024 different paths through the program. Testing should try to test all possible paths.
In practice, any non trivial application will have many thousands of Branch Points.

