int i = 0;
while (i < 5) {
System.out.print(i+" "); }
while (i < 5) {
System.out.print(i+" "); }
Anonymous Quiz
48%
0 1 2 3 4
12%
0 1 2 3 4 5
21%
the loop will never end
19%
ERROR
👍1
int i = 0;
do {
System.out.print(i+" "); i++; } while (i < 5);
do {
System.out.print(i+" "); i++; } while (i < 5);
Anonymous Quiz
60%
0 1 2 3 4
18%
0 1 2 3 4 5
22%
the loop will never end
جافا Java
Photo
ماهي مخرجات البرنامج
Anonymous Quiz
21%
0 1 2 3
17%
0 1 2 3 4
46%
0 1 2 3 5 6 7 8 9
17%
0 1 2 3 4 5 6 7 8 9
ماهو الفرق بين Referencedata types و Primitive data types
مع ذكر امثله الاجابه في جروب المناقشة
مع ذكر امثله الاجابه في جروب المناقشة
Variable : a location in main memory that holds only onevalue of a particular data type at , but that value can not be changed
Anonymous Quiz
59%
True
41%
False