What command below takes a list of arguments specifying the absolute or relative pathnames of files to remove?

A. del
B. rm
C. remove
D. delete


Answer: B

Computer Science & Information Technology

You might also like to view...

What would display if the following pseudocode was coded and executed?

``` Declare String user = "Martha and George" Declare Integer number Set number = length(user) Display number ``` a. 17 b. 15 c. 19 d. Martha and George

Computer Science & Information Technology

Concrete classes that inherit virtual functions but do not override their implementations:

a. Have vtables which are the same as those of their base classes. b. Receive their own copies of the virtual functions. c. Receive pointers to their base classes’ virtual functions. d. Receive pointers to pure virtual functions.

Computer Science & Information Technology

Given the function, and the main function calling it: Which, if any, of the following choices is the output of the following code? What does this function do?

``` #include using namespace std; void func ( int& x, int & y) { int t = x; x = y; y = t; } int main() { int u = 3; v = 4; // ... cout << u << " " << v << endl; func ( u, v ) cout << u << " " << v << endl; // ... } ``` a) 3 4 3 3 b) 3 4 4 3 c) 3 4 3 4 d) 3 4 4 4 e) none of the above. If you choose this, you must specify the output

Computer Science & Information Technology

In SharePoint, ________ sites bring all status, communication, and artifacts relevant to a project into one place

A) community B) project C) team D) blog

Computer Science & Information Technology