When you select text and click Copy, the selected text is copied on the operating system's ____.

A. Scrapboard
B. Clipboard
C. hard disk
D. Documents folder


Answer: B

Computer Science & Information Technology

You might also like to view...

Select the false statement. The new operator:

a. Can attempt to allocate as much memory as the programmer requests. b. Returns a pointer to a location in memory. c. Can indicate failure differently on different compilers. d. Throws a bad_alloc exception regardless of what function is registered with set_new_handler.

Computer Science & Information Technology

What is the printout of the following code?

``` #include using namespace std; class C { public: string toString() { return "C"; } }; class B: public C { string toString() { return "B"; } }; class A: public B { string toString() { return "A"; } }; void displayObject(C *p) { cout << p->toString(); } int main() { displayObject(&A()); displayObject(&B()); displayObject(&C()); return 0; } ``` a. AAA b. BBB c. CCC d. CBA e. ABC

Computer Science & Information Technology

The Java programming language provides__________ that can be used by developers, rather than every application having to be created from scratch.

a) preexisting classes b) TCP c) assembly code d) secondary storage

Computer Science & Information Technology

Use the ________ Cells command to create one cell from two

A) Combine B) Merge C) Join D) Split

Computer Science & Information Technology