جافا Java
Відкрити в Telegram
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Показати більше6 165
Підписники
-124 години
-177 днів
-6830 день
Архів дописів
6 167
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.
اكتب الكود لإنشاء برنامج يحاكي نظام إدارة موظفين بسيطًا، ويسمح للمستخدمين بإضافة، وإزالة، والبحث عن الموظفين بناءً على أسمائهم أو معرفات الموظف الخاصة بهم.
6 167
What is the default value of a boolean variable in Java?
ما هي القيمة الافتراضية لمتغير منطقي في جافا؟
6 167
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 يحتوي على معلومات الطالب (الاسم، العمر، الدرجة) ويحسب متوسط الدرجة لكل فئة عمرية.
6 167
Which of the following is not a valid Java data type?
أي من الأنواع التالية ليست نوع بيانات جافا صالحًا؟
6 167
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 + " ");
}
6 167
Write the code to create a program that simulates a simple online store, allowing users to browse products, add items to a shopping cart, and complete a purchase.
اكتب الكود لإنشاء برنامج يحاكي متجرًا إلكترونيًا بسيطًا، ويسمح للمستخدمين بتصفح المنتجات، وإضافة العناصر إلى عربة التسوق، واستكمال عملية الشراء.
6 167
Which keyword is used to define a class in Java?
أي كلمة مفتاحية تستخدم لتعريف فئة في جافا؟
6 167
Write the code to implement a recursive algorithm to find the sum of all elements in a binary tree.
اكتب الكود لتنفيذ خوارزمية متكررة لإيجاد مجموع جميع العناصر في شجرة ثنائية.
