Illustrate The Effect Of Capital Information By Comparing The Prodution Possibit

illustrate the effect of capital information by comparing the prodution possibitity curves, at the present time and ten years in the future, for two economie, one with a high and the other with a low rate of capital formation

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Im Struggling With This Question For Critical Reasoning Is There Any Way You Cou

Im struggling with this question for critical reasoning. Is there any way you could help me? 

The following are two passages from Florence Nightingale’s Notes on Nursing:

Passage 1

Now the medical man who sees the patient only once a day or even only once or twice a week, cannot possibly tell this without the assistance of the patient himself, or of those who are in constant observation on the patient. The utmost the medical man can tell is whether the patient is weaker or stronger at this visit than he was at the last visit. I should therefore say that incomparably the most important office of the nurse, after she has taken care of the patient’s air, is to take care to observe the effect of his food, and report it to the medical attendant. (1860, Section VII, para.14)

Passage 2

To be “in charge” is certainly not only to carry out the proper measures yourself but to see that everyone else does so too; to see that no one either willfully or ignorantly thwarts or prevents such measures. It is neither to do everything yourself nor to appoint a number of people to each duty, but to ensure that each does that duty to which he is appointed. This is the meaning which must be attached to the word by (above all) those “in charge” of sick, whether of numbers or of individuals. (1860, Section III, para.25)

Instructions

In an essay, address the following:

  • Is passage 1 an argument or an explanation?
  • Is passage 2 an argument or an explanation?

You must answer both questions by making an argument for your position. Whichever type – argument or explanation.

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Illustrate The Effect Of Capital Formation By Comparing The Prodution Possibilit

illustrate the effect of capital formation by comparing the prodution possibility curves,at the present time at the prsent time and ten years in the future,for two economies,one with a high rate and the other with a low rate of capital formation.

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Im Really Confused On This Assignment I Have All The Files But Im Not Sure How I

im really confused on this assignment i have all the files but Im not sure how im supposed to store them on my computer to make the program run. the teacher provided us a partially written program for us to complete. I complicated code but it doesnt work it has an error that says unintended does not match. bellow are the assignment instructions and the un finished code as well as the one i wrote.

instructions:  

Some scholars believe you can learn a great deal about an author by studying his or her use of pronouns. we will use a dictionary to count the pronouns in gb.txt. Complete the functions in the program in order to count the number of times each pronoun occurs in gb.txt. Complete the function show_counts() to print the number of times each pronoun occurs. For full credit, print the pronouns in alphabetical order and only print the ones that have a count greater than 0.

unfinished code:

import string #To get punctuation characters

def readfile(fname):

  ”’Return contents of a text file as a lower-case string”’

  pass #You can take this out or leave it – it doesn’t matter

  #Open the file for reading

  #Read the contents of the file as one long string

  #Close the file

  #Use string.punctuation to remove punctuation

  #Return the string (converting it to lower case)

def count_pronouns(word_list, pronoun_list):

  ”’Returns a dictionary with words and their counts

    word_list is a list of words from the text file

    pronoun_list is a list of English pronouns”’

  pass #You can take this out or leave it

  #You are given two lists – you don’t have to split the text

  #If you want to see what word_list and…

  #…pronoun_list look like you can print them here

  #Start with an empty dictionary

  #For each word in word_list

  # If the word is a pronoun then

  #  If the word is not in the dictionary

  #   Add it with a count of 1

  #  Otherwise,

  #   Add one to that word’s count

  #Return the dictionary

def show_counts(pronoun_dict):

  ”’Print prounouns and their counts; print only those with counts > 0

    pronoun_dict is the dictionary of pronouns with their counts”’

  pass #You can take this out

  #Get a list of the keys

  #Sort the list of keys

  #For each key in the key list

  #If the count is greater than 0

  # Print the key and the count

  #Don’t return anything

#Don’t change anything below this point

def main():

  text_filename = ‘Data//gb.txt’ #Count pronouns in this file

  pronoun_filename = ‘Data//pronouns.txt’ #List of pronouns

  gb = readfile(text_filename) #gb is the contents of the text file (a string)

  gb_words = gb.split() #Split file contents into a list of words

  pronouns = readfile(pronoun_filename)

  pronoun_list = pronouns.split()

  pronoun_dict = count_pronouns(gb_words, pronoun_list)

  show_counts(pronoun_dict)

main()

my code:

import string #To get punctuation characters

def readfile(fname):

  ”’Return contents of a text file as a lower-case string”’

  f = open(fname,’r’)        #Open the file for reading

  contents = f.read()         #Read the contents of the file as one long string

  f.close()              #Close the file

  for char in string.punctuation:   #Use string.punctuation to remove punctuation

    contents = contents.replace(char, ”)

  return contents.lower()       #Return the string (converting it to lower case)

