int a=1;
float b=1.0;
System.out.println(a==b);
Answers were Sorted based on User's Feedback
Answer / dsr
int a=1;
float b =1.0; //error
System.out.println(a==b);
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / john
what is the output fr this C code ? AND WHY ?
main()
{
int a=1;
float b=1.0;
if(a==b)
printf("true");
else
printf("false");
}
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / john
main()
{
int a=1;
float b=1.0;
if(a==b)
printf("true");
else
printf("false");
}
what will be the output for this ?
| Is This Answer Correct ? | 0 Yes | 2 No |
if i have one string class then how can you achive this class functionality of this class?
How to create a base64 decoder in java8?
Assume a thread has lock on it, calling sleep() method on that thread will release the lock?
Explain why wait(), notify() and notifyall() methods are in object class rather than in thread class?
explain the difference between jdk and jvm?
Can we have two main methods in a java class?
what is server side caching?
What is the difference between @before and @beforeclass annotation?
What is void class in java?
What does this () mean in constructor chaining concept?
What do you mean by garbage collection used in java?
What is an event?