When you ____________________ a file, the original file stays in its current location and a duplicate of the file is created.
Fill in the blank(s) with the appropriate word(s).
copy
You might also like to view...
When your computer has a private IP address, it is essentially hidden from hackers.
Answer the following statement true (T) or false (F)
The public members of a class are also known as the class’s ________ or ____________.
Fill in the blank(s) with the appropriate word(s).
Assume that nameJTextField is a JTextField and that otherJCheckBox is a JCheckBox next to which is a JTextField otherJTextField. What does this code segment do?
``` 1 String name = nameJTextField.getText(); 2 String other = otherJTextField.getText(); 3 4 if ( name.equals( "" ) || 5 ( otherJCheckBox.isSelected() && other.equals( "" ) ) ) 6 { 7 JOptionPane.showMessageDialog( null, 8 "Mystery Message", "Input Error", 9 JOptionPane.WARNING_MESSAGE ) 10 } ```
Which of the following shortcut menu commands, shown in the accompanying figure, creates a navigation menu with different text links?
A. Call Script B. Set Text C. Jump Menu D. none of the above