جافا Java
What is the purpose of the `default` method in Java interfaces? ما هو الغرض من الدالة `default` في واجهات جافا؟ #JavaInterfaces #DefaultMethods
Create a Java program to generate a simple report card for students.
أنشئ برنامجاً في جافا لإنشاء بطاقة تقرير بسيطة للطلاب.
#ReportGeneration
أنشئ برنامجاً في جافا لإنشاء بطاقة تقرير بسيطة للطلاب.
#ReportGeneration
What is the output of the following code?
```java
String str1 = "Hello";
String str2 = "Hello";
System.out.println(str1 == str2);```
ما هو ناتج تنفيذ الكود التالي؟
```java
String str1 = "Hello";
String str2 = "Hello";
System.out.println(str1 == str2);```
#JavaStrings #StringPool
```java
String str1 = "Hello";
String str2 = "Hello";
System.out.println(str1 == str2);```
ما هو ناتج تنفيذ الكود التالي؟
```java
String str1 = "Hello";
String str2 = "Hello";
System.out.println(str1 == str2);```
#JavaStrings #StringPool
What is the difference between `ArrayList` and `LinkedList` in Java?
ما هو الفرق بين `ArrayList` و `LinkedList` في جافا؟
#JavaCollections #DataStructures
ما هو الفرق بين `ArrayList` و `LinkedList` في جافا؟
#JavaCollections #DataStructures
جافا Java
What is the difference between `ArrayList` and `LinkedList` in Java? ما هو الفرق بين `ArrayList` و `LinkedList` في جافا؟ #JavaCollections #DataStructures
What is the purpose of the `enum` keyword in Java?
ما هو الغرض من الكلمة المفتاحية `enum` في جافا؟
#JavaEnum #DataTypes
ما هو الغرض من الكلمة المفتاحية `enum` في جافا؟
#JavaEnum #DataTypes
Create a Java method to find the mode of an array of numbers.
أنشئ دالة في جافا لإيجاد المنوال (القيمة الأكثر تكراراً) في مصفوفة من الأرقام.
#StatisticalCalculations
أنشئ دالة في جافا لإيجاد المنوال (القيمة الأكثر تكراراً) في مصفوفة من الأرقام.
#StatisticalCalculations
Which of the following is true about Java's lambda expressions?
أي مما يلي صحيح بخصوص تعبيرات لامدا (lambda expressions) في جافا؟
#JavaLambdaExpressions #FunctionalProgramming
أي مما يلي صحيح بخصوص تعبيرات لامدا (lambda expressions) في جافا؟
#JavaLambdaExpressions #FunctionalProgramming
جافا Java
Which of the following is true about Java's lambda expressions? أي مما يلي صحيح بخصوص تعبيرات لامدا (lambda expressions) في جافا؟ #JavaLambdaExpressions #FunctionalProgramming
What is method overloading in Java?
ما هو تحميل الدوال (method overloading) في جافا؟
#JavaMethods #Overloading
ما هو تحميل الدوال (method overloading) في جافا؟
#JavaMethods #Overloading
جافا Java
What is method overloading in Java? ما هو تحميل الدوال (method overloading) في جافا؟ #JavaMethods #Overloading
Write a Java code to find the average of numbers in an array.
اكتب كود جافا لإيجاد متوسط الأرقام في مصفوفة.
#ArrayAverage
اكتب كود جافا لإيجاد متوسط الأرقام في مصفوفة.
#ArrayAverage
What is the difference between `public`, `protected`, and `private` access modifiers in Java?
ما هو الفرق بين معدلات الوصول `public`، `protected`، و `private` في جافا؟
#JavaAccessModifiers #Encapsulation
ما هو الفرق بين معدلات الوصول `public`، `protected`، و `private` في جافا؟
#JavaAccessModifiers #Encapsulation
Which of the following is true about Java's `try-with-resources` statement?
أي مما يلي صحيح بخصوص عبارة `try-with-resources` في جافا؟
#JavaExceptionHandling #ResourceManagement
أي مما يلي صحيح بخصوص عبارة `try-with-resources` في جافا؟
#JavaExceptionHandling #ResourceManagement
جافا Java
Which of the following is true about Java's `try-with-resources` statement? أي مما يلي صحيح بخصوص عبارة `try-with-resources` في جافا؟ #JavaExceptionHandling #ResourceManagement
اختر الإجابة الصحيحة
Anonymous Quiz
12%
It's only available in Java 11 and later
22%
It can only be used with one resource at a time
55%
It automatically closes resources when the try block exits
12%
It requires a finally block to close resources
❤3