ch
Feedback
جافا Java

جافا Java

前往频道在 Telegram

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

显示更多
6 320
订阅者
-324 小时
-127
-6030
帖子存档
What is the purpose of a constructor in a Java class? ما هو الغرض من منشئ في فئة جافا؟

Which access modifier makes a member of a class accessible only within the same package?
Anonymous voting

مستغرب من اللي يستخدمون w3schools لتعلم الويب وعندهم هذا الموقع https://developer.mozilla.org/en-US/docs/Learn

How do you handle exceptions in Java? كيف تتعامل مع الاستثناءات في جافا؟

Which of the following is an unchecked exception in Java?
Anonymous voting

Write a Java program to print all the elements of a two-dimensional integer array named 'matrix'. اكتب برنامج جافا لطباعة جميع عناصر مصفوفة ثنائية الأبعاد من الأعداد الصحيحة باسم 'matrix'.

Which of these is not a loop structure in Java?
Anonymous voting

What is the use of the 'new' keyword in Java? ما هو استخدام كلمة 'new' في جافا؟

Which of the following is the correct way to create a multidimensional array in Java?
Anonymous voting

طريقة عمل مشروع javafx اذا ال jdk عندك اعلى من 8 بطريقة مباشرة في النتبينز

How do you handle exceptions in Java? كيف تتعامل مع الاستثناءات في جافا؟

What is the correct way to compare two strings for equality in Java?
Anonymous voting

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);
 }
}

Which of the following loops will run indefinitely in Java?
Anonymous voting

What is the purpose of a constructor in a Java class? ما هو الغرض من منشئ في فئة جافا؟

How do you access the length of an array named `arr` in Java?
Anonymous voting

Describe the concept of 'method overloading' in Java. وصف مفهوم 'تحميل الطريقة' في جافا.

Which of these keywords is used to define a variable that cannot be modified?
Anonymous voting

What is the purpose of garbage collection in Java, and how does it work? ما هو الغرض من جمع القمامة في جافا، وكيف يعمل؟