COGNITIVE ASSESSMENT
What happens if your computer or mobile device uses up its available RAM?

A. The operating system may use virtual memory.
B. The computer or mobile device shuts down.
C. You get an alert that you must close a program or stop an action.
D. It is impossible to run out of RAM.


Answer: A

Computer Science & Information Technology

You might also like to view...

What is the output of the following program?

``` import java.util.Date; public class Test { public static void main(String[] args) { Date date = new Date(1234567); m1(date); System.out.print(date.getTime() + " "); m2(date); System.out.println(date.getTime()); } public static void m1(Date date) { date = new Date(7654321); } public static void m2(Date date) { date.setTime(7654321); } }``` a. 1234567 1234567 b. 1234567 7654321 c. 7654321 1234567 d. 7654321 7654321

Computer Science & Information Technology

In older object-oriented programming languages, ____________________ data types, such as numbers and characters, are distinguished from objects that are class types.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

The item on the right in the accompanying figure is a JPEG file.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

When a subform is created in a main form, a separate form object is created and displays in the Navigation Pane under Forms

Indicate whether the statement is true or false

Computer Science & Information Technology