long d =10;int i =0;i=d; /// is this possible? If d is very
long number (10 digits or some thing) then?
Answers were Sorted based on User's Feedback
Answer / vicks
this is possible by using Type Casting, But there is an
exception occure "LostOfPressesions". because "Long" having
64bit (8 Bytes) of memory bolck, on the other hand "int"
having only 32bit (4 Bytes) of memory. which is less then
long. there is a case to lost some amount of data.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / vijayakumar chinnasamy
It display compile time error. Cant convert form long to
int. becacuse it -2 32 bit and long is 64bit, so u need to
type case the long value into int value.
| Is This Answer Correct ? | 1 Yes | 2 No |
I want to persist data of objects for later use. What’s the best approach to do so?
Java is based on pass by reference or pass by value ..
Why do people says “java is robust”?
What is the default execution method in java?
how can you retrive information from database by using hashmap/arraylist ,plz explain with example briefly?
What happens if a try-catch-finally statement does not have a catch clause to handle an exception that is thrown within the body of the try statement?
Is string a data type in java?
How the interruptible method gets implemented?
What is the purpose of the File class?
What are daemon Threads in java?
Write a java program to count the number of words present in a string?
How can you make sure that your singleton class will always return single instance in multi-threaded environment?