Can a Byte object be cast to a double value?
Answers were Sorted based on User's Feedback
Answer / roshan
yes, a byte object can be cast into double value. This is
done through auto-boxing concept of java that was
introduced in jdk 1.5.0. Using auto-boxing we can assign a
object into preemitive value and preemitive into object.
| Is This Answer Correct ? | 25 Yes | 1 No |
Answer / shweta
No, an object cannot be cast to a primitive value.
| Is This Answer Correct ? | 19 Yes | 9 No |
Answer / rajesh dangi
Byte object can not be casted into primitive type. What we
can do is to create a double variable and get the value of
Byte object converted to it. There are many vays to do that
| Is This Answer Correct ? | 7 Yes | 4 No |
we have two threads..both the threads are reading the data.. is there any need of synchronization there?...justify it?
Why is an interface be able to extend more than one interface but a class can’t extend more than one class?
What is the symbol for average?
Why java doesn’t support multiple inheritances?
What if I write static public void instead of public static void in java?
What is the difference between notify and notifyall method?
What is an image buffer?
can we have virtual functions in java?
What is Overriding and how can it be used?
How does compareto method work?
What is vector?
Difference between string, string builder, and string buffer?