The ____ device used in Linux memory management can be a partition on the disk or it can be a normal file.
A. pointer
B. swap
C. page
D. database
Answer: B
Computer Science & Information Technology
You might also like to view...
Assuming that text is a variable of type string, what will be the contents of text after the statement cin >> text; is executed if the user types Hello World! then presses Enter?
a. "H" b. "Hello" c. "Hello World" d. "Hello World!"
Computer Science & Information Technology
In the following code, which line has an error?
1 public class TestApplet extends JApplet 2 { 3 public void init() 4 { 5 super.JApplet(); 6 JLabel label = new JLabel("Test label"); 7 setLayout(new FlowLayout()); 8 add(label); 9 } 10 } A) 1 B) 3 C) 5 D) There are no errors
Computer Science & Information Technology