The ____, located at the top of the work area, is a categorized series of menus that provide access to all the tools and features available in Dreamweaver.

A. Application bar
B. menu bar
C. status bar
D. Insert bar


Answer: B

Computer Science & Information Technology

You might also like to view...

A named location in computer memory that can contain a value is a(n) ____.

A. method B. variable C. event D. procedure

Computer Science & Information Technology

Select the false statement. Container adapters:

a. Do not provide the actual data structure implementation for elements to be stored. b. Have their data stored by underlying data structures. c. Can push and pop elements. d. Have limited iterator support.

Computer Science & Information Technology

If a program throws an exception before delete has been called on a pointer, it creates a memory leak. After an exception is thrown, a(n) ________ destructor will still be called, which calls delete on the pointer for you.

a. reference’s b. inherited c. smart pointer’s d. virtual

Computer Science & Information Technology

Consider a class that uses the following variables to implement an array-based stack:

``` String [] s = new String[100]; int top = -1; // Note top == -1 indicates stack is empty ``` a method that implements a void push(String x) operation can be written as A) if (top == s.length-1) throw new RuntimeException("Overflow"); top++; s[top] = x; B) if (top == s.length) throw new RuntimeException("Overflow"); top++; s[top] = x; C) if (top == s.length-1) throw new RuntimeException("Overflow"); s[top] = x; top++; D) if (top == s.length) throw new RuntimeException("Overflow"); s[top] = x; top++;

Computer Science & Information Technology