جافا Java
Open in Telegram
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Show more6 160
Subscribers
-524 hours
-197 days
-7530 days
Posts Archive
6 160
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);
}6 160
In Java, what is the result of using '==' to compare two strings 'str1' and 'str2'?
6 160
What is the use of the 'final' keyword when applied to a variable in Java?
ما هو استخدام كلمة 'final' عند تطبيقها على متغير في جافا؟
6 160
Consider the code:
class Animal {
void sound() {
System.out.println("Animal sound");
}}
class Dog extends Animal {
void sound() {
System.out.println("Bark");
}}
What concept of OOP does this demonstrate?
ضع في اعتبارك الكود:
class Animal {
void sound() {
System.out.println("Animal sound");
}}
class Dog extends Animal {
void sound() {
System.out.println("Bark");
}}
ما هو المفهوم الذي يوضحه هذا الكود في البرمجة الشيئية؟6 160
Which of these data types is used to store a single character in Java?
6 160
What is the purpose of garbage collection in Java, and how does it work?
ما هو الغرض من جمع القمامة في جافا، وكيف يعمل؟
6 160
المبرمجين الجدد حملوا النتبينز والجافا بهذي الطريقه واشتركوا بالقناة ممكن تفيدكم
https://youtu.be/u-AtTJUHXZ8?si=ZZz67xGX3cnfRGsZ
6 160
How do you create an immutable class in Java?
كيف تقوم بإنشاء فئة غير قابلة للتغيير في جافا؟
6 160
Which Java collection class is typically used for a LIFO (Last-In-First-Out) stack implementation?
6 160
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);
}