ar
Feedback
جافا Java

جافا Java

الذهاب إلى القناة على Telegram

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

إظهار المزيد
6 320
المشتركون
-324 ساعات
-127 أيام
-6030 أيام
أرشيف المشاركات
https://t.me/learn_java_s تأخرنا هذي المره ماوصلنا 7k خلونا نوصل بهذا الأسبوع 🔥

Explain the concept of 'serialization' in Java. شرح مفهوم 'التسلسل' في جافا.

How can you call a method named `calculateSum` that takes two integers as parameters and returns an integer?
Anonymous voting

How do you handle exceptions in Java? كيف تتعامل مع الاستثناءات في جافا؟

How can you ensure a class cannot be subclassed in Java?
Anonymous voting

What is the use of the 'new' keyword in Java? ما هو استخدام كلمة 'new' في جافا؟

What is the output of the following Java code snippet? ```java int a = 9, b = 4; if (a > 10) { b = b + 1; } else { b = b - 1; } System.out.println(b); ```
Anonymous voting

In Java, what is a 'stream' and how is it typically used? في جافا، ما هو 'تيار' وكيف يستخدم عادة؟

What will the following Java code snippet print? ```java int[] numbers = {1, 2, 3, 4, 5}; for(int i : numbers) { System.out.print(i + " "); } ```
Anonymous voting

Identify and fix the error in the following Java code snippet:
 public class Main {
  public static void Main(String[] args) {
    System.out.println("Hello, world!");
  }
} 
حدد وأصلح الخطأ في قطعة الكود الجافا التالية:
 public class Main {
  public static void Main(String[] args) {
    System.out.println("Hello, world!");
  }
}

How do you declare a method in Java that takes an integer as input and returns an integer?
Anonymous voting

What is the purpose of a constructor in a Java class? ما هو الغرض من منشئ في فئة جافا؟

What is 'Method Overloading' in Java?
Anonymous voting

How do you ensure a class in Java is not inherited by any other class? كيف تضمن ألا يتم وراثة فئة في جافا من قبل أي فئة أخرى؟

In Java, which keyword is used to inherit features from a class?
Anonymous voting

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

Which collection class in Java is synchronized?
Anonymous voting

How do you initialize an array of 10 integers to zero in Java? كيف تقوم بتهيئة مصفوفة من 10 أعداد صحيحة إلى صفر في جافا؟

What is the correct way to declare a method in Java?
Anonymous voting