RESPONSE DUE 5/11

 READ POST AND GIVE YOUR OPINION IF YOU AGREE AND COME UP WITH TWO QESTIONS

A cipher represents an algorithm that serves the purpose of encrypting or decrypting data and files. Typically, when looking into ciphers, you will see block ciphers and stream ciphers. A block cipher encrypts data in blocks to produce ciphertext using a cryptographic key and algorithm. The block cipher processes “fixed-size” blocks simultaneously, unlike a stream cipher, which encrypts data one bit at a time. Most modern block ciphers are designed to encrypt data in fixed-size blocks of either 64 or 128 bits. When looking into purposes of when to use a block cipher, data at rest is what comes to mind. When we have data at rest, or that is stored, block cipher seems to be the most appropriate.

Alternatively, a stream cipher works in encrypting data byte by byte from the visual plaintext into a form of code that is not readable to the human eye. It is understood as being faster as it targets a byte at a time versus a large “chunk” of data, as seen in the block cipher. Moreover, stream cipher allows for a more linear transaction as the same key both encrypts and decrypts data. Standard practices for stream cipher lends itself to that of a wireless networks or cell phone (GSM) networks of devices that have a finite number of resources.

Design a program that asks for

  

Design a program that asks for the number of fat grams and calories in a food item. Validate the input as follows 

< make sure the number of fat grams and calories is not less than 0

< according to nutritional formulas the number of calories cannot exceed fat grams x 9 make sure that the number of calories entered is not greater than fat grams x 9

1. Create the pseudo code for this program. 

Write a report on the topic ” An overview of GPU “

Instructions: 

You should compose your report in your own words – do not directly copy from the material I
give to you. In the case that you quote the words of the original authors, use quotation marks “”.
For example,
Albert Einstein said: “Life is like riding a bicycle. To keep your balance you must keep moving.”
If you cite any work other than the material I give you, you should use a standard citation format.
For example,
Drinking 4000 ml water a day does not have more health benefits than drinking 3000 ml water a
day [1].
[1] A.J. Meinders and A. E. Meinders. “How much water do we really need to drink?”
Nederlands tijdschrift voor geneeskunde 154 (2010): A1757-A1757.

The font size of your report should be 11, and the line spacing should be 1.5. You should use a
serif font (e.g. Times New Roman, Cambria). You must use the same font for the entire report.
Your text should have a 1-inch margin to all 4 edges. You can put figures in your report if
necessary.

Discussion 3- Initiating the project

Initial Postings: Your initial post should be based upon the assigned reading for the week, so the textbook must be the only source utilized and listed in your reference section (and properly cited within the body of the text). Other sources are not required and are a waste of time to search and utilize. Only use the textbook.

Do not provide a Reflection or Chapter Overview. Provide only a graduate-level response to each of the following questions:

  1. What are some common reasons for project failure?
  2. Who should be involved in identifying potential projects?
  3. What is a charter? Describe what an effective charter should accomplish. Explain how a charter helps secure both formal and informal commitment.
  4. What is scope? What is scope creep and how can it be prevented?

Your post must be substantive and demonstrate insight gained from the course material. Postings must be in the student’s own words – do not provide quotes!

Text

Title: Contemporary Project Management 

ISBN: 9781337406451 

Authors: Timothy Kloppenborg, Vittal S. Anantatmula, Kathryn Wells 

Publisher: Cengage Learning 

Publication Date: 2018-02-08 

Edition: 4th

Write a program that plays the game of

Write a program that plays the game of HANGMAN(guessing a mystery word). Read a word to be guessed from a file into successive elements of the array WORD. The player must guess the letters belonging to WORD. A single guessing session should be terminated when either all letters have been guessed correctly (player wins) or a specified number of incorrect guesses have been made (computer wins). A run must consist of at least two sessions: one player wins and one computer wins. The player decides whether or not to start a new session.