Age of Oil discussion question

Age of Oil

As you know, our world is heavily dependent on oil.  In Chapter Six of Contemporary Environmental Issues , you have read that there is concern about the possibility of reaching a peak in oil production. Describe at least two alternatives to oil that are currently available and discuss the barriers that keep these alternatives from replacing oil as our primary means of energy? Additionally, utilizing at least two scholarly sources, discuss the role that government plays in ensuring a transition to such alternatives in a post peak-oil world?

Your initial post should be at least 150 words in length. Utilize at least two sources in addition to your text to support your claims.

Linked List project (answer attached)

Your first task in developing the application for tracking contributors is to

load a list of the people who are helping the cause. Design and develop a linked

list, implemented as a stack, to track all of the contributors. You will read

the contributor information from a file

provided; it is a comma delimited (CSV) file. Your design should include the

following:

 

Each contributor will have the following Information:

 

Name: String; //the name of the contributor

 

City: String; //the city in which the contributor

lives

 

Country: String; //the country in which the contributor

lives

 

Phone: String; //the phone number for the contributor

 

Contribution: Double; //the amount of the contribution

given by the contributor to the zoo

 

ID: Integer; //identifier key for future needs

 

 

Contributor Functions/Methods:

 

Input constructor: //to accept a string for the name and additional

information for each contributor (this should call the Push constructor to

implement the stack)

 

Print constructor: //to print out the contributor data

 

Pop constructor

 

Push constructor