In an expression containing values of the types int and double, the ________ values are ________ to ________ values for use in the expression.
a. int, promoted, double.
b. int, demoted, double.
c. double, promoted, int.
d. double, demoted, int.
a. int, promoted, double.
Computer Science & Information Technology
You might also like to view...
For The Java statements will result in:
``` String c = "Hello. She sells sea shells"; int i = c.indexOf("ll"); int j = c.lastIndexOf("ll"); ``` a. i = 2 and j = 24. b. i = 3 and j = 24. c. i = 2 and j = 25. d. i = 3 and j = 23.
Computer Science & Information Technology
The preprocessor directives used with the assertion macros is/are
a. #include
Computer Science & Information Technology