The AFL-CIO serves a number of purposes for local and national unions including all of the following except:

A. Organizing, negotiating and grievance handling.
B. Political lobbying.
C. Research of issues related to unions and their members.
D. Overall coordination and direction of the union movement.


A. Organizing, negotiating and grievance handling.

Business

You might also like to view...

Overhead costs can be directly traced to products once the products are completed

Indicate whether the statement is true or false

Business

Target costing is a variation of cost-based pricing models that reverses the normal procedure for a cost-based pricing model

Indicate whether the statement is true or false

Business

Hector is interested in using goals in order to motivate his employees. He should remember the following in order to effectively utilize goals: ______.

A. Goals are best set by the leader, regardless of the relevance of the goal to the individual employee. B. The degree to which a person is committed to a goal influences their willingness to persist and attain it. C. Easy goals are more motivating than challenging goals. D. Nonspecific goals such as “do your best” are more effective than specific goals.

Business

Which of the following code fragments correctly uses a record variable to hold the row of data queried for a shopper?

A. DECLARE   rec_shopper bb_shopper%ROWTYPE; BEGIN   SELECT*       INTO rec_shopper       FROM bb_shopper      WHERE idshopper = :g_shopper;   DBMS_OUTPUT.PUT_LINE(rec_shopper.lastname);   DBMS_OUTPUT.PUT_LINE(rec_shopper.address);   DBMS_OUTPUT.PUT_LINE(rec_shopper.email); END; B. DECLARE   rec_shopper bb_shopper%ROW; BEGIN   SELECT*        INTO rec_shopper        FROM bb_shopper        WHERE idshopper = :g_shopper;   DBMS_OUTPUT.PUT_LINE(rec_shopper.lastname);   DBMS_OUTPUT.PUT_LINE(rec_shopper.address);   DBMS_OUTPUT.PUT_LINE(rec_shopper.email); END; C. DECLARE   rec_shopper bb_shopper%TYPE; BEGIN   SELECT*       INTO rec_shopper       FROM bb_shopper      WHERE idshopper = :g_shopper;   DBMS_OUTPUT.PUT_LINE(rec_shopper.lastname);   DBMS_OUTPUT.PUT_LINE(rec_shopper.address);   DBMS_OUTPUT.PUT_LINE(rec_shopper.email); END; D. DECLARE   rec_shopper bb_shopperROWTYPE; BEGIN   SELECT*      INTO rec_shopper      FROM bb_shopper;      WHERE idshopper = :g_shopper; END;

Business