جافا Java
Open in Telegram
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Show more6 163
Subscribers
-324 hours
-147 days
-6930 days
Posts Archive
6 161
What is the output of the following code snippet?
int[] array = {1, 2, 3, 4, 5};
System.out.println(array[3]);
6 161
What is the purpose of the 'final' keyword when applied to a variable in Java?
6 161
What is the purpose of a constructor in a Java class?
ما هو الغرض من منشئ في فئة جافا؟
6 161
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!");
}
}6 161
Which of the following is a valid declaration of a two-dimensional array in Java?
6 161
In Java, which of these keywords is used to inherit methods and properties from a superclass?
6 161
Write a Java method that takes an array of integers and returns the sum of its elements.
اكتب طريقة جافا تأخذ مصفوفة من الأعداد الصحيحة وتعيد مجموع عناصرها.
6 161
What is the output of the following Java code snippet?
String str = "Java";
System.out.println(str.concat("Quiz"));
6 161
Explain the difference between static and non-static methods in Java.
شرح الفرق بين الطرق الثابتة وغير الثابتة في جافا.
6 161
What is a 'Lambda expression' in Java, and give an example.
ما هو 'تعبير لامبدا' في جافا، وأعط مثالاً.
