Which of the following is the correct way to declare a public read-only property?
a.```
Public ReadOnly Property PropertyName() As DataType
Statements
End Property
```
b.```
Public Property ReadOnly PropertyName() As DataType
Get
Statements
End Get
End Property
```
c. ```
Public ReadOnly Property PropertyName() As DataType
Get
Statements
End Get
End Property
```
d.```
ReadOnly Public Property PropertyName() As DataType
Set
Statements
End Set
End Property
```
c. ```
Public ReadOnly Property PropertyName() As DataType
Get
Statements
End Get
End Property
```
You might also like to view...
Before a computer can store a real number in memory, it must be encoded in ____________.
a. floating-point notation b. hexadecimal c. EBCDIC d. decimal mode
The primary editing view in PowerPoint where the user can write and design presentation is:
A) Reading view. B) Normal view. C) Notes view. D) Slide Sorter view.
Software that responds to browser requests or a computer that hosts Web pages is called a(n) ____.
A. database B. virtual hosting service C. Internet server D. Web server
You are one of the first to arrive on a scene and you are asked to perform live memory capture on a machine reporting 4GB of RAM. Upon completion, the size of your actual image file is closer to 5GB. What happened? Did you mess up the memory capture?
a. Yes b. No. The way a computer system works is to report only available memory. Memory in use is not reported. c. No. The 4GB reported is RAM. The utility you used to capture system memory also was able to capture some of the device cache memory on the system. d. No. Most Windows machines "reserve" approximately 20% of system memory for its own use.