<h2>double, long, float, short, byte</h2>
Explanation:
The given data types are built-in types. According to java, the following holds right to justify the order.
Double:
- This occupies 64 bits
- It can hold decimal values
- Example: "1.23456e300d, -1.23456e-300d, 1e1d"
Float:
- It occupies 32 bits
- Holds decimal values
- Example: "1.23e100f, -1.23e-100f, .3f, 3.14F"
Long:
- It occupies 64 bits
- Example: "-2L, -1L, 0L, 1L, 2L"
Short:
- It occupies 16 bits
- Stores twos complement integer
Byte:
- Stores twos complement integer
Answer:
The answer to this question is given below in the explanation section. the correct option is C.
Explanation:
This is Java code statement:
System.out.print("Computing\nisInfun");
The output of this code statement is
Computing
isInfun
However, it is noted that the C option is not written correctly, but it is guessed that it will match to option C.
This Java code statement first prints "Computing" and then on the next line it will print "isInfun" because after the word "Computing" there is a line terminator i.e. \n. when \n will appear, the compiler prints the remaining text in the statement on the next line.
Answer:
C
data converted from double to integer.
Answer:
C language does not support strings as a data type. A string is actually one-dimensional array of characters in C language. These are often used to create meaningful and readable programs.
Explanation:
I believe it is, A. taskbar