State two specific functions or jobs that should be segregated in the sales processing system.

What will be an ideal response?


sales order processing and credit approval; inventory control (record keeping) from warehouse (custody); and general ledger from accounts receivable subsidiary ledger

PTS: 1

Computer Science & Information Technology

You might also like to view...

A good font size for general page content is ____ pixels when viewed on a printed page.

A. 10 B. 15 C. 16 D. 18

Computer Science & Information Technology

Find the error(s) in each of the following program segments, and explain how the error(s) can be corrected

a) ``` int g() { cout << "Inside function g" << endl; int h() { cout << "Inside function h" << endl; } } ``` b) ``` int sum( int x, int y ) { int result; result = x + y; } ``` c) ``` int sum( int n ) { if ( n == 0 ) return 0; else n + sum( n - 1 ); } ``` d) ``` void f( double a ); { float a; cout << a << endl; } ``` e) ``` void product() { int a; int b; int c; int result; cout << "Enter three integers: "; cin >> a >> b >> c; result = a * b * c; cout << "Result is " << result; return result; } ```

Computer Science & Information Technology

A calculated control is a control whose source of data is an expression rather than a field value

Indicate whether the statement is true or false

Computer Science & Information Technology

What installation media source is the most common source for Linux packages?

A. DVD B. NFS C. hard disk D. CD-ROM

Computer Science & Information Technology