Font size
S
M
L
XL
WorksheetsMIS212_Sub
Total questions: 6
Worksheet time: 4mins
Name
Class
Date
1.
يمكن استخدام دوال جاهزة في بيئة
Visual Studio
ويمكن انشاء دوال جديدة
a)
True
b)
False
2.
What is wrong with the following Do loop? Dim index As Integer = 1
Do While index <> 9
MsgBox("Hello")
index =index+1
Loop
a)
(a)المتغير index
لا يجب ان يزيد
b)
(b)الشرط دائما خطأ
c)
(c) تكرار لا نهائي
d)
(d) Nothing
3.
Private Sub disp ()
Dim num as Double = 10
Do While num > 1
MsgBox(num)
num = num - 3
Loop
End Sub.
ما هو الناتح?
a)
(a) 10, 7, and 4
b)
(b) 10, 7, 4, and 1
c)
(c)10, 7, 4, 1, and -2
d)
(d) no output
4.
أي من الاتي لا يوجد في بيئة Visual studio
a)
Do While_Loop
b)
Do_Loop Until
c)
Do_Loop while
d)
Do while_Wend
5.
الاجراء يمكن ان يرجع اكثر من قيمة
a)
TRUE
b)
FALSE
6.
يمكن ان يكون المدخل للاجراء
a)
صفر
b)
1 فقط
c)
1,2,3,...N
d)
ليس لها مدخل
Reset
