InterviewSolution
Saved Bookmarks
| 1. |
What is wrong in the following statement? String b;B=”Computer”;p=30;q=50;If(p=q)System.out.println(both nos are equal) |
| Answer» STRING B; b="COMPUTER”; p=30; q=50; if(p=q) { System.out.println("both NOS are EQUAL");} | |