Saved Bookmarks
| 1. |
Give the output of the following expressions:(e) double a = -6.35;double b=14.74;double c=0;c+=a-b;System.out.println(c);(d) char c= ‘A’;int n=c+3;char ch=(char)n;System.out.println(ch);(c) int x=6, y=7,k=6;boolean z= (x==y) || (x |
|
Answer» E) output -21.09 d) output D c) output False |
|