جافا Java
Open in Telegram
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Show more6 318
Subscribers
-624 hours
-207 days
-6630 days
Posts Archive
6 318
In Java, which method is used to find the length of an array?
في جافا، أي طريقة تستخدم لإيجاد طول المصفوفة؟
6 318
In Java, which of the following is the correct way to declare an array of integers?
6 318
How do you create an immutable class in Java?
كيف تقوم بإنشاء فئة غير قابلة للتغيير في جافا؟
6 318
Which of the following is a correct way to instantiate an object in Java?
6 318
In Java, what is a 'package' and how is it used?
في جافا، ما هو 'الحزمة' وكيف يتم استخدامها؟
6 318
Correct the error in this Java code to swap two integers:
int a = 10;
int b = 20;
int temp = a;
a = b;
b = temp;
System.out.println("a: " + a + ", b: " + b);
أصلح الخطأ في هذا الكود الجافا لتبديل عددين صحيحين:
int a = 10;
int b = 20;
int temp = a;
a = b;
b = temp;
System.out.println("a: " + a + ", b: " + b);6 318
Determine the output of this Java code:
int[] numbers = {1, 2, 3, 4, 5};
for (int i = numbers.length - 1; i >= 0; i--) {
System.out.print(numbers[i] + "");
}
حدد مخرجات هذا الكود الجافا:
int[] numbers = {1, 2, 3, 4, 5};
for (int i = numbers.length - 1; i >= 0; i--) {
System.out.print(numbers[i] + "");
}6 318
Which method signature correctly overrides the 'equals' method inherited from 'Object' class in Java?
6 318
الأسئلة من اليوم بتكون منوعه بين السهل والصعب والمتوسط وانوع مختلفه مثلا اكتب الكود واختار الاجابه الصحيحه.......
خلينا نشوف ابداعكم 🔥
6 318
Write a Java method named 'add' that takes two integers as parameters and returns their sum.
اكتب طريقة جافا بأسم 'add' تأخذ عددين صحيحين كمعاملات وترجع مجموعهم.
6 318
What does the 'synchronized' keyword ensure in a multi-threaded environment?
6 318
مجهز لكم اشياء احترافية 🔥
بس اتمنى تتفاعلون علشان احس انه في اهتمام للي جالس اسويه ممكن تنشروا الرابط
https://t.me/learn_java_s
6 318
What does the 'static' keyword in Java mean?
A) The variable or method is shared among all instances of the class
B) The variable or method is only accessible within the class it is declared
C) The variable or method can be overwritten in a subclass
D) None of the above
ترجمة السؤال:
ماذا يعني الكلمة المفتاحية 'static' في جافا؟
أ) المتغير أو الدالة مشتركة بين جميع النماذج من الفئة
ب) المتغير أو الدالة يمكن الوصول إليها فقط داخل الفئة التي تم فيها الإعلان
ج) يمكن أن يتم الكتابة فوق المتغير أو الدالة في فئة فرعية
د) لا شيء من ما سبق
6 318
What is the output of the following code?
int x = 4;
int y = ++x;
System.out.println(y);
A) 4
B) 5
C) 6
D) Compilation Error
ترجمة السؤال:
ما هو الناتج من الشيفرة التالية؟
int x = 4;
int y = ++x;
System.out.println(y);
أ) 4
ب) 5
ج) 6
د) خطأ في التجميع
Available now! Telegram Research 2025 — the year's key insights 
