PRO192_-_FA_2022_-_FE_232.webp
hirosi212

PRO192_-_FA_2022_-_FE_232.webp

Multiple choices 38/50
Answer (Choose 1 answer)
What will be the result when you attempt to compile and run the following code?.
public class Conv{
public static void main(String argv[]){
}
Conv c=new Conv();
String s=new String("ello");
c.amethod(s);
public void amethod(String s){
char c='H';
c+=s;
System.out.println(c);
Next
}
A. Compilation and output the string "Hello"
B. Compilation and output the string "ello"
C. Compilation and output the string elloH
1
2
3
4
5
6
7
8
9
10
11
12 13
14
15
16 17
18
19 20 21
22
23 24
25
26
27
28
29
30
31
32
33
34
35
36 37 38 39 40
41
42
43
44
45 46
47 48
49
50

Thông tin

Category
PRO192
Thêm bởi
hirosi212
Ngày thêm
Lượt xem
3,469
Lượt bình luận
15
Rating
0.00 star(s) 0 đánh giá

Share this media

Back
Bên trên Bottom