es
Feedback
جافا Java

جافا Java

Ir al canal en Telegram

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

Mostrar más
6 320
Suscriptores
-324 horas
-127 días
-6030 días
Archivo de publicaciones
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

احتاج مجموعة تجرب معي هذا البوت اللي فاضي يرسل لي @Mushtak9

Write a Java method called 'isEven' that takes an integer as a parameter and returns true if the number is even, and false otherwise. اكتب طريقة جافا تدعى 'isEven' تأخذ عدد صحيح كمعامل وتعيد true إذا كان العدد زوجيًا، و false خلاف ذلك.

Which collection class in Java is synchronized?
Anonymous voting

What is a 'Lambda expression' in Java, and give an example. ما هو 'تعبير لامبدا' في جافا، وأعط مثالاً.

In Java, what is the result of assigning a 'null' value to a primitive data type?
Anonymous voting

How does a 'for-each' loop differ from a standard 'for' loop in Java? كيف يختلف حلقة 'for-each' عن حلقة 'for' القياسية في جافا؟

In Java 8, what is the purpose of the 'default' keyword in interfaces?
Anonymous voting

What is the result of the following code snippet?
 int x = 5;
int y = 10;
System.out.println(x > 6 || y <= 10); 
ما هو نتيجة قطعة الكود التالية؟
 int x = 5;
int y = 10;
System.out.println(x > 6 || y <= 10);