Which of the following statements is true concerning the Clipboard object?

(A) It is used to produce the Microsoft Help.
(B) It is used to create a text file that permanently maintains copied items on the hard drive.
(C) It is an object that appears on the form and is raised by its Click event.
(D) It is a portion of memory that holds information and has no properties or events.

(D) It is a portion of memory that holds information and has no properties or events.

Computer Science & Information Technology

You might also like to view...

The following pseudocode

``` IF AVG > 93 THEN GRADE = “A” ELSE GRADE = “B” ENDIF IF AVG > 73 THEN GRADE = “C” ELSE GRADE = “F” ENDIF ``` represents a a) sequential IFTHENELSE pattern b) nested IFTHENELSE pattern c) null IFTHENELSE pattern d) simple IFTHENELSE pattern

Computer Science & Information Technology

How are overloaded functions and default parameter list functions similar?

A. They both have various call statements. B. They both have separate function bodies. C. They both have non-void return types. D. All are correct.

Computer Science & Information Technology