Which of the following statements about queues is false?

A. A queue is a linear list.
B. Data are inserted at the rear of the queue.
C. Data are deleted from the front of the queue.
D. The basic queue operations are traditionally known as push and pop.
E. The minimum fields in a queue head structure are a front pointer and a rear pointer.


Answer: D

Computer Science & Information Technology

You might also like to view...

Based on the dangling-else discussion , modify the following code to produce the output shown. Use proper indentation techniques. You must not make any additional changes other than inserting braces. We eliminated the indentation from the following code to make the problem more challenging

``` if (y == 8) if (x == 5) cout << "@@@@@" << endl; else cout << "#####" << endl; cout << "$$$$$" << endl; cout << "&&&&&" << endl; ``` a) Assuming x = 5 and y = 8, the following output is produced. ``` @@@@@ $$$$$ &&&&& ```

Computer Science & Information Technology

You are integrating a bug reporting system with a configuration management tool to track bug reports, bug fixes, feature requests, and enhancements. You are considering an issue model for integrating these tools. Draw a class diagram of the issue model, the corresponding discussion, configuration management, and bug- reporting elements.

What will be an ideal response?

Computer Science & Information Technology

Inkjet printers frequently have a built-in _______ cleaning routine to clean the inkjet cartridge

Fill in the blank(s) with correct word

Computer Science & Information Technology

The default reminder time for all calendar items is ____ minutes.

A. 10 B. 15 C. 30 D. 60

Computer Science & Information Technology