ch
Feedback
جافا Java

جافا Java

前往频道在 Telegram

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

显示更多
6 160
订阅者
-524 小时
-197 天
-7530 天
帖子存档
What is 'Method Overloading' in Java?
Anonymous voting

How do you ensure a class in Java is not inherited by any other class? كيف تضمن ألا يتم وراثة فئة في جافا من قبل أي فئة أخرى؟

In Java, which keyword is used to inherit features from a class?
Anonymous voting

Write a Java method 'multiply' that takes two integers as arguments and returns their product. اكتب طريقة جافا 'multiply' التي تأخذ عددين صحيحين كمعاملات وترجع حاصل ضربهما.

Which collection class in Java is synchronized?
Anonymous voting

How do you initialize an array of 10 integers to zero in Java? كيف تقوم بتهيئة مصفوفة من 10 أعداد صحيحة إلى صفر في جافا؟

What is the correct way to declare a method in Java?
Anonymous voting

Determine the output of this Java code:
 int[] numbers = {1, 2, 3, 4, 5};
for (int i = numbers.length - 1; i >= 0; i--) {
 System.out.print(numbers[i] + "");
} 
حدد مخرجات هذا الكود الجافا:
 int[] numbers = {1, 2, 3, 4, 5};
for (int i = numbers.length - 1; i >= 0; i--) {
 System.out.print(numbers[i] + "");
}

Which loop is best suited for iterating through an array in Java?
Anonymous voting

What is the output of the following Java code?
 for(int i = 0; i < 5; i++) {
 if(i % 2 == 0) {
 System.out.println(i);
 }
} 
ما هو مخرجات الكود الجافا التالي؟
 for(int i = 0; i < 5; i++) {
 if(i % 2 == 0) {
 System.out.println(i);
 }
}

What is the primary difference between a 'HashSet' and a 'TreeSet' in Java Collections Framework?
Anonymous voting

اللي جربوه
Anonymous voting

أخيرا البوت صار جاهز وفيه عده مواد اسئله اختبارات على شكل مسابقه جربوه واعطونا التقيم

How do you declare a two-dimensional array in Java? كيف تعلن عن مصفوفة ثنائية الأبعاد في جافا؟

What does the 'volatile' keyword in Java ensure?
Anonymous voting

What is an infinite loop, and how can it be caused in Java? ما هو الحلقة اللانهائية، وكيف يمكن أن تسبب في جافا؟

What is 'autoboxing' in Java?
Anonymous voting