جافا Java
Ir al canal en Telegram
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Mostrar más6 137
Suscriptores
-124 horas
-27 días
-7330 días
Carga de datos en curso...
Canales Similares
Nube de Etiquetas
Menciones Entrantes y Salientes
---
---
---
---
---
---
Atraer Suscriptores
septiembre '26
septiembre '26
+31
en 0 canales
agosto '26
+43
en 0 canales
Get PRO
julio '26
+51
en 0 canales
Get PRO
junio '26
+52
en 0 canales
Get PRO
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 | |
| 16 septiembre | 0 | |||
| 15 septiembre | +2 | |||
| 14 septiembre | +4 | |||
| 13 septiembre | +5 | |||
| 12 septiembre | +2 | |||
| 11 septiembre | +2 | |||
| 10 septiembre | +2 | |||
| 09 septiembre | 0 | |||
| 08 septiembre | +1 | |||
| 07 septiembre | 0 | |||
| 06 septiembre | +4 | |||
| 05 septiembre | +3 | |||
| 04 septiembre | +1 | |||
| 03 septiembre | +2 | |||
| 02 septiembre | +2 | |||
| 01 septiembre | +1 |
Publicaciones del Canal
| 2 | ❓ أي عبارة صحيحة عن Overloading/Overriding؟
Which statement is true about overloading/overriding? | 324 |
| 3 | Choose your answer: | 348 |
| 4 | ❓ ما قيمة الحقل بعد إنشاء الكائن؟
What is the field value after object creation?class A { int v = 1; A(){ v *= 2; } }
A a = new A();
System.out.println(a.v); | 275 |
| 5 | Choose your answer: | 284 |
| 6 | ❓ ما مجموع التأثير في switch مع default؟
Total effect in switch with default?int x = 0;
int v = 3;
switch (v) {
case 1: x += 1; break;
case 2:
case 3: x += 3;
default: x += 5; break;
}
System.out.println(x); | 246 |
| 7 | Choose your answer: | 274 |
| 8 | ❓ ما طول الصف الثاني؟
What is the length of the second row?int[][] m = { {1,2}, {3,4,5} };
System.out.println(m[1].length); | 246 |
| 9 | Choose your answer: | 290 |
| 10 | ❓ ما ناتج بناء السلسلة داخل لوب؟
What does this string build print?String s = "a";
for (int i = 0; i < 3; i++) s += i;
System.out.println(s); | 261 |
| 11 | Choose your answer: | 292 |
| 12 | ❓ تأثير العامل الثلاثي مع الزيادات؟
Ternary with increments effect?int a = 1, b = 2;
int x = (a++ > 1) ? a : b++;
System.out.println(a + "," + b + "," + x); | 259 |
| 13 | Choose your answer: | 291 |
| 14 | ❓ ما ناتج حساب المضروب البسيط؟
What does this factorial-like loop print?int n = 3, r = 1;
for (int i = 1; i <= n; i++) r *= i;
System.out.println(r); | 270 |
| 15 | Choose your answer: | 330 |
| 16 | ❓ ما نتيجة البحث بعد الفرز؟
What is binarySearch result after sort?int[] a = {3, 1, 2};
java.util.Arrays.sort(a);
System.out.println(java.util.Arrays.binarySearch(a, 2)); | 317 |
| 17 | Choose your answer: | 340 |
| 18 | ❓ أي استدعاء يُفضَّل مع varargs؟
Which overload is chosen with varargs?static void m(int x) { System.out.print("exact"); }
static void m(int... x) { System.out.print("varargs"); }
m(5); | 299 |
| 19 | Choose your answer: | 332 |
| 20 | ❓ كيف يعمل fall-through عندما يطابق case 1؟
How does fall-through work here?int d = 1;
switch (d) {
case 0: d += 2;
default: d += 3;
case 1: d += 4;
}
System.out.println(d); | 315 |
