why java does not support unsigned keyword?
Answer / dubeysunny74@gmail.com
In Java all data type by default signed so there is no keyword
unsigned.
| Is This Answer Correct ? | 2 Yes | 0 No |
What is the program development process?
What is the format of Inner Class after it compiled?
When object is created and destroyed?
What is a 16 bit word?
What is keyword auto for?
long d =10;int i =0;i=d; /// is this possible? If d is very long number (10 digits or some thing) then?
How do you start a new line in java?
What does exp mean in math?
What is the class in java?
Keywords in Exceptions?
What is the difference between Static and final?
Write an algorithm program in java for the following question.. 1) S is a set of integers.X is an integer obtained by sum of two digits in S. Write logic for whether or not the X is from the S. The time of algorithm should not exceed o(n logn).