Q421
Open question
Private _intSide As Integer
Public Property Side As Integer
_intSide=_intSide+2
End Property
Select an option to see the answer and solution.
Practice every MCQ with options. Use Show answers when you want the correct option and solution.
689
Questions
22/35
Page
Pick an option on a question to see the right answer and solution.
Q421
Open question
Private _intSide As Integer
Public Property Side As Integer
_intSide=_intSide+2
End Property
Select an option to see the answer and solution.
Q422
Open question
If 5*3 OrElse 3^2 Then
Msg="Hi"
Else
Msg="Bye"
EndIf
Select an option to see the answer and solution.
Q423
Open questionSelect an option to see the answer and solution.
Q424
Open questionSelect an option to see the answer and solution.
Q425
Open questionSelect an option to see the answer and solution.
Q426
Open question
If num<=100
num=num*2;
ElseIf num>500
Num=num*3;
Endif
Select an option to see the answer and solution.
Q427
Open questionSelect an option to see the answer and solution.
Q428
Open questionSelect an option to see the answer and solution.
Q429
Open questionSelect an option to see the answer and solution.
Q430
Open questionSelect an option to see the answer and solution.
Q431
Open questionSelect an option to see the answer and solution.
Q432
Open question
Do While intSub < 4
intTotal = intTotal + intNums(intSub)
intSub = intSub + 1
Loop
dblAvg = intTotal / intSub
Dim intNums() As Integer = {10, 5, 7, 2}. The intTotal, intSub, and dblAvg variables contain the number 0 before the loops are processed.Select an option to see the answer and solution.
Q433
Open questionSelect an option to see the answer and solution.
Q434
Open questionSelect an option to see the answer and solution.
Q435
Open questionSelect an option to see the answer and solution.
Q436
Open questionSelect an option to see the answer and solution.
Q437
Open question
Dim str as String
Dim msg as String
If str.toUpper="IK"
msg="Hi"
Else
msg="Bye"
EndIf
Select an option to see the answer and solution.
Q438
Open questionSelect an option to see the answer and solution.
Q439
Open question
Financial.Pmt (0.05, 3, 9000)
Select an option to see the answer and solution.
Q440
Open question
strName="Veronica Yardley"
num=strName.Length
Select an option to see the answer and solution.