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 uses the concept of the string literal?
Is ++ operator thread-safe in java?
3) Suppose you are a very rich person, having 50 rooms and you have lost the key for one of the room's. How effectively you can find this key? (Qs2 and Qs3 are related)
Why is java so popular?
Write a program to find the whether a number is an Armstrong number or not?
Difference between association, composition and aggregation?
What are the Abstract Classes provided by Java?
What happens when main () method is declared as private?
Which access specifier can be used with class ?
Explain what is encapsulation?
What is the difference between Java and C++?
0 Answers Integreon, TCS, ZS Associates,
What is the purpose of the finally clause?