جافا Java
الذهاب إلى القناة على Telegram
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
إظهار المزيد6 170
المشتركون
-224 ساعات
-247 أيام
-7330 أيام
أرشيف المشاركات
6 170
What is the difference between `final`, `finally`, and `finalize()` in Java?
ما هو الفرق بين `final`، `finally`، و `finalize()` في جافا؟
#JavaKeywords #ExceptionHandling
6 170
Write a Java code to remove duplicates from an array.
اكتب كود جافا لإزالة العناصر المكررة من مصفوفة.
#ArrayProcessing
6 170
What is the purpose of the `try-catch` block in Java?
ما هو الغرض من كتلة `try-catch` في جافا؟
#JavaExceptionHandling #ErrorHandling
6 170
Write a Java code to implement a simple file compression program.
اكتب كود جافا لتنفيذ برنامج ضغط ملفات بسيط.
#FileProcessing
6 170
What is the purpose of the `volatile` keyword in Java?
ما هو الغرض من الكلمة المفتاحية `volatile` في جافا؟
#JavaConcurrency #Multithreading
6 170
What will be the output of the following code?
```java
int x = 5;
System.out.println(x++ + ++x);```
ما هو ناتج تنفيذ الكود التالي؟
```java
int x = 5;
System.out.println(x++ + ++x);```
#JavaOperators #IncrementOperators
6 170
Create a Java program to simulate a simple dice rolling game.
أنشئ برنامجاً في جافا لمحاكاة لعبة رمي النرد البسيطة.
#RandomNumbers
6 170
Which of the following is true about Java's functional interfaces?
أي مما يلي صحيح بخصوص الواجهات الوظيفية (functional interfaces) في جافا؟
#JavaFunctionalProgramming #Interfaces
6 170
What is the purpose of the `this()` call in a constructor?
ما هو الغرض من استدعاء `this()` في المُنشئ؟
#JavaConstructors #OOP
6 170
Write a Java code to implement a simple music playlist manager.
اكتب كود جافا لتنفيذ مدير قائمة تشغيل موسيقية بسيط.
#SimpleApplications
6 170
What is the difference between `==` and `.equals()` when comparing objects in Java?
ما هو الفرق بين `==` و `.equals()` عند مقارنة الكائنات في جافا؟
#JavaComparison #ObjectEquality
