جافا Java
6.46K subscribers
212 photos
18 videos
81 files
269 links
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Download Telegram
Create a Java program to generate a simple report card for students.

أنشئ برنامجاً في جافا لإنشاء بطاقة تقرير بسيطة للطلاب.

#ReportGeneration
What is the output of the following code?
```java
String str1 = "Hello";
String str2 = "Hello";
System.out.println(str1 == str2);```

ما هو ناتج تنفيذ الكود التالي؟
```java
String str1 = "Hello";
String str2 = "Hello";
System.out.println(str1 == str2);```

#JavaStrings #StringPool
Create a Java array of integers with 5 elements and initialize it with values.

أنشئ مصفوفة أعداد صحيحة في جافا بـ 5 عناصر وقم بتهيئتها بقيم.

#Arrays
👍2
What is the difference between `ArrayList` and `LinkedList` in Java?

ما هو الفرق بين `ArrayList` و `LinkedList` في جافا؟

#JavaCollections #DataStructures
ايش تستخدم
Anonymous Poll
28%
🔥 IntelliJ
72%
😥 Netbeans
👍1
What is the purpose of the `enum` keyword in Java?

ما هو الغرض من الكلمة المفتاحية `enum` في جافا؟

#JavaEnum #DataTypes
Create a Java method to find the mode of an array of numbers.

أنشئ دالة في جافا لإيجاد المنوال (القيمة الأكثر تكراراً) في مصفوفة من الأرقام.

#StatisticalCalculations
Which of the following is true about Java's lambda expressions?

أي مما يلي صحيح بخصوص تعبيرات لامدا (lambda expressions) في جافا؟

#JavaLambdaExpressions #FunctionalProgramming
What is method overloading in Java?

ما هو تحميل الدوال (method overloading) في جافا؟

#JavaMethods #Overloading
This media is not supported in the widget
VIEW IN TELEGRAM
🔥41👍1
Write a Java code to find the average of numbers in an array.

اكتب كود جافا لإيجاد متوسط الأرقام في مصفوفة.

#ArrayAverage
What is the difference between `public`, `protected`, and `private` access modifiers in Java?

ما هو الفرق بين معدلات الوصول `public`، `protected`، و `private` في جافا؟

#JavaAccessModifiers #Encapsulation
Which of the following is true about Java's `try-with-resources` statement?

أي مما يلي صحيح بخصوص عبارة `try-with-resources` في جافا؟

#JavaExceptionHandling #ResourceManagement
Create a Java program to find the longest word in a sentence.

أنشئ برنامجاً في جافا لإيجاد أطول كلمة في جملة.

#StringProcessing