You can create a(n) _____ folder to store old messages.

A. Storage
B. Archive
C. Old Mail
D. History

Answer: B

Computer Science & Information Technology

You might also like to view...

Compared to traditional error handling techniques, exception handling is considered ________.

a) less efficient b) more efficient c) equally efficient d) either more or less efficient, depending on the situation e) The two technologies are not comparable.

Computer Science & Information Technology

Given the code below

``` function Rectangle(x, y) { this.x = x; this.y = y; this.width = 40; this.height = 20; this.moveDown = function () { this.y += 5; }; } ``` Given the code above and suppose a Rectangle object named rectangleA has been created, (i) write a statement to change the x value of rectangleA to 150. (ii) write a statement to invoke the method moveDown() on rectangleA.

Computer Science & Information Technology