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 |
Why java is a platform independent? Explain
Variable of the boolean type is automatically initialized as?
how to print output with out using sop statements
How do I print a “?
What is the advantage of functional interface in java 8?
Can variables be used in java without initialization?
Why is the singleton pattern considered to be an anti pattern?
What is an object in java and how is it created?
What is collection sort in java?
Is java a software?
What is the purpose of premetive data types in java?
What is tostring () method?