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

ما هو الفرق بين `++i` و `i++` في جافا؟

#JavaOperators #IncrementOperators
👍1
Which of the following is true about the `break` statement in Java?

أي مما يلي صحيح بخصوص عبارة `break` في جافا؟

#JavaControlFlow #BreakStatement
Write a Java code to implement a simple quiz game.

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

#SimpleGames
Which of the following is true about the `finally` block in Java?

أي مما يلي صحيح بخصوص كتلة `finally` في جافا؟

#JavaExceptionHandling #FinallyBlock
What is the purpose of the `implements` keyword in Java?

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

#JavaInterfaces #OOP
Write a Java code to implement a simple library management system.

اكتب كود جافا لتنفيذ نظام إدارة مكتبة بسيط.

#SimpleApplications
What is the purpose of an interface in Java?

ما هو الغرض من الواجهة (interface) في جافا؟

#JavaInterfaces #OOP
What is inheritance in Java?

ما هو الوراثة (inheritance) في جافا؟

#JavaInheritance #OOP
Write a Java code to implement a simple contact management system.

اكتب كود جافا لتنفيذ نظام إدارة جهات اتصال بسيط.

#SimpleApplications
What is the purpose of a constructor in Java?

ما هو الغرض من المُنشئ (constructor) في جافا؟

#JavaConstructors #OOP
Write a Java code to reverse a string without using the built-in reverse() method.

اكتب كود جافا لعكس سلسلة نصية دون استخدام دالة reverse() المدمجة.

#StringManipulation
Create a Java method to reverse the order of words in a sentence.

أنشئ دالة في جافا لعكس ترتيب الكلمات في جملة.

#StringManipulation