Write a Class statement that defines a class named Employee. (The class contains four public variables namedEmpID,LastName,FirstName, andPayRate. TheEmpID,LastName, andFirstNamevariables are String variables. ThePayRatevariable is a Decimal variable.) Then write a statement that creates an Employee variable namedpartTimeand also instantiates an Employee object, assigning it to thepartTimevariable.

What will be an ideal response?

Public Class Employee
Public EmpID As String
Public LastName As String
Public FirstName As String
Public PayRate As Decimal
End Class

Dim partTime As New Employee

Computer Science & Information Technology

You might also like to view...

A data model is a collection of tables and their relationships reflecting the real-world relationships between business functions and processes

Indicate whether the statement is true or false.

Computer Science & Information Technology

What are the drawbacks of Web-based advertisements that flash to get a person’s attention?

What will be an ideal response?

Computer Science & Information Technology