Identify the goal of knowledge management.

a. To enable easy access to business data and create efficient, streamlined work processes
b. To provide comparable performance of systems even as the volume of data handled increases
c. To decrease costs and improve customer servicewhile reducing the overall investment in inventory at the same time
d. To improve the creation, retention, sharing, and reuse of an individual’s or a team’s knowledge

d. To improve the creation, retention, sharing, and reuse of an individual’s or a team’s knowledge
Knowledge management (KM) comprises a range of practices concerned with increasing awareness, fostering learning, speeding collaboration and innovation, and exchanging insights. The goal of KM is to improve the creation, retention, sharing, and reuse of knowledge.

Computer Science & Information Technology

You might also like to view...

Which of the following are true?

a. constructors of the base class are inherited in the derived class. b. you may not call the base constructor from the derived class c. You must define constructors in both the base and derived classes d. all of the above e. none of the above

Computer Science & Information Technology

Which of the following does not perform the following task: display correct if answer is equal to 7 and incorrect if answer is not equal to 7?

a. if ( answer == 7 ) cout << "correct"; else cout << "incorrect"; b. cout << answer == 7 ? "correct" : "incorrect"; c. cout << ( answer == 7 ? "correct" : "incorrect" ); d. answer == 7 ? cout << "correct" : cout << "incorrect";

Computer Science & Information Technology