تسجيل الدخول
تذكر
تسجيل
الأسئلة
الأسئلة غير المجابة
الوسوم
الأعضاء
اطرح سؤالاً
اطرح سؤالاً
0.2+0.3
0
تصويتات
سُئل
يناير 17
بواسطة
مجهول
0.2+0.3
من فضلك
سجل دخولك
أو
قم بتسجيل حساب
للإجابة على هذا السؤال
1
إجابة واحدة
0
تصويتات
تم الرد عليه
يناير 16
بواسطة
مجهول
0.5
تعليقك على هذه الإجابة:
اسمك الذي سيظهر (اختياري):
أعلمني على هذا البريد الإلكتروني إذا تم إضافة تعليق بعدي:
أعلمني على بريدي الإلكتروني إذا تم إضافة تعليق بعدي
نحن نحرص على خصوصيتك: هذا العنوان البريدي لن يتم استخدامه لغير إرسال التنبيهات.
مرحبًا بك إلى يزيد، حيث يمكنك طرح الأسئلة وانتظار الإجابة عليها من المستخدمين الآخرين.
اسئلة متعلقة
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
إجابة
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
بواسطة
مجهول
...