Questions
In the petroleum industry, limestone is usually given a name using the Dunham classification, as attached....

In the petroleum industry, limestone is usually given a name using the Dunham classification, as attached. For any limestone you can follow the flowchart to find its correct name.

This limestone consists mostly of carbonate mud with about 20% shell fragments that do not touch.

rock name __________________________________

This limestone consists of small and large calcite and dolomite crystals. No shells or other carbonate grains are visible.

rock name __________________________________

This limestone has broken shells that touch each other, with about 20% mud between the shells and 15% porosity.

rock name __________________________________

This limestone consists mostly of corals that appear to have grown in their present position before they died and the corals became rock.

rock name __________________________________

This limestone consists of very well sorted, round carbonate grains and some shells that are touching. It has very good porosity, and there is no carbonate mud.

rock name __________________________________

This limestone is dark gray, very fine grained and has no visible shells or crystals.

rock name __________________________________

This limestone consists mostly of shells (therefore it is grain supported), has a little carbonate mud, but also has some quartz grains.

rock name __________________________________

This limestone consists of rounded shell fragments, round carbonate grains, has no mud, and all of the pores have calcite cement.

rock name __________________________________

This limestone has few shells (about 5% of the rock consists of shells) that do not touch each other but consists mostly of carbonate mud.

rock name __________________________________

This limestone consists of 100% shell fragments held together by a calcite cement.

rock name __________________________________

In: Chemistry

I'm having difficulty trying to make my code work. Create a subclass of Phone called SmartPhone....

I'm having difficulty trying to make my code work.

Create a subclass of Phone called SmartPhone. Make this subclass have a no-arg constructor and a constructor that takes a name, email, and phone. Override the toString method to return the required output.

Given Files:

public class Demo1 {

    public static void test(Phone p) {
        System.out.println("Getter test:");
        System.out.println(p.getName());
        System.out.println(p.getNumber());
    }

    public static void main(String[] args) {
        Phone test1 = new SmartPhone();
        Phone test2 = new SmartPhone("Alice", "8059226966", "[email protected]");
        System.out.println(test1);
        System.out.println(test2);
        System.out.println(test1);

        test(test1);
        test(test2);
    }

}

And

public class Phone
{
    protected String name;
    protected long number;

    public Phone() {
        this("None", -1);
    }

    public Phone(String name) {
        this(name, -1);
    }

    public Phone(String name, long number) {
        this.name = name;
        this.number = number;
    }

    public String getName() {
        return name;
    }

    public long getNumber() {
        return number;
    }
}

This is my code and please give me any tips or suggestions. Thanks!

public class SmartPhone extends Phone
{
    private String email;
    private String format;


    public SmartPhone()
    {

    }

    public SmartPhone(String name, String phoneNumber, String email)
    {

        super(name, Long.parseLong(phoneNumber));


        format = "Name: " + " " + "\n"
                + "Phone: " + " " + "\n"
                + "Email: " + " " + "\n"
                + "\n" + "Name: " + name + "\n"
                + "Phone: " + phoneNumber + "\n"
                + "Email: " + email + "\n";


    }

    @Override
    public String toString()
    {
        return format;
    }

}

In: Computer Science

ALL IN JAVA public class Employee {    public String strName, strSalary;       public Employee()...

ALL IN JAVA

public class Employee
{
   public String strName, strSalary;
  
   public Employee()
   {
       strName = " ";
       strSalary = "$0";
   }
  
   public Employee(String Name, String Salary)
   {
       strName = Name;
       strSalary = Salary;
   }
  
   public void setName(String Name)
   {
       strName = Name;
   }
  
   public void setSalary(String Salary)
   {
       strSalary = Salary;      
   }
  
   public String getName()
   {
       return strName;
   }
  
   public String getSalary()
   {
       return strSalary;
   }
  
   public String toString()
   {
       return(strName + " has a salary of " + strSalary);
   }

}

you will find a class called Employee. This class should include a constructor which sets name to blanks and salary to $0.00 and a constructor which sets name to a starting name and salary to a set amount. Additionally, the class should include methods to set the name and salary and return the name and salary. Create another method to return the name and salary nicely formatted as a string (hint – research the toString method).

You will create a new class called Manager that inherits from the class Employee. Add a field named department of type String. Supply a method toString that prints the manager's name, department, and salary. Remember, you may not change anything in the Employee class.

You will then create a test class that uses the Manager class.   The test class should prompt the user to enter name, department and salary. This information should be stored in an array. Upon entry of 3 employee records, the program should output the information you entered.

Your program should be able to handle a maximum of 3 entries.

You may write the program as a console application or using dialog boxes.

In: Computer Science

Below are pairs of real GDP growth rates and unemployment rates. Economists might be shocked to...

Below are pairs of real GDP growth rates and unemployment rates. Economists might be shocked to see some of these pairs. Which pair of real GDP growth rates and unemployment rates is (are) realistic for the U.S. economy?
(x) 0.6 percent growth, 4.3 percent unemployment
(y) – 1 percent growth, 9.2 percent unemployment
(z) 2.8 percent growth, 5.1 percent unemployment
A. (x), (y) and (z) B. (x) and (y) only
C. (x) and (z) only D. (y) and (z) only
E. (x) only

Which of the following shifts aggregate demand to the right?
A. increased spending on new roads and bridges by state governments
B. increases in the profitability of capital due perhaps to technological progress.
C. a decrease in the price level
D. All of the above
E. A and B, only


7. Which of the statements about the aggregate demand and aggregate supply model is correct?
A. The price level adjusts to bring aggregate demand and aggregate supply into balance.
B. A rise in the price level shifts the aggregate demand curve to the right.
C. A fall in the price level shifts the aggregate demand curve to the left.
D. All of the above are correct.
E. B and C, only

In: Economics

Write a python program that has: function createCustomerRecord that has 1 parameter, the filename to read...

Write a python program that has:

  1. function createCustomerRecord that has 1 parameter, the filename to read from, the method then reads all the records from the file and returns a dictionary. Each record in the file has the following format

CivilIdNumber

Name

Telephone#    

Address

CivilIdNumber

Name

Telephone#    

Address

CivilIdNumber

Name

Telephone#    

Address

Etc

A record always consists of 4 lines (civilid, name, telephone and address). You can find a sample input file on last page of this assignment, copy it and past it into a .txt file and save it to the same directory that your python program resides on.

The function then creates a dictionary with the civilIdNuber as the key and the rest of the record as a list with index 0 being the name, index 1 being the telephone# and index 2 being Address.

When finishing reading all records the function then returns the dictionary

  1. Write a function printCustomerRecord that has 2 parameters, a dictionary of the customer record and the output filename, the function will then print to the output file, the dictionary in the following format

CivilId: civilidnumber

Name: name

Address: address

Telephone Number: telephone

CivilId: civilidnumber

Name: name

Address: address

Telephone Number: telephone

Etc…

  1. Write a main function that will print to the screen ‘Hello’, then call function createCistomerRecord and pass it the input file name then call function printCustomerRecord and pass it the dictionary and the output file name. Then finally print to the screen ‘goodbye’

  1. Call the main function.

In: Computer Science

PROBLEM 19-7Investment PoolThree funds of the Leukemia Foundation, a nonprofit welfare organization, began an investment pool...

PROBLEM 19-7Investment PoolThree funds of the Leukemia Foundation, a nonprofit welfare organization, began an investment pool on January 1, 2016. The costs and fair market values on this date were as follows:MarketCostValueRestricted fund$55,000$70,000Lambert endowment fund215,000210,000Plant fund200,000220,000Total$470,000$500,000During 2016 the investment pool reinvested $20,000 in realized gains and received interest of $15,000 and dividends of $10,000. Interest and dividend income was distributed to the respective funds. The Plant Fund withdrew from the investment pool on December 31, 2016, when the total current market value was $540,000. It distributed securities in the amount of its percentage share. On January 3, 2017, the Fargot Annuity Fund entered the investment pool with investments costing$100,000 and having a current market value of $117,600. During 2017 the pool received interest of $25,000 and dividends of $15,000, which were distributed to the participating funds. Realized gains of $30,000 were rein-vested in the pool.

Required:

A. Calculate the equity percentages of the contributing funds in the investment pool at January 1, 2016, and January 3, 2017.

B.Using the format shown below, prepare entries necessary on the records of the funds that contributed securities to the investment pool to account for the earnings of the investment pool in 2016 and 2017.DateFundJournal EntryLO11

In: Accounting

At year-end 2016, Wallace Landscaping’s total assets were $1.9 million and its accounts payable were $390,000....

At year-end 2016, Wallace Landscaping’s total assets were $1.9 million and its accounts payable were $390,000. Sales, which in 2016 were $2.3 million, are expected to increase by 25% in 2017. Total assets and accounts payable are proportional to sales, and that relationship will be maintained. Wallace typically uses no current liabilities other than accounts payable. Common stock amounted to $380,000 in 2016, and retained earnings were $240,000. Wallace has arranged to sell $100,000 of new common stock in 2017 to meet some of its financing needs. The remainder of its financing needs will be met by issuing new long-term debt at the end of 2017. (Because the debt is added at the end of the year, there will be no additional interest expense due to the new debt.) Its profit margin on sales is 4%, and 60% of earnings will be paid out as dividends.

What was Wallace's total long-term debt in 2016? Round your answer to the nearest dollar.
$  
What were Wallace's total liabilities in 2016? Round your answer to the nearest dollar.
$  

How much new long-term debt financing will be needed in 2017? (Hint: AFN - New stock = New long-term debt.) Round your answer to the nearest dollar.
$  

In: Finance

At the end of 2015, Payne Industries had a deferred tax asset account with a balance...

At the end of 2015, Payne Industries had a deferred tax asset account with a balance of $8 million attributable to a temporary book-tax difference of $40 million in a liability for estimated expenses. At the end of 2016, the temporary difference is $20 million. Payne has no other temporary differences. Taxable income for 2016 is $80 million and the tax rate is 20%

Payne has a valuation allowance of $1 million for the deferred tax asset at the beginning of 2016.

Required:
1.

Prepare the journal entry(s) to record Payne’s income taxes for 2016, assuming it is more likely than not that the deferred tax asset will be realized. (If no entry is required for a transaction/event, select "No journal entry required" in the first account field. Enter your answers in millions (i.e., 10,000,000 should be entered as 10).)

2.

Prepare the journal entry(s) to record Payne’s income taxes for 2016, assuming it is more likely than not that one-fourth of the deferred tax asset will ultimately be realized. (If no entry is required for a transaction/event, select "No journal entry required" in the first account field. Enter your answers in millions rounded to 1 decimal place (i.e., 5,500,000 should be entered as 5.5).)

In: Accounting

James acquired 40% of the outstanding voting shares of Schott Co. on January 1, 2015 for...

James acquired 40% of the outstanding voting shares of Schott Co. on January 1, 2015 for $210,000 in cash when Schott’s owners’ equity was $400,000. One of the company’s buildings, that had a 20-year remaining life, was worth $100,000, even though its net book value was $60,000. Schott also had an unrecorded patent having a value of $85,000 that had a 10-year life. In 2015, Schott recorded net income of $60,000 and distributed a total cash dividend of $12,000. Its fortunes changed in 2016 when it recorded a $40,000 net loss, but the Board still paid $10,000 in dividends. This was a strategic investment and James began purchasing inventory from Schott right away. In 2015, Schott sold inventory with an original cost of $60,000 to James for $90,000. James had $15,000 of these goods in inventory (at the selling price) at December 31, 2015, but it was all sold in 2016. In 2016, Schott sold another $80,000 of inventory to James and had a gross profit on the sale of 37.5%. All but 30% of this was sold to third parties during the year.

Required: 1. Record the entries James needs in 2015 and 2016 in conjunction with this investment. 2. What is the balance in the investment account at December 31, 2016?

In: Accounting

Should have two general journals, one for dec 31 2016 and one for dec 31 2017....

Should have two general journals, one for dec 31 2016 and one for dec 31 2017.

The inventories of Berry Company for the years 2016 and 2017 are as follows:


Cost
Market
January 1, 2016 $10,000 $10,000
December 31, 2016 13,000 11,500
December 31, 2017 15,000 14,000

Berry uses a perpetual inventory system.


Required:
1. Assume the inventory that existed at the end of 2016 was sold in 2017. Prepare the necessary journal entries at the end of each year to record the correct inventory valuation if Berry uses the:


a. direct method
b. allowance method

2. Next Level Explain any differences in inventory valuation and income between the two methods.

NEXT LEVEL: Complete the statements below that explain any differences in inventory valuation and income between the two methods.

The two methods produce the same   net inventory valuations and have the same   effects on net income. At the end of 2017, inventory would be valued at ______ under the direct method and _______ under the allowance method. Income would be reduced by _________ after the entry to reduce inventory to market under the direct method and ________ after the entry to reduce inventory to market under the allowance method.

In: Accounting