Which HTTP method does a browser use when you upload files to a specific Web address?

A. POST
B. GET
C. PUT
D. SEND


Answer: C

Computer Science & Information Technology

You might also like to view...

When a parameter is passed call by value, what functions are guaran teed to be called?

a. zero-parameter constructor b. copy constructor c. destructor d. operator= e. two or more of the above

Computer Science & Information Technology

Show the output of the following code

``` #include using namespace std; class Parent { public: Parent() { cout << "Parent’s no-arg constructor is invoked" << endl; } ~Parent() { cout << "Parent’s destructor is invoked" << endl; } }; class Child: public Parent { public: Child() { cout << "Child’s no-arg constructor is invoked" << endl; } ~Child() { cout << "Child’s destructor is invoked" << endl; } }; int main() { Child c1; Child c2; return 0; } ```

Computer Science & Information Technology

To change a table back to a normal range, click anywhere in the table, click the Convert to Range button in the Tools group on the Tables tab, then click Yes.

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

Computer Science & Information Technology

You can only share workbooks through the E-mail command in Excel if your organization uses ________

A) Outlook B) Gmail C) Yahoo! D) Hotmail

Computer Science & Information Technology