Multiple choices 29/50
Answer (Choose 1 answer)
Which could be the possible output of the below program?
class People {
int id;
People(int id) {
Next
this.id = id;
}
@Override
public String toString() {
return id;
}
}
public class Test {
public static void main(String[] args) {
}
Test t1 = new Test();
People p1 = new People(101);
System.out.println(t1 + " " + p1);
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