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
Create a Java program to find the longest word in a sentence.
أنشئ برنامجاً في جافا لإيجاد أطول كلمة في جملة.
#StringProcessing
أنشئ برنامجاً في جافا لإيجاد أطول كلمة في جملة.
#StringProcessing
What is the output of the following code?
ما هو ناتج تنفيذ الكود التالي؟
#JavaStrings #Immutability
String str = "Hello";
str.concat(" World");
str.toLowerCase();
System.out.println(str);
ما هو ناتج تنفيذ الكود التالي؟
String str = "Hello";
str.concat(" World");
str.toLowerCase();
System.out.println(str);
#JavaStrings #Immutability
👍2❤1
Create a Java method to solve a simple Sudoku puzzle.
أنشئ دالة في جافا لحل لغز سودوكو بسيط.
#PuzzleSolving
أنشئ دالة في جافا لحل لغز سودوكو بسيط.
#PuzzleSolving
What is the difference between `String`, `StringBuilder`, and `StringBuffer` in Java?
ما هو الفرق بين `String`، `StringBuilder`، و `StringBuffer` في جافا؟
#JavaStrings #StringManipulation
ما هو الفرق بين `String`، `StringBuilder`، و `StringBuffer` في جافا؟
#JavaStrings #StringManipulation