def count_pronouns(word_list, pronoun_list):

  ”’Returns a dictionary with words and their counts

    word_list is a list of words from the text file

    pronoun_list is a list of English pronouns”’

 word_count = {}           #Start with an empty dictionary

 for word in word_list:        #For each word in word_list

   if word in pronoun_list:     #If the word is a pronoun then

     if word not in word_count:  #If the word is not in the dictionary

       word_count[word] = 1   #Add it with a count of 1

     else:            #Otherwise,

       word_count[word] += 1  #Add one to that word’s count

 return word_count          #Return the dictionary

def show_counts(pronoun_dict):

  ”’Print prounouns and their counts; print only those with counts > 0

    pronoun_dict is the dictionary of pronouns with their counts”’

  key_list = list(pronoun_dict.keys()) #Get a list of the keys

  key_list = key_list.sort()      #Sort the list of keys

  for word in word_list:        #For each key in the key list

  if pronoun_dict[word] > 0:     #If the count is greater than 0

  print(word, pronoun_dict[word]):     #Print the key and the count

  #Don’t return anything

#Don’t change anything below this point

def main():

  text_filename = ‘Data//gb.txt’ #Count pronouns in this file

  pronoun_filename = ‘Data//pronouns.txt’ #List of pronouns

  gb = readfile(text_filename) #gb is the contents of the text file (a string)

  gb_words = gb.split() #Split file contents into a list of words

  pronouns = readfile(pronoun_filename)

  pronoun_list = pronouns.split()

  pronoun_dict = count_pronouns(gb_words, pronoun_list)

  show_counts(pronoun_dict)

main()

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Illustrate The Concept Of Mutually Assured Destruction Mad And Describe Its Role

  • Illustrate the concept of mutually assured destruction (MAD) and describe its role as a deterrent in the prevention of first-strike attacks.
  • Discuss the morality of the MAD concept.
  • Given the current state of world military affairs, discuss whether this policy can continue to be the cornerstone of our military policy.
  • Are there any alternatives other than the forging of effective arms control treaties?

Support your position using appropriate sources that are properly cited. Your paper should be 1-2 pages in length (not including title and reference pages). It must be formatted according to APA standards

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Im Having Some Trouble With Using The Setcookie Userdata Data Null Null True Fun

Im having some Trouble With using the setcookie(“userdata”,$data,’/’,null,null,true); function for my two PHP codes. I am aware they should go before the html body But i just dont know where to set them. To explain more, I have a project In which i have to check OWASP vulnerabilities using ZAP (Zed attack Proxy). Every time i run a scan the alerts i get are “Cookie No HttpOnly Flag” i am trying to fix this alert. I know that i have to set the HTTPOnly flag in the HTTP.conf (Im using Apache webserver) but the application will not run properly if i set the HTTPOnly flag, That is why my other option is to use setcookie() .

these are the two codes i have.

First one : authcheck.php

<html>

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Im Going To Give You A Blog Post That Needs To Be Rewritten Completely Because I

https://assethub.fso.fullsail.edu/assethub/NDM-O_Syllabus2014_99d610d4-790e-4323-be5a-7c9a5cfe8e0b.pdfhttps://assethub.fso.fullsail.edu/assethub/NDMCourseOverviewVideo_df7dbff8-1a9e-466e-b12d-4d762685a0b9.mp4The skills of negotiation and deal making are must needed ones in this present era ofglobalization and internationalization of businesses. Keeping in mind the importance ofnegotiation and deal…

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Im Given A Regression Output And Asked To Find Unit Contribution Margin How Do I

Im given a regression output and asked to find unit contribution margin. How do I set up the equation to find overhead cost? There is a dollar figure for the coefficient on independent variable that Im not sure how to incorporate.

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Im Designing A Program That Lets The User Enter The Total Rainfall For Each Of 1

Im designing a program that lets the user enter the total rainfall for each of 12 months into an array. The program should calculate and display the total rainfall for the year, the average monthly rainfall, and the months with the highest and lowest amounts. 

Module main ( )

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Images Colors Shapes And Texts Produce Various Effects On People Every Day As Pa

Images, colors, shapes, and texts produce various effects on people every day. As part of your yearly review, your employer has asked you to draft a reflection on your real life experience in your environment. You can use visual storytelling means as well.

  1. In your review describe in detail the stimuli you encounter on a daily basis. You can use visual media.
  2. Identify how these stimuli contribute to happiness, reduction of stress and motivation in your everyday life.
  3. From these examples, describe how you would change the stimuli.
  4. What changes could make in your own life or work to change the effects of your environment on you?
 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW