تسجيل الدخول
تذكر
تسجيل
الأسئلة
الأسئلة غير المجابة
الوسوم
الأعضاء
اطرح سؤالاً
اطرح سؤالاً
What is the first of a lunar eclipse
0
تصويتات
سُئل
مايو 22، 2024
بواسطة
مجهول
What is the first of a lunar eclipse
من فضلك
سجل دخولك
أو
قم بتسجيل حساب
للإجابة على هذا السؤال
0
إجابة
مرحبًا بك إلى يزيد، حيث يمكنك طرح الأسئلة وانتظار الإجابة عليها من المستخدمين الآخرين.
اسئلة متعلقة
+1
تصويت
1
إجابة
1 Salt is produced when acids and baies react. 2 There are three types of lenses 3 Lunar eclipse is the sun eclipse 4 Wood and glass are used to make windows 5 We cannot see in a foggy weather, 6 )"left" and "right" are synonyms 7 Chickens have beaks and claws 8 Telescopes are used to study blood cells 9 "common" and "rate" are synonyms. 10 Plantation is a land planted with trees. 11 "bare hands" means "doing something without tools" 12 )"duties" means "what you have to do 13 14 15 16 17 "spare time interests" are "hobbies". People with learning difficulties are those who learn easily. ) A phrase to end a letter is "yours faithfully". We cannot grind sorghum. 7 Chilli powder is a kind of spices. 18 Slowly and quickly are synonyms Brad the fingerthurmet alleathe Part One: Mark (T/True) for
سُئل
مايو 15، 2024
بواسطة
مجهول
0
تصويتات
0
إجابة
Describe a lunar eclipse
سُئل
مايو 22، 2024
بواسطة
مجهول
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
إجابة
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
إجابة
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? The first element is: 2 The first element is: 1 The first element is: 0 The first element is: 3
سُئل
مارس 6
بواسطة
مجهول
...