A procedure in an application needs to store student data. The student first name, student last name, student GPA, and whether or not the student is registered all need to be stored. Write the appropriateDimstatements to declare the variables. Make sure to use appropriate naming conventions.

What will be an ideal response?

Dim strFirstName As String
Dim strLastName As String
Dim decGPA As Decimal
Dim blnRegistered As Boolean

Computer Science & Information Technology

You might also like to view...

A collection is an object. A collection is also an abstraction. Explain how these two sentences can both be true.

What will be an ideal response?

Computer Science & Information Technology

Which HTTP response code indicates that an error has occurred on the client side?

A. 100 B. 200 C. 401 D. 503

Computer Science & Information Technology