جافا Java
Kanalga Telegram’da o‘tish
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Ko'proq ko'rsatish6 163
Obunachilar
-324 soatlar
-147 kun
-6930 kun
Postlar arxiv
6 163
In Java, what is a 'package' and how is it used?
في جافا، ما هو 'الحزمة' وكيف يتم استخدامها؟
6 163
في جافا لو المتغير private وماحطينا دوال داخل الكلاس للوصول لهذا المتغير هل نقدر نغير او نوصل لهذا المتغير بشكل مباشر من ال main method
6 163
What is the purpose of a constructor in a Java class?
ما هو الغرض من منشئ في فئة جافا؟
6 163
Which access modifier makes a member of a class accessible only within the same package?
6 163
مستغرب من اللي يستخدمون w3schools لتعلم الويب وعندهم هذا الموقع
https://developer.mozilla.org/en-US/docs/Learn
6 163
Write a Java program to print all the elements of a two-dimensional integer array named 'matrix'.
اكتب برنامج جافا لطباعة جميع عناصر مصفوفة ثنائية الأبعاد من الأعداد الصحيحة باسم 'matrix'.
6 163
Which of the following is the correct way to create a multidimensional array in Java?
6 163
Fix the error in the following Java method that is supposed to calculate the factorial of a number:
public int factorial(int n) {
if (n == 0) {
return 1;
} else {
return n * factorial(n);
}
}
أصلح الخطأ في الطريقة الجافا التالية المفترض أن تحسب عامل رقم:
public int factorial(int n) {
if (n == 0) {
return 1;
} else {
return n * factorial(n);
}
}