All of the following are functions of a knowledge management system EXCEPT:

A. storing and retrieving knowledge.
B. improving collaboration.
C. locating knowledge sources.
D. designing information systems.


Answer: D

Computer Science & Information Technology

You might also like to view...

Back-end files contain forms, reports, and queries

Indicate whether the statement is true or false

Computer Science & Information Technology

The Reset Picture option can restore an image to its original settings

Indicate whether the statement is true or false

Computer Science & Information Technology

You should add submit and ____ buttons to a form so that Web visitors can send their information to the server or clear the form if they want to change their choices.

A. format B. change C. edit D. reset

Computer Science & Information Technology

Problems: Correcting Logic and Code ErrorsThe following sample of code contains errors. Rewrite the incorrect statements to correct all errors.

Private Sub btnDisplay_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnDisplay.Click ' display the contents of the students.txt file ? ' declare variables Dim inFile As IO.StreamWriter Dim strStudent As String ? ' clear previous students from the Students box lblStudents.Text = String.Empty ? ' determine whether the file exists If IO.Exists("students.txt") = True Then ? ' open the file for input inFile = IO.File.ReadText("students.txt") ? ' process loop instructions until end of file Do Until inFile.Peek <> -1 ' read a student line strStudent = inFile.ReadLine ' display the student lblStudents.Text = lblStudents.Text & strStudent & ControlChars.NewLine Loop ? ' close the file Me.Close() Else MessageBox.Show("File not found","Students", MessageBoxButtons.OK, MessageBoxIcon.Information) End If End Sub What will be an ideal response?

Computer Science & Information Technology