primitive data types in Java ?
Answers were Sorted based on User's Feedback
Answer / ranganathkini
byte, short, int, long, float, double, char, boolean
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / vijayakumar chinnasamy
Primitive data type:
====================
1 Numeric: type
a. whole numbers: byte,short,int,long
b.float numberis: float,double
2.character type
char
3.Boolean type
boolean
Abstract data type (ADT):
========================
String
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / ravikiran(aptech mumbai)
byte
short
int
long
float
double
char
| Is This Answer Correct ? | 5 Yes | 4 No |
What is the difference between dom and sax parser in java?
what is java
What is use of functional interface in java 8? Explain
What is the default value of the local variables?
How do you do absolute value in java?
what is difference between abstract and interface? can i give real time example for the two topics?
How will you call an Applet using Java Script Function?
What is the difference between numeric and integer?
What happens to the Exception object after handling an exception?
Does importing a package imports its sub-packages as well in java?
What is JDK? Mention the variants of JDK?
What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } } 10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } }