Problem PageQuestion Liquid octane CH3CH26CH3 will react with gaseous oxygen O2 to produce gaseous carbon dioxide CO2 and gaseous water H2O. Suppose 58.3 g of octane is mixed with 71. g of oxygen. Calculate the minimum mass of octane that could be left over by the chemical reaction. Round your answer to 2 significant digits.
In: Chemistry
Please answer in detail with every step along with the graph which is required for question bit C.
The table below shows hypothetical values, in billions of dollars, of different forms of money.
a. Use the table to calculate the M1 and M2 money supplies for each year, as well as the growth rates of the M1 and M2 money supplies from the previous year.
b. Why are the growth rates of M1 and M2 so different? Explain.
|
2015 |
2016 |
2017 |
2018 |
||
|
A. |
Currency |
900 |
920 |
925 |
931 |
|
B. |
Money market mutual fund shares |
680 |
681 |
679 |
688 |
|
C. |
Saving account deposits |
5,500 |
5,780 |
5,968 |
6,105 |
|
D. |
Money market deposit accounts |
1,214 |
1,245 |
1,274 |
1,329 |
|
E. |
Demand and checkable deposits |
1,000 |
972 |
980 |
993 |
|
F. |
Small denomination time deposits |
830 |
861 |
1,123 |
1,566 |
|
G. |
Traveler’s checks |
4 |
4 |
3 |
2 |
|
H. |
3-month treasury bills |
1,986 |
2,374 |
2,436 |
2,502 |
c. Go to the web site of the St. Louis Federal Reserve Bank FRED database and graph the (year-over-year) growth rates of M1 and M2 for the sample period 1998-2018. Show your graph in your submission.
In: Economics
A golfer hits a shot to a green that is elevated 2.50 m above the point where the ball is struck. The ball leaves the club at a speed of 17.3 m/s at an angle of 43.0˚ above the horizontal. It rises to its maximum height and then falls down to the green. Ignoring air resistance, find the speed of the ball just before it lands.
In: Physics
create code for an address book console program in C++ that:
In: Computer Science
The files Firm.java, Staff.java, StaffMember.java, Volunteer.java, Employee.java, Executive.java, and
Hourly.java are from Listings 10.1 - 10.7 in the text. The program illustrates inheritance and polymorphism.
In this exercise you will add one more employee type to the class hierarchy (see Figure 9.1 in the text).
The employee will be one that is an hourly employee but also earns a commission on sales. Hence the class, which we’ll name Commission, will be derived from the Hourly class.
Write a class named Commission with the following features:
To test your class, update Staff.java as follows:
Compile and run the program. Make sure it is working properly.
//*****************************************************************
// Firm.java Author: Lewis/Loftus
//
// Demonstrates polymorphism via inheritance.
// ****************************************************************
public class Firm
{
//--------------------------------------------------------------
// Creates a staff of employees for a firm and pays them.
//--------------------------------------------------------------
public static void main (String[] args)
{
Staff personnel = new Staff();
personnel.payday();
}
}
//********************************************************************
// Staff.java Author: Lewis/Loftus
//
// Represents the personnel staff of a particular business.
//********************************************************************
public class Staff
{
StaffMember[] staffList;
//-----------------------------------------------------------------
// Sets up the list of staff members.
//-----------------------------------------------------------------
public Staff ()
{
staffList = new StaffMember[6];
staffList[0] = new Executive ("Sam", "123 Main Line", "555-0469", "123-45-6789", 2423.07);
staffList[1] = new Employee ("Carla", "456 Off Line", "555-0101", "987-65-4321", 1246.15);
staffList[2] = new Employee ("Woody", "789 Off Rocker", "555-0000", "010-20-3040", 1169.23);
staffList[3] = new Hourly ("Diane", "678 Fifth Ave.", "555-0690", "958-47-3625", 10.55);
staffList[4] = new Volunteer ("Norm", "987 Suds Blvd.", "555-8374");
staffList[5] = new Volunteer ("Cliff", "321 Duds Lane", "555-7282");
((Executive)staffList[0]).awardBonus (500.00);
((Hourly)staffList[3]).addHours (40);
}
//-----------------------------------------------------------------
// Pays all staff members.
//-----------------------------------------------------------------
public void payday ()
{
double amount;
for (int count=0; count < staffList.length; count++)
{
System.out.println (staffList[count]);
amount = staffList[count].pay(); // polymorphic
if (amount == 0.0)
System.out.println ("Thanks!");
else
System.out.println ("Paid: " + amount);
System.out.println ("------------------------------------");
}
}
}
//******************************************************************
// StaffMember.java Author: Lewis/Loftus
//
// Represents a generic staff member.
//******************************************************************
abstract public class StaffMember
{
protected String name;
protected String address;
protected String phone;
//---------------------------------------------------------------
// Sets up a staff member using the specified information.
//---------------------------------------------------------------
public StaffMember (String eName, String eAddress, String ePhone)
{
name = eName;
address = eAddress;
phone = ePhone;
}
//---------------------------------------------------------------
// Returns a string including the basic employee information.
//---------------------------------------------------------------
public String toString()
{
String result = "Name: " + name + "\n";
result += "Address: " + address + "\n";
result += "Phone: " + phone;
return result;
}
//---------------------------------------------------------------
// Derived classes must define the pay method for each type of
// employee.
//---------------------------------------------------------------
public abstract double pay();
}
//******************************************************************
// Volunteer.java Author: Lewis/Loftus
//
// Represents a staff member that works as a volunteer.
//******************************************************************
public class Volunteer extends StaffMember
{
//---------------------------------------------------------------
// Sets up a volunteer using the specified information.
//---------------------------------------------------------------
public Volunteer (String eName, String eAddress, String ePhone)
{
super (eName, eAddress, ePhone);
}
//---------------------------------------------------------------
// Returns a zero pay value for this volunteer.
//---------------------------------------------------------------
public double pay()
{
return 0.0;
}
}
//******************************************************************
// Employee.java Author: Lewis/Loftus
//
// Represents a general paid employee.
//******************************************************************
public class Employee extends StaffMember
{
protected String socialSecurityNumber;
protected double payRate;
//---------------------------------------------------------------
// Sets up an employee with the specified information.
//---------------------------------------------------------------
public Employee (String eName, String eAddress, String ePhone,
String socSecNumber, double rate)
{
super (eName, eAddress, ePhone);
socialSecurityNumber = socSecNumber;
payRate = rate;
}
//---------------------------------------------------------------
// Returns information about an employee as a string.
//---------------------------------------------------------------
public String toString()
{
String result = super.toString ();
result += "\nSocial Security Number: " + socialSecurityNumber;
return result;
}
//---------------------------------------------------------------
// Returns the pay rate for this employee.
//---------------------------------------------------------------
public double pay()
{
return payRate;
}
}
//******************************************************************
// Executive.java Author: Lewis/Loftus
//
// Represents an executive staff member, who can earn a bonus.
//******************************************************************
public class Executive extends Employee
{
private double bonus;
//-----------------------------------------------------------------
// Sets up an executive with the specified information.
//-----------------------------------------------------------------
public Executive (String eName, String eAddress, String ePhone,
String socSecNumber, double rate)
{
super (eName, eAddress, ePhone, socSecNumber, rate);
bonus = 0; // bonus has yet to be awarded
}
//-----------------------------------------------------------------
// Awards the specified bonus to this executive.
//-----------------------------------------------------------------
public void awardBonus (double execBonus)
{
bonus = execBonus;
}
//-----------------------------------------------------------------
// Computes and returns the pay for an executive, which is the
// regular employee payment plus a one-time bonus.
//-----------------------------------------------------------------
public double pay()
{
double payment = super.pay() + bonus;
bonus = 0;
return payment;
}
}
//******************************************************************
// Hourly.java Author: Lewis/Loftus
//
// Represents an employee that gets paid by the hour.
//*******************************************************************
public class Hourly extends Employee
{
private int hoursWorked;
//-----------------------------------------------------------------
// Sets up this hourly employee using the specified information.
//-----------------------------------------------------------------
public Hourly (String eName, String eAddress, String ePhone,
String socSecNumber, double rate)
{
super (eName, eAddress, ePhone, socSecNumber, rate);
hoursWorked = 0;
}
//-----------------------------------------------------------------
// Adds the specified number of hours to this employee's
// accumulated hours.
//-----------------------------------------------------------------
public void addHours (int moreHours)
{
hoursWorked += moreHours;
}
//-----------------------------------------------------------------
// Computes and returns the pay for this hourly employee.
//-----------------------------------------------------------------
public double pay()
{
double payment = payRate * hoursWorked;
hoursWorked = 0;
return payment;
}
//-----------------------------------------------------------------
// Returns information about this hourly employee as a string.
//-----------------------------------------------------------------
public String toString()
{
String result = super.toString();
result += "\nCurrent hours: " + hoursWorked;
return result;
}
}
In: Computer Science
Example: The radioactive isotope decays by electron capture with a half –life of 272 days. •(a) Find the decay constant of the lifetime. •(b) If you have a radiation source containing , with activity 2.00µCi, how many radioactive nuclei does it contain? •(c) What will be the activity of this source after one year?5
In: Physics
Hello, I need to come up with the java code for a program that looks at bank Account ID's and checks if it is in the frame work of Letter followed by 4 numbers, so for example "A001". I need it to be its own method, named checkAccountID() that passes the accountID as an argument to check if it is in that framework of one letter followed by 4 numbers. Any ideas?
In: Computer Science
a) An iron sulfide contains 36.5% S by mass. The iron sulfide is heated in an atmosphere of pure oxygen, which produces SO2(g) and an iron oxide containing 27.6% O by mass.
Write a balanced equation for the reaction.
If 1.0 kg of the iron sulfide reacts with excess oxygen, what is the theoretical yield of the iron oxide?
b) In the manufacture of Portland cement, limestone (CaCO3(s)) is decomposed into lime (CaO(s)) and CO2(g), in a kiln. Use data from Appendix C in your textbook to calculate how much heat is required to decompose 2.70 × 103 kg of limestone. (Assume that the heats of reaction are temperature independent.)
In: Chemistry
The telescopes on some commercial surveillance satellites can resolve objects on the ground as small as 92 cm across (see Google Earth), and the telescopes on military surveillance satellites reportedly can resolve objects as small as 12 cm across. Assume first that object resolution is determined entirely by Rayleigh's criterion and is not degraded by turbulence in the atmosphere. Also assume that the satellites are at a typical altitude of 408 km and that the wavelength of visible light is 537 nm. What would be the required diameter of the telescope aperture for (a) 92 cm resolution and (b) 12 cm resolution? (c) Now, considering that turbulence is certain to degrade resolution and that the aperture diameter of the Hubble Space Telescope is 2.4 m, what can you say about the answer to (b), i.e. is the military surveillance resolution accomplished?
In: Physics
Completely and thoroughly explain how any type of Acceptance Sampling Plan was used by any company that makes any type of Breakfast Cereal to monitor and improve the quality of the purchased raw materials that are used to make their Breakfast Cereal
In: Mechanical Engineering
In experiments concerned with the photoelectric effect, which of the following will increase the kinetic energy of an electron ejected from a metal surface? 1. increasing the wavelength of the light striking the surface 2. increasing the frequency of the light striking the surface 3. increasing the number of photons of light striking the surface A) 1 only B) 2 only C) 3 only D) 1 and 3 E) 1, 2, and 3
In: Chemistry
Create an application that allows you to enter student data than consists of an ID number, first name, last name, and grade point average. If the student's GPA is less than 2.0, write the record to an academic probation file, otherwise, write the record to a good standing file Once the student records are complete, read in the good standing file. If the GPA is greater than or equal to 3.5, display the students name for the Dean's List Be sure to include any exceptions needed for the program to run smoothly. Save the file as StudentsStanding.java I've figured out the first part in writing the files, but having trouble with reading in the files to make the Dean's List.
In: Computer Science
How can treatment with one antibiotic select for resistance to a different antibiotic and what is the clinical significance of this?
In: Biology
1. How do you feel about reading books compared to watching movies? Is there one experience you enjoy more than the other or do you enjoy them equally? What are some things you like about reading? What are some things you enjoy about movies? You can refer to specific books and movies in your answer.
2. How do you feel about documentary and non-documentary films? Is there one genre you prefer more than the other or do you like them equally? Why? What do you feel are some of the similarities and differences between documentary and non-documentary films?
In your answer you can mention some specific documentary films you have seen or are familiar with
In: Economics
What is the product of 4-tert-butyl phenol reacted with p-bromobenzyl bromide when potassium hydroxide and ethanol is added with microwave heating.
In: Chemistry