جافا Java
6.46K subscribers
212 photos
18 videos
81 files
269 links
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Download Telegram
What is the purpose of the `abstract` keyword in Java?

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

#JavaKeywords #AbstractClasses
👍2
Write a Java code to check if a number is even or odd.

اكتب كود جافا للتحقق مما إذا كان الرقم زوجياً أم فردياً.

#BasicLogic
What is the purpose of the `abstract` method in Java?

ما هو الغرض من الدالة `abstract` في جافا؟

#JavaAbstraction #OOP
What is the purpose of the `this` keyword in Java?

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

#JavaKeywords #OOP
Write a Java code to print the multiplication table of a given number.

اكتب كود جافا لطباعة جدول الضرب لرقم معين.

#BasicLoops
👍1
Which of the following is true about Java abstract classes?

أي مما يلي صحيح بخصوص الأصناف المجردة (abstract classes) في جافا؟

#JavaAbstractClasses #OOP
What is the purpose of the 'this' keyword in Java?

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

#JavaKeywords #OOP
هذي الفتره ظهرت بوتات التليقرام والتطبيقات اللي تتحول لعمله رقمية
بدات عمله notcoin وبعدها DOGS واليوم نزلت عمله cati للاسف ضيعتها والاسبوع القادم تنزل عمله Hamster

اللي مالحق ولاحدة منهم هذي قائمة ب اشهر البوتات القادمة

Blum

Tomarket

TONKombat


tonxdao

بوت منصة بايننس الرسمية

HOT Wallet
Write a Java code to implement a simple todo list using ArrayList.

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

#Collections
What is the difference between `ArrayList` and `LinkedList` in Java?

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

#JavaCollections #DataStructures
What is the output of the following code?
int a = 10;
int b = 20;
System.out.println(a > b ? "a is greater" : "b is greater");

ما هو ناتج تنفيذ الكود التالي؟
int a = 10;
int b = 20;
System.out.println(a > b ? "a is greater" : "b is greater");

#JavaOperators #TernaryOperator
👍1
Create a Java program to generate a simple nutrition facts label for a food item.

أنشئ برنامجاً في جافا لإنشاء ملصق حقائق غذائية بسيط لمادة غذائية.

#HealthApplications