Computer Applications
Which of the following is NOT an access specifier?
- private
- protected
- package
- public
Related Questions
Which of the following occupies 2 bytes of storage?
- 25
- AM
- 35.2
- \\
In a statement
c = c + (x * d + e);which variable is an accumulator?- d
- c
- e
- x
What is the output of the statement
Math.pow(36, 6/5);?- 36.0
- 1.0
- 73.71
- 6.0
Read the if program segment given below:
if(a > b) z = 25; else z = 35;Which one of the following is the correct conversion of the if program segment to ternary?
- z = a > b ? 35 : 25;
- z = a > b ? 25 : 35;
- z = a > b : 35 ? 25;
- z = a > b : 25 ? 35;