تسجيل الدخول
تذكر
تسجيل
الأسئلة
الأسئلة غير المجابة
الوسوم
الأعضاء
اطرح سؤالاً
الأحدث
نقاشات ساخنة!
أكثر التقييمات
أكثر الإجابات
الأكثر عرضاً
اطرح سؤالاً
آخر الأسئلة
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
سُئل
أبريل 22
بواسطة
مجهول
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
سُئل
أبريل 22
بواسطة
مجهول
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]
سُئل
أبريل 22
بواسطة
مجهول
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
سُئل
أبريل 22
بواسطة
مجهول
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
سُئل
أبريل 22
بواسطة
مجهول
0
تصويتات
1
إجابة
Queue<Integer> qu = new LinkedList<>(); qu.add(1); qu.add(2); qu.add(3); 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
سُئل
أبريل 22
بواسطة
مجهول
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]); }} System.out.println(); System.out.print(arr[1][0]); What is output of array-2D in java? a.123456 4 b.0123456 6 c.123456 6 d.123456 5
سُئل
أبريل 22
بواسطة
مجهول
0
تصويتات
1
إجابة
Queue<Integer> qu = new LinkedList<>(); System.out.println("Adding elements to the Queue"); qu.add(1); qu.add(2); qu.add(3); System.out.println("The Queue size is : "+qu.size()); What is output of code? a.Adding elements to the Queue The Queue size is: 3 b.Adding elements to the Queue The Queue size is: 2 c.Adding elements to the Queue The Queue size is: [1,2,3] d.Adding elements to the Queue The Queue size is: 0
سُئل
أبريل 22
بواسطة
مجهول
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
سُئل
أبريل 22
بواسطة
مجهول
0
تصويتات
1
إجابة
Stack st=new Stack(); st.push("Saudi"); st.push("Brazil"); st.push("Canada"); System.out.println("Size of stack is: " +st.size());What is output of code? a.Size of stack is: 3 b.Size of stack is: -1 c.Size of stack is: 2 d.None.
سُئل
أبريل 22
بواسطة
مجهول
0
تصويتات
1
إجابة
تمتلك معظم الذرات شحنة موجبة، أو شحنة سالبة صواب ام خطا
سُئل
أبريل 22
بواسطة
مجهول
0
تصويتات
1
إجابة
سدادات الأذن تستطيع خفض مستوى الضجيج بمقدار ا. 20 ديسيبل ب. 30 ديسيبل
سُئل
أبريل 21
بواسطة
مجهول
0
تصويتات
1
إجابة
حدد عدد محاور التماثل في الشكل التالي المربع
سُئل
أبريل 21
بواسطة
مجهول
0
تصويتات
1
إجابة
حدد عدد المحاور التي في الشكل التالي المعين
سُئل
أبريل 21
بواسطة
مجهول
0
تصويتات
1
إجابة
سدادات الأذن تستطيع خفض مستوى الضجيج بمقدار ا. 20 ديسيبل ب. 30 ديسيبل
سُئل
أبريل 21
بواسطة
مجهول
0
تصويتات
1
إجابة
اذا علمت ان زوايا المضلع متماسة معا الدائره وقياس س =٣ج فأوجد قياس الزاوية ج
سُئل
أبريل 20
بواسطة
مجهول
0
تصويتات
1
إجابة
Last year sara ( likes - liked ) Arabic
سُئل
أبريل 20
بواسطة
مجهول
0
تصويتات
1
إجابة
This year Ali ( likes - liked ) social studies
سُئل
أبريل 20
بواسطة
مجهول
0
تصويتات
1
إجابة
الماضي البسيط ل كلمة like
سُئل
أبريل 20
بواسطة
مجهول
0
تصويتات
1
إجابة
الماضي البسيط من كلمة are
سُئل
أبريل 20
بواسطة
مجهول
صفحة:
« السابق
1
...
4
5
6
7
8
9
10
...
1000
...
التالي »
مرحبًا بك إلى يزيد، حيث يمكنك طرح الأسئلة وانتظار الإجابة عليها من المستخدمين الآخرين.
آخر الأسئلة
...