تسجيل الدخول
تذكر
تسجيل
الأسئلة
الأسئلة غير المجابة
الوسوم
الأعضاء
اطرح سؤالاً
الأحدث
نقاشات ساخنة!
أكثر التقييمات
أكثر الإجابات
الأكثر عرضاً
اطرح سؤالاً
آخر الأسئلة
0
تصويتات
1
إجابة
ماسبب كتابه الهمزه المتوسطه على الف في كلمه زأر
سُئل
منذ
1 ساعة
بواسطة
مجهول
0
تصويتات
1
إجابة
ماسبب كتابه الهمزه المتوسطه على الف في كلمه فأس
سُئل
منذ
1 ساعة
بواسطة
مجهول
0
تصويتات
1
إجابة
ماسبب كتابه الهمزه المتوسطه على الالف في كلمه سألت
سُئل
منذ
1 ساعة
بواسطة
مجهول
0
تصويتات
1
إجابة
صنفي الجمل الاتيه الى جمل اسميه مثبته الجمل منفيه مثال.....لا تترك صنبور الماء مفتوحا
سُئل
منذ
1 ساعة
بواسطة
مجهول
0
تصويتات
1
إجابة
الهمزه المتوسطة تكتب على الف اذا كانت ........،،، وما قبلها حرف..........او.......؟
سُئل
منذ
1 ساعة
بواسطة
مجهول
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 0 is : "+ arr[0]); What is output of array-1D in java? a.12345 index 0 is : 0 b.012345 index 0 is : 2 c.12345 index 0 is : 2 d.12345 index 0 is : 1 1 points
سُئل
منذ
1 ساعة
بواسطة
مجهول
0
تصويتات
1
إجابة
Queue<Integer> qu = new LinkedList<>(); qu.add(1); qu.add(2); qu.add(3); qu.poll(); qu.poll(); System.out.println("The first element is: "+qu.peek()); What is output of code? a.The first element is: 2 b.The first element is: 1 c.The first element is: 0 d.The first element is: 3
سُئل
منذ
1 ساعة
بواسطة
مجهول
0
تصويتات
1
إجابة
Queue<Integer> qu = new LinkedList<>(); qu.add(1); qu.add(2); qu.add(3); qu.poll(); qu.poll(); System.out.println("The Queue size is : "+qu.size()); What is output of code? a. The Queue size is: 3 b. The Queue size is: 0 c.The Queue size is: 1 d.The Queue size is: 5
سُئل
منذ
1 ساعة
بواسطة
مجهول
0
تصويتات
1
إجابة
Vector vector= new Vector(); vector.addElement(1); vector.addElement(2); vector.addElement(3); System.out.println("Size of the Vector: " + vector.size()); System.out.println("First element: " + vector.firstElement()); What is output of vector in java? a.Size of the Vector: 3 First element: 1 b.Size of the Vector: 2 First element: 1 c.Size of the Vector: 3 First element: 2 d.Size of the Vector: 3 First element: 0
سُئل
منذ
1 ساعة
بواسطة
مجهول
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
سُئل
منذ
1 ساعة
بواسطة
مجهول
0
تصويتات
1
إجابة
Vector vector= new Vector(); vector.addElement("Banana"); vector.addElement("Cherry"); vector.addElement(3); vector.addElement(8); System.out.println("Vector elements: " + vector); System.out.println("Size of the Vector: " + vector.size()); What is output of vector in java? a.Vector elements: [Banana, Cherry, 3, 8]Size of the Vector: 3 b.Vector elements: [3, 8, Banana, Cherry,]Size of the Vector: 3 c.Vector elements: [Banana, Cherry, 3, 8]Size of the Vector: 4 d.Vector elements: [Banana, Cherry]Size of the Vector: 4
سُئل
منذ
1 ساعة
بواسطة
مجهول
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] 1 points
سُئل
منذ
1 ساعة
بواسطة
مجهول
0
تصويتات
1
إجابة
LinkedList link=new LinkedList(); link.add(10); link.add(20); link.add(30); link.add(2, 25); System.out.println("The contents of array is" + link); What is output of linkedList in java? a.The contents of array is[10, 20, 30, 25] b.The contents of array is[10, 25, 20, 30] c. The contents of array is[10, 20, 2, 25, 30] d.The contents of array is[10, 20, 25, 30]
سُئل
منذ
1 ساعة
بواسطة
مجهول
0
تصويتات
1
إجابة
Stack st=new Stack(); st.push("Saudi"); st.push("Brazil"); st.push("Canada"); System.out.println("Remove front stack: " +st.pop()); What is output of code? a.Remove front stack: Brazil b.Remove front stack: Canada c.Remove front stack: Saudi d.Remove front stack: -1
سُئل
منذ
1 ساعة
بواسطة
مجهول
0
تصويتات
1
إجابة
LinkedList link=new LinkedList(); link.add("Apple"); link.add("Orange"); link.add(2, "Banana"); link.remove(0); System.out.println("The contents of array is" + link); What is output of linkedList in java? a.The contents of array is[Orange, Banana] b.The contents of array is[Apple, Orange, Banana] c.The contents of array is[Banana, Orange] d.The contents of array is[Apple, Banana, Orange]
سُئل
منذ
1 ساعة
بواسطة
مجهول
0
تصويتات
1
إجابة
س^2-8س=9
سُئل
منذ
1 ساعة
بواسطة
مجهول
0
تصويتات
1
إجابة
150 pasta dishes (each requires 200g pasta, 10g garlic, and 50g Parmesan).
سُئل
منذ
1 ساعة
بواسطة
مجهول
0
تصويتات
1
إجابة
200 burgers (each requires 150g beef, 50g lettuce, and 30g cheese).
سُئل
منذ
1 ساعة
بواسطة
مجهول
0
تصويتات
1
إجابة
Using the following sales forecast for a week, draft a purchase order: 200 burgers (each requires 150g beef, 50g lettuce, and 30g cheese). 150 pasta dishes (each requires 200g pasta, 10g garlic, and 50g Parmesan). Question: include quantities of all ingredients required for the forecast, accounting for 5% waste during preparation.
سُئل
منذ
1 ساعة
بواسطة
مجهول
0
تصويتات
1
إجابة
س^2-10س+25=0
سُئل
منذ
1 ساعة
بواسطة
مجهول
صفحة:
1
2
3
4
...
1000
...
التالي »
مرحبًا بك إلى يزيد، حيث يمكنك طرح الأسئلة وانتظار الإجابة عليها من المستخدمين الآخرين.
آخر الأسئلة
...