جافا Java
6.46K subscribers
212 photos
18 videos
81 files
269 links
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Download Telegram
What is the purpose of the `transient` keyword in Java?

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

#JavaSerialization #OOP
👍1
Create a Java program to find the intersection of two arrays.

أنشئ برنامجاً في جافا لإيجاد تقاطع مصفوفتين.

#ArrayOperations
What is method overloading in Java?

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

#JavaMethods #OOP
Create a Java program to print Pascal's triangle.

أنشئ برنامجاً في جافا لطباعة مثلث باسكال.

#PatternPrinting
1
What is the purpose of the `break` statement in a `switch` block?

ما هو الغرض من عبارة `break` في كتلة `switch`؟

#JavaControlFlow #SwitchStatement
What is the purpose of the `super` keyword in Java?

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

#JavaKeywords #Inheritance
Write a Java code to implement a simple URL shortener.

اكتب كود جافا لتنفيذ مختصر روابط بسيط.

#WebApplications
What is the purpose of the `super` keyword in Java?

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

#JavaKeywords #Inheritance
What is the purpose of the `final` keyword when applied to a variable in Java?

ما هو الغرض من الكلمة المفتاحية `final` عند تطبيقها على متغير في جافا؟

#JavaKeywords #FinalKeyword
Write a Java code to implement a simple queue using an array.

اكتب كود جافا لتنفيذ صف بسيط باستخدام مصفوفة.

#DataStructures
What is the output of the following code?
int[] numbers = {1, 2, 3, 4, 5};
System.out.println(numbers[5]);

ما هو ناتج تنفيذ الكود التالي؟
int[] numbers = {1, 2, 3, 4, 5};
System.out.println(numbers[5]);

#JavaArrays #ExceptionHandling
👍2
Which collection class should be used if you need to maintain the insertion order of elements?

أي فئة من فئات المجموعات (collections) يجب استخدامها إذا كنت بحاجة للحفاظ على ترتيب إدخال العناصر؟

#JavaCollections #DataStructures