Questions
subject : Knowledge management 1. What is your understanding of the term Knowledge and Knowledge Management?...

subject : Knowledge management


1. What is your understanding of the term Knowledge and Knowledge Management?

2. What lessons can we learn from history to improve the quality of knowledge management within organizations?

Word Limit: 250-300 Words


In: Computer Science

Kraft chose to "export" the Oreo brand direct to China. Evaluate the advantages and disadvantages of...

Kraft chose to "export" the Oreo brand direct to China. Evaluate the advantages and disadvantages of this approach (export approach) compared to setting up a joint venture.

Need exactly 400 word. No more, no less. Give me the references with correct APA format.

In: Operations Management

In your own word, explain why do designers use Denormalization? What is the limitation of using...

In your own word, explain why do designers use Denormalization? What is the limitation of using Denormalization? Name and explain a better alternative approach than Denormalization.

Note:

Please I need a short answer only on paragraph and simple words.

In: Computer Science

Your job is Supply Chain Management, choose in your field from one of the job search...

Your job is Supply Chain Management, choose in your field from one of the job search sites. Using Word, describe how you would network to get the position you chose. Submit to the Job Search and Networking Folder below.

In: Operations Management

Under the ACA, health insurance companies cannot refuse coverage to individuals because of a pre-existing medical...

Under the ACA, health insurance companies cannot refuse coverage to individuals because of a pre-existing medical condition. Define what is a pre-existing medical condition? Also, what are the pros and cons of this provision under the law? 250 word answer

In: Nursing

Based on your reading(learning) style, how could you have learned material better, how could you apply...

Based on your reading(learning) style, how could you have learned material better, how could you apply this information? Give an example of how you did or could have applied this information. 250 word initial response.

In: Psychology

C programing. Ask user to enter a word on sting and print all possible combinations. (please...

C programing.
Ask user to enter a word on sting and print all possible combinations. (please don't use printer) Using recursion.
example
ask user to input
user: "ABC"
output:
ABC
ACB
BAC
BCA
CAB
CBA

In: Computer Science

In Java, please create a new Java application called "CheckString" (without the quotation marks) according to...

In Java, please create a new Java application called "CheckString" (without the quotation marks) according to the following guidelines.

** Each method below, including main, should handle (catch) any Exceptions that are thrown. ** ** If an Exception is thrown and caught, print the Exception's message to the command line. **

  1. Write a complete Java method called checkWord that takes a String parameter called word, returns nothing, and is declared to throw an Exception of type Exception. In the method, check if the first character of the parameter is a letter. If it is not a letter, the method throws an Exception of type Exception with the message of: "This is not a word."
  2. Write a complete Java method called getWord that takes no parameters and returns a String. The method prompts the user for a word, and then calls the checkWord method you wrote in #1 above, passing as a parameter the word the user provided as input. Make sure the getWord method handles the Exception that may be thrown by checkWord.
  3. Write a complete Java method called writeFile that takes two parameters: an array of Strings (arrayToWrite) and a String (filename). The method writes the Strings in the arrayToWrite array to a text file called filename (the parameter), with each String on a separate line.
  4. Write a complete Java method called readFile that takes a String as a parameter (filename) and returns an ArrayList of Strings (fileContents). The method reads the text file identified by the filename parameter and populates the ArrayList with an element for each line in the text file.
  5. In your main method, do the following in the order specified:
    1. Call the getWord method you wrote in #2 above and print the result to the command line.
    2. Create an array of Strings called testData and populate it with at least three elements.
    3. Call the writeFile method you wrote in #3 above passing the array you created in #5.2 and the String "data.txt".
    4. Call the readFile method you wrote in #4 above to read the file you wrote in #5.3. Assign the result of readFile to an ArrayList variable in main called fileContents.
    5. Write a loop to print the contents of the fileContents ArrayList to the command line.

In: Computer Science

You have been hired by a home security company to design and implement a home alarm...

You have been hired by a home security company to design and implement a home alarm system. The logic of the system is as follows: once the alarm system has been armed, it is to sound if the front door is opened, the back door is opened or either of two windows is opened (you can assume there are only two windows).

Design the necessary circuit to implement the situation described above. Your circuit should have five inputs (A = alarm, F = front door, B = back door, W1 = window 1 and W2 = window 2). A = 1 means the system is armed; A = 0 means it is disarmed. F = 1 means the front door is open; F = 0 means it is closed. (Similarly for the back door and the windows.) There should be one output, S. When S = 1 the alarm should sound; S = 0 means the alarm is silent. Please use these letters to indicate the inputs and the output so all projects are consistent.

Be CAREFUL to get the correct function for your five inputs before simplifying and designing the circuit. You should minimize the circuit. Your inputs and output should be labeled. You should submit a Microsoft Word document including the following items while ensuring that everything is laid out in a manner that is easy to follow (portrait or landscape is acceptable):

• Your name in the top left

• Drawing of your completed circuit including all appropriate labels.

You will need to practice your MS Word drawing, layering, and object management skills.

See below for common logic gate objects that can be reused in your document.

• Truth tables for the circuit (use Word table feature)

• Kmap for the circuit (use Word table feature)

• Details (show your work) on what was done to simplify the circuit

• A brief written summary (250 to 500 words) of the process you followed, decisions made in laying out the circuit, etc..

In: Computer Science

Task 2: Debugging and writing functions In IDLE, use the File -> New Window menu option...

Task 2: Debugging and writing functions

  1. In IDLE, use the File -> New Window menu option to open a new editor window for your program, and save it using the name hw4Task2.py. Make sure to specify the .py extension.
  2. Copy the following (buggy) code into that file:

def mysum(x, y)

""" takes two numbers and returns their sum """

    total = x + y

    print(total)

  1. Save the file using Ctrl-S. Then try to run it using F5. What happens?
  2. This function includes two syntax errors – errors that violate the rules of the Python language. See if you can find and fix them, continuing until you are able to run the file without any error messages. (Create a MS Word file and name it Task2 steps”. Use this word file, to write what you did to fix the errors in this step.)
  3. Once you have eliminated the syntax errors, test the function from the Shell as follows:

>>> mysum(44, 67)

>>> print(mysum(10, 7))

What happens? Why?

(Use the MS Word file “Task2 steps”, and write your answer to this step.)

  1. Fix the function so that both above tests work as expected.  (Use the MS Word file “Task2 steps” and write what you did in this step.)
  2. In hw4Task2.py, write a function named sum_double that accepts two integers as parameters. The function should return the sum of the integers, unless the two values are the same, in which case the function should return double their sum. For example:

                 >>> sum_double(1, 2)

                 3

                 >>> sum_double(3, 2)

                 5

                 >>> sum_double(2, 2)

                 8

Be sure to write a docstring for the function.

After writing the function, test it in two ways:

  • Make function calls from the Shell like the ones shown above.
  • Copy the following code into your file:

def test():

    """ function for testing """

    test1 = sum_double(1, 2)

    print('first test returns', test1)

    # Add more tests below

This code provides the beginnings of a test function, with lines that call the function with a set of inputs and print the return value. It’s worth noting that this function does not need a return statement, because its sole purpose is to make test calls and print their results.

You should:

  • add other test cases to the test function
  • run the Python file
  • call the test function from the Shell (by entering the call test()) and check that you obtain the correct return values for each test case.

(Use the MS Word file “Task2 steps”and write what you did in this step.)

In: Computer Science