long d =10;int i =0;i=d; /// is this possible? If d is very
long number (10 digits or some thing) then?
Answer Posted / chaitanyaelluru
Yes,It is possibel through casting.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What causes memory leak in java?
Explain access specifiers?
What is the difference between call by reference and call by pointer?
What is the synchronized method modifier?
What are different types of references?
Do you know why doesn't the java library use a randomized version of quicksort?
What is foreach loop in java?
What is meant by flickering?
What does jenkins do?
What are the data types supported by java?
What is java string pool?
What is the type of lambda expression?
What is java life cycle?
What is * argv?
I want to control database connections in my program and want that only one thread should be able to make database connection at a time. How can I implement this logic?