تسجيل الدخول
تذكر
تسجيل
الأسئلة
الأسئلة غير المجابة
الوسوم
الأعضاء
اطرح سؤالاً
الأحدث
نقاشات ساخنة!
أكثر التقييمات
أكثر الإجابات
الأكثر عرضاً
اطرح سؤالاً
آخر الأسئلة
0
تصويتات
1
إجابة
عبد الرحمن بن الدوسري هو أبو هريره ؟ صح او لا بس اختصار
سُئل
منذ
5 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
Outsourcing is a short-term business arrangement in which a company contracts for services with an outside organization that has expertise in providing a specific functionTrue False
سُئل
منذ
5 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
is a term applied to a variety of efforts directed toward the efficient design, manufacture, operation, and disposal of IT-related products, including personal computers, laptops, servers, printers, and printer supplies. Green computing Whistle-blowing •CONTINGENT WORK
سُئل
منذ
5 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
Whistle-blowers are employees who act as informants on their company, revealing information to enrich themselves or to gain revenge for a perceived wrongTrue False
سُئل
منذ
5 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
involves acquiring data, sound, images, and video from a patient and then transmitting everything to a medical specialist for later evaluation. a.Traditional Medicine b.Live Telemedicine c.Store-and-forward telemedicine d.Blackboard
سُئل
منذ
5 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
التقارب من مبادئ تصميم مستندات الأعمال يعني
سُئل
منذ
5 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
الصيغة غير الرسمية تتميز بأسلوب الكتابة الإحترافي والتركيز على الأدوار والبروتوكول والوضع المهني
سُئل
منذ
5 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
يمكن فتح مدير المهام في ويندوز باستخدام لوحة المفاتيح عبر الضغط على "Ctrl + Shift + Esc". ( صح ام خطأ ؟
سُئل
منذ
5 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
Viewer في صلاحيات في جوجل درايف يستطيع إجراء تعديلات وإضافة وحذف الملفات ( صح ام خطأ ؟
سُئل
منذ
5 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
5.إعادة تشغيل جهاز التوجيه (الموجه) هي إحدى الخطوات الممكنة لحل مشكلات الاتصال بالإنترنت (صح ام خطأ ؟
سُئل
منذ
5 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
العلم الذي يعنى به الاثار التاريخيه هو التاريخ المتحف المتحف صح ولا الاثار الاثار اجابه خاطئه
سُئل
منذ
5 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
الامانه تودي إلى الاستقرار او الغلاء او الفساد
سُئل
منذ
5 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
العلم الذي يعنى به الاثار التاريخيه هو
سُئل
منذ
5 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
ماأداب الدعاء
سُئل
منذ
5 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
اسم المفعول من الفعل الثلاثي (سلا) مسلو، فما أصل الكلمة قبل التغيير؟ مسلوي مسلووي مسلوو
سُئل
منذ
6 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
int [][] arr ={{1,2,3},{4,5,6}}; for(int arr1= 0; arr1<arr.length; arr1++){ for(int arr2=0; arr2<arr[arr1].length; arr2++){ System.out.print(arr[arr1][arr2]); }} What is output of array-2D in java? a.0123456 b. 123456 c.123 d.456
سُئل
منذ
6 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
Stack st=new Stack(); st.push("Saudi"); st.push("Brazil"); st.push("Canada"); System.out.println("Search of Dubia in stack:" +st.search("Dubai"));What is output of code? a.Search of Dubia in stack: 2 b.Search of Dubia in stack: 1 c.Search of Dubia in stack: 0 d.Search of Dubia in stack: -1
سُئل
منذ
6 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
LinkedList link=new LinkedList(); link.add("a"); link.add("b"); link.add(10); System.out.println("The contents of array is" + link); What is output of linkedList in java? a.The contents of array is[b, 10, a] b.The contents of array is[10, b, a] c.The contents of array is[b, a, 10] d.The contents of array is[a, b, 10]
سُئل
منذ
6 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
LinkedList link=new LinkedList(); link.add("a"); link.add("b"); link.add(10); System.out.println("The contents of array is" + link); System.out.println("size of an linkedlist is " + link.size()); What is output of linkedList in java? a.The contents of array is[b, 10, a] size of an linkedlist is 3 b.The contents of array is[10, b, a] size of an linkedlist is 10 c.The contents of array is[a, b, 10] size of an linkedlist is 3 d.The contents of array is[a, b, 10]size of an linkedlist is 2
سُئل
منذ
6 أيام
بواسطة
مجهول
0
تصويتات
1
إجابة
int [] arr = {1,2,3,4,5}; for(int arr1= 0; arr1<arr.length; arr1++){ System.out.print(arr[arr1]); } System.out.println(); System.out.print("index 1 is : "+ arr[1]); What is output of array-1D in java? a.12345 index 1 is : 1 b. 012345 index 1 is : 2 c.12345 index 1 is : 2 d.12345 index 1 is : 0
سُئل
منذ
6 أيام
بواسطة
مجهول
صفحة:
« السابق
1
2
3
4
5
6
7
8
...
1000
...
التالي »
مرحبًا بك إلى يزيد، حيث يمكنك طرح الأسئلة وانتظار الإجابة عليها من المستخدمين الآخرين.
آخر الأسئلة
...