جافا Java
6.46K subscribers
212 photos
18 videos
81 files
269 links
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Download Telegram
رمضان كريم أعاده الله علينا وعليكم بالخير واليمن والبركات ❤️
11
Which keyword in Java is used to create a subclass from a superclass?
Anonymous Quiz
11%
subclass
70%
extends
9%
implements
10%
inherit
Fix the error in the following Java code snippet to correctly declare and initialize an array of integers.

int[] numbers = {1, 2, 3, 4, 5;



أصلح الخطأ في الشفرة البرمجية جافا التالية لتعريف وتهيئة مصفوفة من الأعداد الصحيحة بشكل صحيح.
منصه JetBrains نزلت استبيان اتوقع بيفتحون منصه كورسات اللي يجاوب على الاستبيان فيه جوائز كثيره مثل اللي بالصوره ادخلوا جاوبوا
https://surveys.jetbrains.com/s3/computer-science-learning-curve-survey-sh?pcode=796954345361784390
👍1👎1
Identify and correct the error in the following Java code snippet to demonstrate the correct use of an abstract class.

abstract class Animal {
abstract void eat();
}
class Dog extends Animal {
void eat() {
System.out.println("Dog eats");
}
}
public class TestAnimal {
public static void main(String[] args) {
Animal a = new Dog();
a.eat();
}
}



حدد وصحح الخطأ في الشفرة البرمجية جافا التالية لتوضيح الاستخدام الصحيح للصف المجرد.
👍2
What does the `this` keyword refer to in Java?
Anonymous Quiz
20%
The current method
23%
The current class
49%
The current object
8%
The superclass
What is the output of the following Java code snippet that uses array of objects?

class Student {
String name;
Student(String name) {
this.name = name;
}
}
public class Test {
public static void main(String[] args) {
Student[] students = {new Student("John"), new Student("Jane")};
for(Student student : students) {
System.out.println(student.name);
}
}
}



ما هو مخرج الشفرة البرمجية جافا التالية التي تستخدم مصفوفة من الكائنات؟
Fix the error in the following Java code snippet to correctly declare and initialize an array of integers.

int[] numbers = {1, 2, 3, 4, 5;



أصلح الخطأ في الشفرة البرمجية جافا التالية لتعريف وتهيئة مصفوفة من الأعداد الصحيحة بشكل صحيح.
كم يكون ال output
جافا Java pinned Deleted message
جافا Java pinned Deleted message
الكود صح او خطأ مع السبب
👍5
الى ماذا ترمز هذي الصيغه
public void methodABC(int x,double y)
public void methodABC(double x,int y)
Anonymous Quiz
45%
Overriding
55%
overload