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 |
What is the smallest package in Java API?
Name the packages in JDK?
What is bytecode in java ?
How the elements are organized in BorderLayout?
I/O blocking means?
how session will be expired?
What is the purpose of using break in each case of switch statement?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What is the main function in java?
what invokes a threads run() method? : Java thread
what is the difference between thread and runnable types? : Java thread
What is not thread safe?