جافا Java
6.46K subscribers
212 photos
18 videos
81 files
269 links
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Download Telegram
Write the code to create a new object of the 'Car' class in Java.

اكتب الكود لإنشاء كائن جديد من فئة 'Car' في جافا.
3
How do you create a read-only class field in Java?

كيف تنشئ حقل فئة للقراءة فقط في جافا؟
What is the output of the following Java code?

System.out.println(10 > 9);


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

System.out.println(10 > 9);
Write the code to define a static method 'calculateAverage()' that takes an array of integers and returns their average in Java.

اكتب الكود لتعريف طريقة ثابتة 'calculateAverage()' تأخذ مصفوفة من الأعداد الصحيحة وتعيد متوسطها في جافا.
1
Which principle of Object-Oriented Programming allows a subclass to provide a specific implementation of a method that is already provided by one of its superclasses?

أي مبدأ من مبادئ البرمجة الشيئية يسمح للفئة الفرعية بتوفير تنفيذ محدد لطريقة تم توفيرها بالفعل من قبل إحدى فئاتها الأساسية؟
How do you initialize an ArrayList with the following integers: 1, 2, 3, 4, 5 in Java?

كيف تهيئ ArrayList بالأعداد الصحيحة التالية: 1، 2، 3، 4، 5 في جافا؟
Write the code to create a program that reads a text file and performs text analysis, such as counting the number of lines, words, and characters.

اكتب الكود لإنشاء برنامج يقرأ ملف نصي ويجري تحليلًا نصيًا، مثل عد عدد الأسطر، والكلمات، والأحرف.
How can you call a method named `calculateSum` that takes two integers as parameters and returns an integer?

كيف يمكنك استدعاء طريقة تسمى `calculateSum` تأخذ عددين كمعلمات وتعيد عددًا صحيحًا؟
Which keyword is used in Java to create a new instance of a class?

أي كلمة مفتاحية تستخدم في جافا لإنشاء نسخة جديدة من فئة؟
Write the code to define a class 'Person' with properties like name and age in Java.

اكتب الكود لتعريف فئة 'Person' مع خصائص مثل الاسم والعمر في جافا.
👍2
Which of these array declarations is not valid in Java?

أي من تصريحات المصفوفة التالية غير صالحة في جافا؟
What does the `break` statement do in a loop in Java?

ماذا تفعل عبارة `break` في حلقة في جافا؟
👍1
Which of these is a valid declaration of a `main` method in Java?

أي من هذه هو تعريف صالح لطريقة `main` في جافا؟