Office workers have the need for a word processor, spreadsheet program, database program, and graphic presentations software.  A package that combines all these software programs is known as a(n) _______ .

Fill in the blank(s) with the appropriate word(s).


application suite

Computer Science & Information Technology

You might also like to view...

Kim created the following interface for Heap. Any comments?

``` public interface Heap { public void add( Comparable element ); public void setComparator( Comparator c ); public E top(); public E peek(); public void clear(); public int size(); public boolean isEmpty(); } ```

Computer Science & Information Technology

Correct the Code Errors) Identify and correct the error(s) in each of the following:

``` While (x <= 100) total += x; ++x; ```

Computer Science & Information Technology

The expression total = total + *nPt++ is a standard accumulating expression.

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

Computer Science & Information Technology

When the CLR handles the exception by halting the application ____.

A. the exception is thrown back to the calling method B. the Main( ) method is placed in an infinite loop C. the computer locks up D. an unhandled exception is reported

Computer Science & Information Technology