ru
Feedback
جافا Java

جافا Java

Открыть в Telegram

ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم

Больше
6 318
Подписчики
-624 часа
-207 дней
-6630 день
Архив постов
In Java, which method is used to find the length of an array? في جافا، أي طريقة تستخدم لإيجاد طول المصفوفة؟

In Java, which of the following is the correct way to declare an array of integers?
Anonymous voting

How do you create an immutable class in Java? كيف تقوم بإنشاء فئة غير قابلة للتغيير في جافا؟

Which of the following is a correct way to instantiate an object in Java?
Anonymous voting

In Java, what is a 'package' and how is it used? في جافا، ما هو 'الحزمة' وكيف يتم استخدامها؟

Which of the following is not an OOP concept in Java?
Anonymous voting

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);

In a Java program, how do you safely stop a thread?
Anonymous voting

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] + "");
}

Which method signature correctly overrides the 'equals' method inherited from 'Object' class in Java?
Anonymous voting

Explain the concept of 'class loaders' in Java. شرح مفهوم 'محملات الفئة' في جافا.

Which of these is not a valid Java access modifier?
Anonymous voting

الأسئلة من اليوم بتكون منوعه بين السهل والصعب والمتوسط وانوع مختلفه مثلا اكتب الكود واختار الاجابه الصحيحه....... خلينا نشوف ابداعكم 🔥

Write a Java method named 'add' that takes two integers as parameters and returns their sum. اكتب طريقة جافا بأسم 'add' تأخذ عددين صحيحين كمعاملات وترجع مجموعهم.

What does the 'synchronized' keyword ensure in a multi-threaded environment?
Anonymous voting

مجهز لكم اشياء احترافية 🔥 بس اتمنى تتفاعلون علشان احس انه في اهتمام للي جالس اسويه ممكن تنشروا الرابط https://t.me/learn_java_s

كم تحبون عدد الأسئلة تكون بالبيوم بحيث مايكون ازعاج او قليل
Anonymous voting

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' في جافا؟ أ) المتغير أو الدالة مشتركة بين جميع النماذج من الفئة ب) المتغير أو الدالة يمكن الوصول إليها فقط داخل الفئة التي تم فيها الإعلان ج) يمكن أن يتم الكتابة فوق المتغير أو الدالة في فئة فرعية د) لا شيء من ما سبق

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 د) خطأ في التجميع