Computer Applications
if ((a > b) && (a > c)), then which of the following statements is true?
- a is the largest number.
- b is the largest number.
- c is the largest number.
- b is the smallest number.
Related Questions
Predict the output of the following code snippet:
int a = 1; int b = 2; if (a == b) System.out.println ("Both values are equal"); else System.out.println ("Values are not equal");
Consider the following code snippet:
if ( c > d) x = c; else x = d;
Choose the correct option if the code mentioned above is rewritten using the ternary operator:
Consider the following code snippet:
int val = 2; switch (val) { case 1: System.out.println("Case 1"); break; case 2: System.out.println("Case 2"); break; default: System.out.println("No match found"); break; }
Which of the following statements is correct?
A sequence of statements enclosed between a pair of curly brackets is called