جافا Java
6.46K subscribers
212 photos
18 videos
81 files
269 links
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Download Telegram
What is the output of the following code?
System.out.println(1 + 2 + "3" + 4 + 5);

ما هو ناتج تنفيذ الكود التالي؟
System.out.println(1 + 2 + "3" + 4 + 5);

#JavaOperators #TypeConversion
What is the purpose of the `abstract` keyword in Java?

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

#JavaAbstraction #OOP
Java Programming Exercises and Solutions.pdf
5.7 MB
السلام عليكم ورحمة
جمعت لكم اسئله لكل شابتر في برمجة مع الحلول شوفوها واعطونا رايكم وانشروها اذا اعجبتكم
♡ ㅤ    ❍ㅤ      ⎙       ⌲
ˡᶦᵏᵉ   ᶜᵒᵐᵐᵉⁿᵗ    ˢᵃᵛᵉ    ˢʰᵃʳᵉ
17👍6🎉3🔥1
What is the purpose of the `throws` clause in a method declaration?

ما هو الغرض من عبارة `throws` في تعريف الدالة؟

#JavaExceptions #MethodDeclaration
🎉1
جافا Java
Java Programming Exercises and Solutions.pdf
عدلت الملف حسنت التنسيق واضفت جافا 2 شوفوه واعطونا رايكم
👍2
جافا Java pinned «عدلت الملف حسنت التنسيق واضفت جافا 2 شوفوه واعطونا رايكم»
What is method overriding in Java?

ما هو تجاوز الدوال (method overriding) في جافا؟

#JavaInheritance #MethodOverriding
Which of the following is true about the `final` keyword in Java?

أي مما يلي صحيح بخصوص الكلمة المفتاحية `final` في جافا؟

#JavaKeywords #FinalKeyword
What is the purpose of the `this` keyword in Java?

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

#JavaKeywords #OOP
Create a Java method to count the number of vowels in a string.

أنشئ دالة في جافا لعد عدد الحروف المتحركة في سلسلة نصية.

#StringProcessing
What is the purpose of the `final` keyword when applied to a class in Java?

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

#JavaKeywords #Inheritance
👍1
Create a for loop in Java that prints numbers from 1 to 10.

أنشئ حلقة for في جافا تطبع الأرقام من 1 إلى 10.

#Loops