סיכום הבחינה
0 מ 10 שאלות הושלמו
Questions:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Information
Visual Basic משפטי תנאי
עליך לציין טקסט. |
|
עליך לציין כתובת דוא"ל. |
|
עליך לציין מספר. |
אתה כבר סיימת את הבחינה לפני. לכן אתה לא יכול להתחיל אותו שוב.
הבחינה טוענת ...
עליך להיכנס או להירשם כדי להתחיל בבחינה.
You have to finish following quiz, to start this quiz:
Results
0 מ 10 שאלות שנענו נכון
הזמן שלך:
זמן שחלף
הגעת ל 0 מ 0 נקודות, (0)
Categories
- Not categorized 0%
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- Answered
- Review
-
Question 1 of 10
1. Question
מה יהיה צבע רקע הטופס אחרי קטע קוד הבאה אם משתמש מכניס ל TextBox ערך d?
If TextBox1.Text = "a" Then
Me.BackColor = Color.Red
ElseIf TextBox1.Text = "b" Then
Me.BackColor = Color.Green
ElseIf TextBox1.Text = "c" Then
Me.BackColor = Color.Blue
Else
Me.BackColor = Color.Yellow
End Ifנכון
לא נכון
-
Question 2 of 10
2. Question
מה יודפס?
Dim x,y As Integer
x = 1
y = 14
y= y \ 10If x <> y Then
MsgBox( "Yes")
Else
MsgBox("No")
End Ifנכון
לא נכון
-
Question 3 of 10
3. Question
מה יודפס?
Dim x As Integer
x = 12
If x > 0 And x < 15 Then
MsgBox("Yes")
Else
MsgBox("No")
End Ifנכון
לא נכון
-
Question 4 of 10
4. Question
איזה תנאי בודק האם תלמיד נכשל במבחן, אם ידוע שציון עובר הוא 55:
נכון
לא נכון
-
Question 5 of 10
5. Question
איזה הודעה נקבל אחרי קטע קוד הבאה?
Dim Temperature As Integer
Temperature = 25
If Temperature > 40 Then
MsgBox("חום כבד")
ElseIf Temperature > 28 Then
MsgBox("חם")
ElseIf Temperature > 20 Then
MsgBox("נעים")
ElseIf Temperature > 14 Then
MsgBox("קריר")
Else
MsgBox("קר")
End Ifנכון
לא נכון
-
Question 6 of 10
6. Question
קיימים 3 אובייקטים: txt1, txt2, txt3.
איזה משפט תנאי בודק האם לפחות באחד מהם יש ערך "ABC".נכון
לא נכון
-
Question 7 of 10
7. Question
קיימים 3 אובייקטים: txt1, txt2, txt3.
איזה משפט תנאי בודק האם כל האובייקטים מכילים ערך "ABC".נכון
לא נכון
-
Question 8 of 10
8. Question
איזה הודעה נקבל אחרי קטע קוד הבאה?
Dim sDay As String
sDay = "monday"
If sDay = " friday" Or sDay = " saturday" Then
MsgBox("לנוח יכול אתא")
Else
MsgBox("לעבוד צריך אתא")
End Ifנכון
לא נכון
-
Question 9 of 10
9. Question
איזה הודעה נקבל אחרי קטע קוד הבאה?
Dim Age As Integer
Age = 10
Select Case Age
Case 0 To 5
MsgBox("גן ילדים ")
Case 6 To 17
MsgBox("בית ספר ")
Case 18 To 21
MsgBox("צבא")
Case Else
MsgBox("או עבודה או פנסיה לימודים גבוהים")
End Selectנכון
לא נכון
-
Question 10 of 10
10. Question
לאיזה כיוון יזוז כדור?
Dim dir As Integer
dir = 3
Select Case dir
Case 1
ball.Left += 10
Case 2
ball.Left -= 10
Case 3
ball.Top += 10
Case 4
ball.Top -= 10
Case Else
ball. Left = 0
End Selectנכון
לא נכון