جافا Java
6.46K subscribers
212 photos
18 videos
81 files
269 links
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Download Telegram
Write a Java method named 'add' that takes two integers as parameters and returns their sum.

اكتب طريقة جافا بأسم 'add' تأخذ عددين صحيحين كمعاملات وترجع مجموعهم.
جافا Java
Write a Java method named 'add' that takes two integers as parameters and returns their sum. اكتب طريقة جافا بأسم 'add' تأخذ عددين صحيحين كمعاملات وترجع مجموعهم.
الأسئلة من اليوم بتكون منوعه بين السهل والصعب والمتوسط وانوع مختلفه مثلا اكتب الكود واختار الاجابه الصحيحه.......
خلينا نشوف ابداعكم 🔥
Please open Telegram to view this post
VIEW IN TELEGRAM
👍73🔥2
Which of these is not a valid Java access modifier?
Anonymous Quiz
19%
public
13%
protected
56%
transient
12%
private
👍31🔥1
Which method signature correctly overrides the 'equals' method inherited from 'Object' class in Java?
Anonymous Quiz
40%
public boolean equals(Object obj)
14%
public boolean equals()
18%
public void equals(Object obj)
29%
public boolean equals(Object obj, Object obj2)
Determine the output of this Java code:
 int[] numbers = {1, 2, 3, 4, 5};
for (int i = numbers.length - 1; i >= 0; i--) {
System.out.print(numbers[i] + "");
}


حدد مخرجات هذا الكود الجافا:
 int[] numbers = {1, 2, 3, 4, 5};
for (int i = numbers.length - 1; i >= 0; i--) {
System.out.print(numbers[i] + "");
}
Which of the following is not an OOP concept in Java?
Anonymous Quiz
7%
Inheritance
12%
Encapsulation
11%
Polymorphism
70%
Compilation
3
In Java, what is a 'package' and how is it used?

في جافا، ما هو 'الحزمة' وكيف يتم استخدامها؟
How do you create an immutable class in Java?

كيف تقوم بإنشاء فئة غير قابلة للتغيير في جافا؟
In Java, which of the following is the correct way to declare an array of integers?
Anonymous Quiz
20%
int[] nums;
12%
int nums[];
21%
int nums = new int[];
47%
A and B are correct
1
In Java, which method is used to find the length of an array?

في جافا، أي طريقة تستخدم لإيجاد طول المصفوفة؟
Describe the concept of 'method overloading' in Java.

وصف مفهوم 'تحميل الطريقة' في جافا.
Write a Java method that takes an array of integers and returns the sum of its elements.

اكتب طريقة جافا تأخذ مصفوفة من الأعداد الصحيحة وتعيد مجموع عناصرها.
Which of the following is a functional interface in Java?
Anonymous Quiz
9%
Runnable
23%
Comparable
17%
Serializable
51%
Both A and B
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);
}
2
Which Java collection class is typically used for a LIFO (Last-In-First-Out) stack implementation?
Anonymous Quiz
35%
ArrayList
21%
LinkedList
32%
Queue
13%
Deque
In Java, what does the 'this' keyword refer to?

في جافا، إلى ماذا تشير كلمة 'this'؟
🎉2