In the following code, which of the following represents the line of code that guarantees that the variable m_name cannot be directly accessed from outside a Student object?
```
Class Student
Private m_name As String
Public Property Name() As String
Get
Return m_name
End Get
Set(Value As String)
m_name = Value
End Set
End Property
End Class
```
(A) End Class
(B) m_name = Value
(C) Return m_name
(D) Private m_name As String
(D) Private m_name As String
You might also like to view...
Read the following sentence and key the correct terminal punctuation mark in the blank.The capital of Belarus is Minsk _____?
Fill in the blank(s) with the appropriate word(s).
Katie recently purchased Photoshop, and has been spending the past few days reading manuals and textbooks about how to use the program. Her head is swimming with new terms, facts, hints and pointers as she starts the program for the very first time. What is the first thing Katie will see upon starting Photoshop?
A. The Welcome dialog box B. The Tools panel C. A splash screen D. A list of accepted formats