es
Feedback
جافا Java

جافا Java

Ir al canal en Telegram

ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم

Mostrar más
6 286
Suscriptores
-324 horas
-177 días
-7530 días
Atraer Suscriptores
junio '26
junio '26
+44
en 0 canales
mayo '26
+38
en 0 canales
Get PRO
abril '26
+61
en 0 canales
Get PRO
marzo '26
+49
en 0 canales
Get PRO
febrero '26
+51
en 0 canales
Get PRO
enero '26
+69
en 0 canales
Get PRO
diciembre '25
+159
en 0 canales
Get PRO
noviembre '25
+86
en 0 canales
Get PRO
octubre '25
+90
en 0 canales
Get PRO
septiembre '25
+114
en 0 canales
Get PRO
agosto '25
+63
en 1 canales
Get PRO
julio '25
+58
en 0 canales
Get PRO
junio '25
+48
en 0 canales
Get PRO
mayo '25
+83
en 2 canales
Get PRO
abril '25
+57
en 0 canales
Get PRO
marzo '25
+39
en 0 canales
Get PRO
febrero '25
+60
en 0 canales
Get PRO
enero '25
+116
en 1 canales
Get PRO
diciembre '24
+168
en 1 canales
Get PRO
noviembre '24
+236
en 2 canales
Get PRO
octubre '24
+331
en 1 canales
Get PRO
septiembre '24
+278
en 1 canales
Get PRO
agosto '24
+171
en 1 canales
Get PRO
julio '24
+373
en 0 canales
Get PRO
junio '24
+114
en 1 canales
Get PRO
mayo '24
+250
en 1 canales
Get PRO
abril '24
+117
en 0 canales
Get PRO
marzo '24
+194
en 1 canales
Get PRO
febrero '24
+169
en 0 canales
Get PRO
enero '24
+400
en 0 canales
Get PRO
diciembre '23
+202
en 1 canales
Get PRO
noviembre '23
+130
en 0 canales
Get PRO
octubre '23
+154
en 0 canales
Get PRO
septiembre '23
+245
en 0 canales
Get PRO
agosto '23
+216
en 0 canales
Get PRO
julio '23
+124
en 0 canales
Get PRO
junio '23
+96
en 0 canales
Get PRO
mayo '23
+100
en 0 canales
Get PRO
abril '23
+100
en 0 canales
Get PRO
marzo '23
+117
en 0 canales
Get PRO
febrero '23
+238
en 0 canales
Get PRO
enero '23
+185
en 0 canales
Get PRO
diciembre '22
+201
en 0 canales
Get PRO
noviembre '22
+133
en 0 canales
Get PRO
octubre '22
+178
en 0 canales
Get PRO
septiembre '22
+214
en 0 canales
Get PRO
agosto '22
+123
en 0 canales
Get PRO
julio '22
+133
en 0 canales
Get PRO
junio '22
+130
en 0 canales
Get PRO
mayo '22
+165
en 0 canales
Get PRO
abril '22
+214
en 0 canales
Get PRO
marzo '22
+320
en 0 canales
Get PRO
febrero '22
+224
en 0 canales
Get PRO
enero '22
+609
en 0 canales
Get PRO
diciembre '21
+197
en 0 canales
Get PRO
noviembre '21
+252
en 0 canales
Get PRO
octubre '21
+140
en 0 canales
Get PRO
septiembre '21
+146
en 0 canales
Get PRO
agosto '21
+190
en 0 canales
Get PRO
julio '21
+197
en 0 canales
Get PRO
junio '21
+327
en 0 canales
Get PRO
mayo '21
+440
en 0 canales
Get PRO
abril '21
+161
en 0 canales
Get PRO
marzo '21
+108
en 0 canales
Get PRO
febrero '21
+196
en 0 canales
Get PRO
enero '21
+1 242
en 0 canales
Fecha
Crecimiento de Suscriptores
Menciones
Canales
27 junio+2
26 junio+2
25 junio+2
24 junio+2
23 junio+3
22 junio+4
21 junio+1
20 junio+2
19 junio+1
18 junio+2
17 junio+1
16 junio0
15 junio0
14 junio+1
13 junio0
12 junio+1
11 junio+1
10 junio0
09 junio+2
08 junio+1
07 junio+4
06 junio+4
05 junio+1
04 junio+1
03 junio+2
02 junio+1
01 junio+3
Publicaciones del Canal
Choose your answer:
Anonymous voting

2
❓ تأثير i++ داخل شرط while؟ Effect of i++ in while condition?int i = 0; while (i++ < 3) { } System.out.println(i);
107
3
Choose your answer:
166
4
❓ تمرير المصفوفات للميثود: ماذا يُطبع؟ Passing arrays to methods: what prints?void change(int[] arr) { arr[0] = 99; arr = new int[]{7,7,7}; } int[] x = {1,2,3}; change(x); System.out.println(x[0]);
153
5
Choose your answer:
190
6
❓ Switch على String بدون break بعد "two"؟ Switch on String (no break after "two")?String s = "two"; switch (s) { case "one": System.out.print(1); break; case "two": System.out.print(2); default: System.out.print(0); }
174
7
Choose your answer:
215
8
❓ هل a == b صحيح؟ Is a == b true?String a = new String("hi"); String b = "hi"; System.out.println(a == b);
196
9
Choose your answer:
239
10
❓ ما قيمة count بعد استخدام continue؟ What is count after using continue?int count = 0; for (int i = 0; i < 5; i++) { if (i % 2 == 0) continue; count += i; } System.out.println(count);
212
11
Choose your answer:
252
12
❓ هل يعدّل for-each عناصر المصفوفة؟ Does for-each modify elements?int[] a = {1, 2, 3}; for (int x : a) { x *= 2; } System.out.println(a[1]);
238
13
Choose your answer:
274
14
❓ كيف تطبع طول المصفوفة؟ How do you print the array length?int[] a = {1, 2, 3, 4}; System.out.println( /* ? */ );
259
15
Choose your answer:
319
16
❓ أي overload يُستدعى؟ Which overload is invoked?void print(int x) { System.out.println("int"); } void print(Integer x) { System.out.println("Integer"); } Integer n = null; print(n);
306
17
Choose your answer:
345
18
❓ ما ناتج السويتش بدون break؟ What is the output (no breaks before case 3)?int n = 2; switch (n) { case 1: System.out.print('A'); case 2: System.out.print('B'); case 3: System.out.print('C'); break; default: System.out.print('D'); }
319
19
Choose your answer:
349
20
❓ ما مجموع الأعداد من 1 إلى 3؟ What does this loop print?int sum = 0; for (int i = 1; i <= 3; i++) { sum += i; } System.out.println(sum);
335