جافا Java
6.46K subscribers
212 photos
18 videos
81 files
269 links
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Download Telegram
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
What is the output of the following code?
String str = "Hello";
str.concat(" World");
str.toLowerCase();
System.out.println(str);

ما هو ناتج تنفيذ الكود التالي؟
String str = "Hello";
str.concat(" World");
str.toLowerCase();
System.out.println(str);

#JavaStrings #Immutability
👍21
Create a Java method to solve a simple Sudoku puzzle.

أنشئ دالة في جافا لحل لغز سودوكو بسيط.

#PuzzleSolving
What is the difference between `String`, `StringBuilder`, and `StringBuffer` in Java?

ما هو الفرق بين `String`، `StringBuilder`، و `StringBuffer` في جافا؟

#JavaStrings #StringManipulation