Question: QUESTION 9 What does the following program segment display? int f = 7, s = 15; f = s % 2; if (f != 1)

QUESTION 9 What does the following program segment display? int f = 7, s = 15; f = s % 2; if (f != 1) { f = 0; s = 0; } else if (f == 2) { f = 10; s = 10; } else { f = 1; s = 1; } WriteLine(" " + f + " " + s); 7 15 0 0 10 10 1 1 none of the above

QUESTION 10 What is displayed when the following code executes? score = 0; if (score > 95) Write("Congratulations! "); Write("That's a high score! "); Write("This is a test question!"); This is a test question! Congratulations! That's a high score! This is a test question! That's a high score! This is a test question! Congratulations! That's a high score! none of the above

QUESTION 11 The single equal symbol (=) is: the operator used to test for equality used for comparing two items used as part of an assignment statement considered a logical compound operator all of the above

QUESTION 12 If aValue and bValue are both defined as integers, the result of the expression if (aValue == bValue) is: aValue 10 an integer value true or false determined by an input statement

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!