جافا Java
6.46K subscribers
212 photos
18 videos
81 files
269 links
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Download Telegram
Channel name was changed to «جافا Java»
What is the correct syntax to declare a class named 'Vehicle' in Java?

ما هو الصيغة الصحيحة لتعريف فئة تسمى 'Vehicle' في جافا؟
How do you define an interface in Java?

كيف تعرف واجهة في جافا؟
Write the code to implement a simple 'for' loop that iterates from 1 to 10 in Java.

اكتب الكود لتنفيذ حلقة 'for' بسيطة تتكرر من 1 إلى 10 في جافا.
In Java, which keyword is used to inherit from a class?

في جافا، أي كلمة مفتاحية تستخدم للاستنساخ من فئة؟
What does the `final` keyword signify when applied to a variable in Java?

ماذا يدل الكلمة الرئيسية `final` عند تطبيقها على متغير في جافا؟
Write the code to create a program that simulates a simple task management system, allowing users to add, remove, and mark tasks as complete.

اكتب الكود لإنشاء برنامج يحاكي نظام إدارة مهام بسيطًا، ويسمح للمستخدمين بإضافة، وإزالة، وتحديد المهام على أنها مكتملة.
بوت تليقرام العاب ويمكن تتحول النقاط اللي فيه الى عملات مشفره بالمستقبل جربوه
https://t.me/theYescoin_bot
What is the output of the following Java code snippet?

int a = 9, b = 4;
if (a > 10) {
b = b + 1;
} else {
b = b - 1;
}
System.out.println(b);

ما هو الإخراج من مقتطف الكود جافا التالي؟

int a = 9, b = 4;
if (a > 10) {
b = b + 1;
} else {
b = b - 1;
}
System.out.println(b);
Which operator is used to compare two values for equality in Java?

أي المشغلين يستخدم لمقارنة قيمتين للمساواة في جافا؟
Write the code to calculate the sum of two integer variables in Java.

اكتب الكود لحساب مجموع متغيرين صحيحين في جافا.
Which of the following correctly describes the `static` keyword in Java?

أي من الأتي يصف بشكل صحيح الكلمة الرئيسية `static` في جافا؟
What keyword is used to access a method or variable from the superclass in a subclass?

أي كلمة مفتاحية تستخدم للوصول إلى طريقة أو متغير من الفئة الأساسية في الفئة الفرعية؟
👍1