Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Matrial: visual basic 2015 1-What is the name of the screen that displays a logo

ID: 3803829 • Letter: M

Question

Matrial: visual basic 2015

1-What is the name of the screen that displays a logo and version number of an application allowing the program to load?

2-What is the fewest number of arguments you can pass to a Sub procedure?

3-How many values can a Function procedure return?

4-Which type of exception would be detected if you used the conversion command Convert.ToInt32 to convert a non-integer value?

5-If you enter a number that is too large for the data type, which type of exception would be detected?

Explanation / Answer

1. Splash screen displays a logo and version number of application.

2. Sub procedure in visual basic can take any number of arguments. Even it can take variable number of argument. As far as fewer number of arguments are concern it can take zero number of arguments as well because of the reason that the arguments can be made optional while creating sub procedure.

3. A function procedure returns one value which is true for any programing language

4. A FormatException is detected in case if non integer value is given to conver.TOInt32

5. If a number that is too large for a data type is entered then overflowException is thrown.