جافا Java
6.46K subscribers
212 photos
18 videos
81 files
269 links
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Download Telegram
Write a Java code to implement a simple command-line todo list application.

اكتب كود جافا لتنفيذ تطبيق قائمة مهام بسيط يعمل من سطر الأوامر.

#CommandLineApplications
What is the purpose of the `assert` statement in Java?

ما هو الغرض من عبارة `assert` في جافا؟

#JavaDebugging #Assertions
ال Constructors ممكن يكون private او لا مع السبب
Anonymous Quiz
51%
اي
49%
لا
What is the purpose of the `final` keyword when applied to a method parameter in Java?

ما هو الغرض من الكلمة المفتاحية `final` عند تطبيقها على معامل دالة في جافا؟

#JavaKeywords #MethodParameters
Create a Java method to calculate the area of a regular polygon.

أنشئ دالة في جافا لحساب مساحة مضلع منتظم.

#GeometryCalculations
What is the purpose of the `default` keyword in a switch statement?

ما هو الغرض من الكلمة المفتاحية `default` في عبارة switch؟

#JavaControlFlow #SwitchStatement
👍1
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
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
Create a Java array of integers with 5 elements and initialize it with values.

أنشئ مصفوفة أعداد صحيحة في جافا بـ 5 عناصر وقم بتهيئتها بقيم.

#Arrays
👍2
What is the difference between `ArrayList` and `LinkedList` in Java?

ما هو الفرق بين `ArrayList` و `LinkedList` في جافا؟

#JavaCollections #DataStructures
ايش تستخدم
Anonymous Poll
28%
🔥 IntelliJ
72%
😥 Netbeans
👍1
What is the purpose of the `enum` keyword in Java?

ما هو الغرض من الكلمة المفتاحية `enum` في جافا؟

#JavaEnum #DataTypes