An ADT’s operations are known as its ______.

a. axioms
b. methods
c. variables
d. interfaces


b. methods

Computer Science & Information Technology

You might also like to view...

Which of the following using statements is equivalent to the preceding code segment

``` { var exampleObject = new ExampleClass(); try { exampleObject.SomeMethod(); } finally { if (exampleObject != null) { exampleObject.Dispose(); } } } ``` try using (var exampleObject = new ExampleClass()) { exampleObject.SomeMethod(); // do something with exampleObject exampleObject.Dispose(); }

Computer Science & Information Technology

________ is used to navigate the organizational structure of Windows

A) Live Preview B) Windows Explorer C) The library D) The Quick Access Toolbar

Computer Science & Information Technology

____ writes a string to a file.

A. fputc() B. fputs() C. fwrites() D. fprintf()

Computer Science & Information Technology

You can insert an individual merge field by clicking the ____ list arrow in the Write & Insert Fields group and then selecting the field name from the menu that opens.

A. Insert Field B. Insert Merge Field C. New Merge Field D. Add Merge Field

Computer Science & Information Technology