A PDF file is created with the extension ________

A) .pdf
B) .pdfx
C) .docx
D) .doc


A

Computer Science & Information Technology

You might also like to view...

What is the output from each of the following loops?

a) ``` while ( 0 ) cout << ‘X’; cout << endl; ``` b) ``` do cout << ‘X’; while ( y != y ); cout << endl; ``` c) ``` int i = 1; while (i < 9) { cout i; i++; } ``` d) ``` d) char c = 'A'; do { cout << c << " "; c = c + 2; } while ( c <= 'M' ) cout << endl; ``` e) ``` int i = 0; while (i < 50) { if ( i < 20 && i != 15 ) cout << 'X'; i++; } cout << endl; ```

Computer Science & Information Technology

________ occurs when the loader places instructions and data units at particular memory addresses.

a) Absolute loading b) Relocatable loading c) Memory binding d) Address binding

Computer Science & Information Technology

To upload a Word Web App file after editing it in the Word desktop application, on the Quick Access Toolbar, click the ________ button

Fill in the blank(s) with correct word

Computer Science & Information Technology

Using Datalog, write the query that ?nds all students who took some course from Professor Joe Public.

What will be an ideal response?

Computer Science & Information Technology