uk
Feedback
جافا Java

جافا Java

Відкрити в Telegram

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

Показати більше
6 327
Підписники
-524 години
-157 днів
-6130 день
Архів дописів
What is the purpose of the `volatile` keyword in Java? ما هو الغرض من الكلمة المفتاحية `volatile` في جافا؟ #JavaConcurrency #Multithreading

جمعت كل المواقع اللي فيها تدريبات جافا هنا https://t.me/web_dev0/104

اختر الإجابة الصحيحة
Anonymous voting

What will be the output of the following code? ```java int x = 5; System.out.println(x++ + ++x);``` ما هو ناتج تنفيذ الكود التالي؟ ```java int x = 5; System.out.println(x++ + ++x);``` #JavaOperators #IncrementOperators

Create a Java program to simulate a simple dice rolling game. أنشئ برنامجاً في جافا لمحاكاة لعبة رمي النرد البسيطة. #RandomNumbers

وانا مفكر نفسي من مؤسسين التليقرام طلعت اقل واحد 😂😂

حسابي بتليقرام عمره 9 سنوات كم عمر حسابك 😁 https://t.me/dogshouse_bot
حسابي بتليقرام عمره 9 سنوات كم عمر حسابك 😁 https://t.me/dogshouse_bot

اختر الإجابة الصحيحة
Anonymous voting

Which of the following is true about Java's functional interfaces? أي مما يلي صحيح بخصوص الواجهات الوظيفية (functional interfaces) في جافا؟ #JavaFunctionalProgramming #Interfaces

اختر الإجابة الصحيحة
Anonymous voting

What is the purpose of the `this()` call in a constructor? ما هو الغرض من استدعاء `this()` في المُنشئ؟ #JavaConstructors #OOP

Write a Java code to implement a simple music playlist manager. اكتب كود جافا لتنفيذ مدير قائمة تشغيل موسيقية بسيط. #SimpleApplications

اختر الإجابة الصحيحة
Anonymous voting

What is the difference between `==` and `.equals()` when comparing objects in Java? ما هو الفرق بين `==` و `.equals()` عند مقارنة الكائنات في جافا؟ #JavaComparison #ObjectEquality

Create a Java program to simulate a simple dice game. أنشئ برنامجاً في جافا لمحاكاة لعبة نرد بسيطة. #SimpleGames

اختر الإجابة الصحيحة
Anonymous voting

What is the output of the following code? ```java String str = "Hello"; str.concat(" World"); System.out.println(str);``` ما هو ناتج تنفيذ الكود التالي؟ ```java String str = "Hello"; str.concat(" World"); System.out.println(str);``` #JavaStrings #Immutability

Create a Java switch statement to print the name of a day based on a number (1-7). أنشئ عبارة switch في جافا لطباعة اسم اليوم بناءً على رقم (1-7). #SwitchStatement

اختر الإجابة الصحيحة
Anonymous voting

What is polymorphism in Java? ما هو تعدد الأشكال (polymorphism) في جافا؟ #JavaPolymorphism #OOP