جافا Java
What is the purpose of the `synchronized` keyword in Java? ما هو الغرض من الكلمة المفتاحية `synchronized` في جافا؟ #JavaConcurrency #Synchronization
اختر الإجابة الصحيحة
Anonymous Quiz
19%
To make a variable thread-safe
21%
To prevent a method from being overridden
7%
To create a new thread
53%
To control access to a block of code or method in multi-threaded environments
👍1
Write a Java code to implement bubble sort algorithm.
اكتب كود جافا لتنفيذ خوارزمية الترتيب الفقاعي.
#SortingAlgorithms
اكتب كود جافا لتنفيذ خوارزمية الترتيب الفقاعي.
#SortingAlgorithms
What is the correct way to declare a constant in Java?
ما هي الطريقة الصحيحة لتعريف ثابت في جافا؟
#JavaConstants #CodeConventions
ما هي الطريقة الصحيحة لتعريف ثابت في جافا؟
#JavaConstants #CodeConventions
جافا Java
What is the correct way to declare a constant in Java? ما هي الطريقة الصحيحة لتعريف ثابت في جافا؟ #JavaConstants #CodeConventions
اختر الإجابة الصحيحة
Anonymous Quiz
17%
const int MAX_VALUE = 100;
46%
final int maxValue = 100;
14%
static final int MAX_VALUE = 100;
23%
public static final int MAX_VALUE = 100;
Which of the following is the correct way to create an object of the class 'MyClass' in Java?
أي من الطرق التالية هي الصحيحة لإنشاء كائن من الصنف 'MyClass' في جافا؟
#OOP #ObjectCreation
أي من الطرق التالية هي الصحيحة لإنشاء كائن من الصنف 'MyClass' في جافا؟
#OOP #ObjectCreation
جافا Java
Which of the following is the correct way to create an object of the class 'MyClass' in Java? أي من الطرق التالية هي الصحيحة لإنشاء كائن من الصنف 'MyClass' في جافا؟ #OOP #ObjectCreation
اختر الإجابة الصحيحة
Anonymous Quiz
85%
MyClass obj = new MyClass();
3%
new MyClass obj;
9%
MyClass obj = MyClass();
3%
obj = MyClass();
❤1
What is the purpose of the `package` statement in Java?
ما هو الغرض من عبارة `package` في جافا؟
#JavaPackages #CodeOrganization
ما هو الغرض من عبارة `package` في جافا؟
#JavaPackages #CodeOrganization
جافا Java
What is the purpose of the `package` statement in Java? ما هو الغرض من عبارة `package` في جافا؟ #JavaPackages #CodeOrganization
اختر الإجابة الصحيحة
Anonymous Quiz
31%
To import classes from other files
11%
To create a new class
49%
To organize classes into logical groups and avoid naming conflicts
9%
To define the main method of a program
👍1
What is the main purpose of a constructor in Java?
ما هو الغرض الرئيسي من المُنشئ (constructor) في جافا؟
#JavaBasics #OOP
ما هو الغرض الرئيسي من المُنشئ (constructor) في جافا؟
#JavaBasics #OOP
Create a Java method to check if a number is prime.
أنشئ دالة في جافا للتحقق مما إذا كان العدد أولياً.
#NumberTheory
أنشئ دالة في جافا للتحقق مما إذا كان العدد أولياً.
#NumberTheory
Write a Java code to convert a string to uppercase.
اكتب كود جافا لتحويل سلسلة نصية إلى أحرف كبيرة.
#StringConversion
اكتب كود جافا لتحويل سلسلة نصية إلى أحرف كبيرة.
#StringConversion
What is the purpose of the `implements` keyword in Java?
ما هو الغرض من الكلمة المفتاحية `implements` في جافا؟
#JavaInterfaces #OOP
ما هو الغرض من الكلمة المفتاحية `implements` في جافا؟
#JavaInterfaces #OOP
👍1
Which of the following is not a valid access modifier in Java?
أي مما يلي ليس معدل وصول (access modifier) صالحًا في جافا؟
#JavaAccessModifiers #OOP
أي مما يلي ليس معدل وصول (access modifier) صالحًا في جافا؟
#JavaAccessModifiers #OOP
👍1
Write a Java code to implement a simple guessing game.
اكتب كود جافا لتنفيذ لعبة تخمين بسيطة.
#SimpleGames
اكتب كود جافا لتنفيذ لعبة تخمين بسيطة.
#SimpleGames
What is the purpose of the `default` method in Java interfaces?
ما هو الغرض من الدالة `default` في واجهات جافا؟
#JavaInterfaces #DefaultMethods
ما هو الغرض من الدالة `default` في واجهات جافا؟
#JavaInterfaces #DefaultMethods
جافا Java
What is the purpose of the `default` method in Java interfaces? ما هو الغرض من الدالة `default` في واجهات جافا؟ #JavaInterfaces #DefaultMethods
اختر الإجابة الصحيحة
Anonymous Quiz
16%
To define abstract methods
57%
To provide a default implementation for interface methods
14%
To create private methods in interfaces
13%
To override Object class methods
👍1