Question: Consider the followings: if ( (ans == 'Y' && errors < 5) || numTries < 10 ) // note uppercase 'Y' count++; Which combinations of

Consider the followings:

 if ( (ans == 'Y' && errors < 5) || numTries < 10 ) // note uppercase 'Y' count++; 

Which combinations of values results in count being incremented after the statement is complete?

(Select all that apply.)

ans = 'Y' (upper case)

errors = 3

numTries = 10

ans = 'y' (lower case)

errors = 4

numTries = 5

ans = 'Y' (upper case) errors = 5 numTries = 10
ans = 'N' errors = 7 numTries = 5
ans = 'Y' (upper case) errors = 100 numTries = 22

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!