Ict
Ict
Ict
MDI Form This serves as the main form of a program or application created.
The underline word in the above code will be displayed inside the message box.
True The access modifier defines the accessibility of a procedure or function.
False A function procedure does not return a value.
False A sub procedure is a block of code enclosed within the function and end function statements.
False InputBox.Show("Input your grade:", "4th Quarter", "99.99") The above code is a correct declaration for
the input box.
1970 Visual Basic was developed in what year?
True The arguments are the values passed to the parameters of a procedure or function.
True A procedure declared with the friend keyword is accessible from within the program that contains its
declaration and from anywhere else in the same assembly.
False We have three (3) types of procedures in VB.NET.
False An input box is used to display the information to the user and you cannot type anything on this dialog
box.
False The private access modifier is the default access mode in VB.NET.
True The Chr(10) is used to go to the next line.
True A procedure declared with the public keyword is accessible from anywhere within and outside of the
application.
False A message box is used to request a value from the user.
False A function procedure is a block of code enclosed within the sub and end sub statements.
True The MsgBoxStyle is used to display the buttons like Yes/No/Cancel in a message box.
True The codes sub grade(ByVal G As Long) and public sub grade(ByVal G As Long) are the same.
False We can call a sub procedure by using the function name.
True The input box has a default buttons of Ok and Cancel.
True A function procedure returns a value to the calling code which is different from a sub procedure.
True The access modifier defines the accessibility of a procedure or function.