en
Feedback
جافا Java

جافا Java

Open in Telegram

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

Show more
6 163
Subscribers
-324 hours
-147 days
-6930 days
Posts Archive
What is the output of the following code snippet? int[] array = {1, 2, 3, 4, 5}; System.out.println(array[3]);
Anonymous voting

What is a 'constructor' in Java? ما هو 'المنشئ' في جافا؟

What is the purpose of the 'final' keyword when applied to a variable in Java?
Anonymous voting

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

In Java, which of the following is a checked exception?
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!");
  }
}

Which of the following is a valid declaration of a two-dimensional array in Java?
Anonymous voting

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

Which of the following is a valid way to create a thread in Java?
Anonymous voting

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

In Java, which of these keywords is used to inherit methods and properties from a superclass?
Anonymous voting

Write a Java method that takes an array of integers and returns the sum of its elements. اكتب طريقة جافا تأخذ مصفوفة من الأعداد الصحيحة وتعيد مجموع عناصرها.

What is the output of the following Java code snippet? String str = "Java"; System.out.println(str.concat("Quiz"));
Anonymous voting

What is an abstract class in Java? ما هي الفئة المجردة في جافا؟

What does the 'static' keyword in Java signify?
Anonymous voting

Explain the difference between static and non-static methods in Java. شرح الفرق بين الطرق الثابتة وغير الثابتة في جافا.

What is the purpose of the 'transient' keyword in Java?
Anonymous voting

What is a 'Lambda expression' in Java, and give an example. ما هو 'تعبير لامبدا' في جافا، وأعط مثالاً.