cookie

نحن نستخدم ملفات تعريف الارتباط لتحسين تجربة التصفح الخاصة بك. بالنقر على "قبول الكل"، أنت توافق على استخدام ملفات تعريف الارتباط.

avatar

Learn java تعلم جافا

🔹أهلاً بك في قناة برمجة جافا🔹 النجاح ليس بما تكسب ، بل بما تقدم للآخرين. اي سؤال تواصل معي @Mushtak9. Buy ads https://telega.io/c/learn_java_e

إظهار المزيد
مشاركات الإعلانات
5 891
المشتركون
+624 ساعات
+217 أيام
+2330 أيام

جاري تحميل البيانات...

معدل نمو المشترك

جاري تحميل البيانات...

Write the code to create a program that simulates a simple employee management system, allowing users to add, remove, and search for employees based on their names or employee IDs. اكتب الكود لإنشاء برنامج يحاكي نظام إدارة موظفين بسيطًا، ويسمح للمستخدمين بإضافة، وإزالة، والبحث عن الموظفين بناءً على أسمائهم أو معرفات الموظف الخاصة بهم.
إظهار الكل...
اختر الإجابة الصحيحةAnonymous voting
  • The ability of a variable, function or object to take on multiple forms
  • The concept of wrapping data and methods into a single unit
  • The process of moving the common method logic up to a parent class
  • The capability of Java to run on various operating systems
0 votes
❤‍🔥 4
What is polymorphism in Java? ما هو التعددية في جافا؟
إظهار الكل...
👍 2 1🎉 1
اختر الإجابة الصحيحةAnonymous voting
  • true
  • false
  • null
  • 0
0 votes
1
What is the default value of a boolean variable in Java? ما هي القيمة الافتراضية لمتغير منطقي في جافا؟
إظهار الكل...
Write the code to create a program that reads a CSV file containing student information (name, age, grade) and calculates the average grade for each age group. اكتب الكود لإنشاء برنامج يقرأ ملف CSV يحتوي على معلومات الطالب (الاسم، العمر، الدرجة) ويحسب متوسط الدرجة لكل فئة عمرية.
إظهار الكل...
Which of the following is not a valid Java data type? أي من الأنواع التالية ليست نوع بيانات جافا صالحًا؟
إظهار الكل...
اختر الإجابة الصحيحةAnonymous voting
  • int
  • double
  • String
  • boolean
  • real
0 votes
اختر الإجابة الصحيحةAnonymous voting
  • 1 2 3 4 5
  • 1, 2, 3, 4, 5
  • 12345
  • An error because the syntax is incorrect
0 votes
What will the following Java code snippet print? int[] numbers = {1, 2, 3, 4, 5}; for(int i : numbers) { System.out.print(i + " "); } ماذا سيطبع مقتطف الكود جافا التالي؟ int[] numbers = {1, 2, 3, 4, 5}; for(int i : numbers) { System.out.print(i + " "); }
إظهار الكل...