جافا Java
6.46K subscribers
212 photos
18 videos
81 files
269 links
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Download Telegram
What is the use of the 'final' keyword when applied to a variable in Java?

ما هو استخدام كلمة 'final' عند تطبيقها على متغير في جافا؟
In Java, what is the result of using '==' to compare two strings 'str1' and 'str2'?
Anonymous Quiz
39%
It compares the value of the strings
39%
It compares the reference of the strings
13%
It always returns true
8%
It always returns false
What will be the output of the following Java code snippet?
 String[] animals = {"Dog", "Cat", "Horse"};
for(String animal : animals) {
System.out.println(animal);
}


ماذا سيكون مخرجات قطعة الكود الجافا التالية؟
 String[] animals = {"Dog", "Cat", "Horse"};
for(String animal : animals) {
System.out.println(animal);
}
What is the use of the 'new' keyword in Java?

ما هو استخدام كلمة 'new' في جافا؟
How do you access the third element in an array named 'myArray'?
Anonymous Quiz
65%
myArray[2];
20%
myArray[3];
13%
myArray.get(2);
2%
myArray(2);
Explain the difference between static and non-static methods in Java.

شرح الفرق بين الطرق الثابتة وغير الثابتة في جافا.
جافا Java pinned «حساب خاص لتنفيذ المشاريع البرمجية "ما نحل إختبارات"»
What is an abstract class in Java?

ما هي الفئة المجردة في جافا؟
What is the output of the following Java code snippet?
String str = "Java";
System.out.println(str.concat("Quiz"));
Anonymous Quiz
12%
"Java"
9%
"Quiz"
65%
"JavaQuiz"
14%
An error occurs
🔥6
In Java, which of these keywords is used to inherit methods and properties from a superclass?
Anonymous Quiz
23%
super
12%
this
53%
extends
12%
implements
2👍1
👍1
Which of the following is a valid declaration of a two-dimensional array in Java?
Anonymous Quiz
67%
int[][] array2D = new int[3][3];
19%
int array2D[][] = new int[][];
9%
int[] array2D = new int[3][3];
5%
int array2D[][] = new int[3];
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!");
}
}
👍2
In Java, which of the following is a checked exception?
Anonymous Quiz
27%
NullPointerException
27%
ArrayIndexOutOfBoundsException
26%
IOException
20%
ArithmeticException
What is the purpose of a constructor in a Java class?

ما هو الغرض من منشئ في فئة جافا؟