Match each of the following ethical systems with one of its basic tenets:

I. relativism
II. divine command theory
III. utilitarianism
IV. virtue ethics
V. deontology

A. actions are judged solely by consequences
B. morals are internal
C. God is all-knowing and sets moral standards
D. morals should apply to everyone equally
E. no universal moral truth

E, C, A, B, D

Computer Science & Information Technology

You might also like to view...

What class can you use to access external storage on the device?

a. The External class b. The Fragment class c. The Log class d. The Environment class

Computer Science & Information Technology

What is the output of the following line of code, given the function definition that follows:

cout << calc (1, 2) + calc (2,3); // code in main int calc (int x, int y) // function definition { x = x + 1; return x % y; } a) 0 b) 1 c) 2 d) none of the above

Computer Science & Information Technology