Questions
Can men be feminists, or only feminist allies?

Can men be feminists, or only feminist allies?

In: Psychology

Weighted average cost of capital is a long way as to how much earnings a company...

Weighted average cost of capital is a long way as to how much earnings a company can achieve through the costs of its projects and ultimately any products that are sold. If you were the financial manager do you have a preference for how the company would be capitalized? Do you believe that awaiting skewed more toward debt would be advantageous or more equity?

In: Finance

IN C++ ONLY... please do both parts of this task ..1 part- Menu driven program First...

IN C++ ONLY... please do both parts of this task ..1 part- Menu driven program First load an array(lists) with the values 3, 4, 84, 5, 2, 47, and 7 in this order by using a function. Then sort the array(list) Use a function to display the menu. Create a program with a menu, with choices 1 for factorial (single value, which everyone will use 20!), 2 for median value , 3 for average, 4 for maximum, 5 for minimum, and 6 to end the program. Use a do loop (not while) Use a switch statement inside the loop to make your choice of 1, 2, etc. You also need to to include a screen shot of your menu on the screen in your submission. To make for a better looking output, store the function (Factorial, Median, Maximum, etc.) in a string array(list) and your answer in a numeric array(list). (two arrays) Then in the exit module (choice 6) print out your answers. Note this involves running choices 1-6 in order. AND 2.part-- Redo this by adding a menu option for standard deviation of a population. You move option 6 down to option 7 and your std dev would be option 6. As an added bonus, send the STD Deviation to a sub/module/function to be printed to the screen. Send to the file in the main module because this is where you have defined all of your file objects, and they would not exist in another module. Basic steps: For the standard deviation you have to create a 2nd array(list). I called mine deviations. This array has to be at least as large as the array for your numbers. Then walk through the first array again and subtract the average(mean) from each value in the first array and put this difference(deviation) in the 2nd array. Some of these values will be positive and some will be negative. Walk through the 2nd array again (deviations) and square them, which will make them all positive. Walk through the 2nd array again and sum the deviations. divide the deviations by the count Take the squareroot of the (deviations/count) and you get the STD Deviation. Remember, you are taking the STD Deviation of a population, so you divide by N, not n-1 where n is the sample size. When I say walk through the array, I mean go through the array from row zero to the last row.

In: Computer Science

1. A restaurant purchased kitchen equipment on Jan 1, 2016 for $40,000. It is estimated that...

1. A restaurant purchased kitchen equipment on Jan 1, 2016 for $40,000. It is estimated that the equipment will have a $4,000 salvage value at the end of its 10-year useful life. Using the straight-line method of depreciation, the amount to be recorded as depreciation expense at December 31,

$3,000

$3,300

$3,600

$4,000

2. Two methods of writing-off accounts receivable are the

allowance method and the accrual method

allowance method and the net realizable method

direct write-off method and the accrual method

direct write-off method and the allowance method

3. An aging of a company’s accounts receivable indicates that $8,000 is estimated to be uncollectible. If Allowance for Doubtful Accounts has a $2,000 credit balance, the adjustment to record bad debts for the period will require a

Debit to Provision for Doubtful Accounts for $8,000

Debit to Allowance for Doubtful Accounts for $8,000

Credit to Provision for Doubtful Accounts for $6,000

Credit to Allowance for Doubtful Accounts for $6,000

4. Allowance for Doubtful Accounts

is offset against current liabilities

increases the cash realizable value of accounts receivable

appears on the balance sheet

is offset against accumulated depreciation

In: Accounting

The Bureau of Economic Analysisin the U.S. Department of Commerce reported that the mean annual income...

The Bureau of Economic Analysisin the U.S. Department of Commerce reported that the mean annual income for a resident of North Carolina is $18,688 (USA Today, August 24, 1995). A researcher for the state of South Carolina wants to see if the mean annual income for a resident of South Carolina is different. A sample of 400 residents of South Carolina shows a sample mean annual income of $16,860 and the population standard deviation is assumed to known, =$14,624. Use a 0.05 level of significance, the researcher wants to test the following hypothesis.H0:= 18,688Ha:18,688a.What are three rejection rules (You have used confidence interval approach in Question 2)? b.Do three rejection rules lead to the same conclusion? What is your conclusion?

In: Math

1. Explain the best way to handle team conflict? 2. Explain how strategic leadership differ from...

1. Explain the best way to handle team conflict?

2. Explain how strategic leadership differ from visionary leadership?

In: Operations Management

We are evaluating a project that costs $670,000, has a life of 5 years, and has...

We are evaluating a project that costs $670,000, has a life of 5 years, and has no salvage value. Assume that depreciation is straight-line to zero over the life of the project. Sales are projected at 59,000 units per year. Price per unit is $44, variable cost per unit is $25, and fixed costs are $760,000 per year. The tax rate is 23 percent, and we require a 16 percent return on this project. Suppose the projections given for the price, quantity, variable costs, and fixed costs are all accurate to within ±10 percent. Calculate the best case and worst case NPV figures.

In: Finance

Write the class Complex that supports the basic complex number operations. Such operations are addition (+),...

Write the class Complex that supports the basic complex number operations. Such operations are addition (+), subtraction (-) and multiplication (*) of complex numbers, and multiplication (*) of a complex by a scalar (float or int). All methods must return (not print) the result. Class also supports the rich comparison for equality (= =)

  • - Check the doctest for object behavior examples.

  • - You must use the special methods for those 4 operators in order to override their behavior

  • - You will need other special methods to achieve a legible object representation.

  • - Multiplication by scalar and by another complex number use the same operator, so you must check the type of the object in order to decide which operation you have to perform

  • - Rich comparison returns a Boolean value

  • - The rest of the methods must return a new Complex object, this means the original

    objects should not change after the operation is performed.

  • - Test your code, this is how you ensure you get the most credit out of your work!!

  • - When returning error messages, make sure your string contains the word ‘error’

  • - You are not allowed to modify the constructor or any given code.

  • - Hint: Section 3.3.1. Basic customization (__eq__) and Full Section 3.3.8. Emulating numeric types inhttps://docs.python.org/3/reference/datamodel.html#emulating-numeric-types

    Write the property method conjugate into the Complex class. The complex conjugate of the complex number z = x + yi is given by x – yi

Remember, you are not allowed to modify the given constructor. The method conjugate must be a property method, otherwise, no credit will be given. Property methods are discussed in the video lectures!

Starting Code:

class Complex:
    '''        
        >>> a=Complex(5,-6)        
        >>> b=Complex(2,14)        
        >>> a+b        
        (7, 8i)        
        >>> a-b        
        (3, -20i)        
        >>> a*b        
        (94, 58i)        
        >>> b*5        
        (10, 70i)        
        >>> 5*b        
        (10, 70i)        
        >>> print(a)        
        5-6i        
        >>> print(b)        
        2+14i       
        >>> b        
        (2, 14i)        
        >>> isinstance(a+b, Complex)
        True
        >>> a.conjugate
        (5, 6i)
        >>> b==Complex(2,14)
        True
        >>> a==b
        False
    '''

    def __init__(self, real, imag):
        self.real = real
        self.imag = imag

In: Computer Science

Should auto insurance companies be able to force you to have a little black box type...

Should auto insurance companies be able to force you to have a little black box type device, or a similarly functioning smartphone app, that records your driving habits, or pay a penalty not to do so (or get a discount for using the device - in the end a penalty for not using, or a discount for using are basically the same)?

In: Operations Management

C++ language Write a program that accepts as input the base price and the finished area...

C++ language

Write a program that accepts as input the base price and the finished area in square feet of the three models.

The program outputs the model(s) with the least price per square foot in the following format:

If the colonial model is the least price, output:

  • The price per square foot of the colonial model is the least.

If the split-entry model is the least price, output:

  • The price per square foot of the split-entry model is the least.

If the single-story model is the least price, output:

  • The price per square foot of the single-story model is the least.

If the colonial and split-entry models tie for the least price, output:

  • The price per square foot of the colonial and split-entry models tie for the least.

If the colonial and single-story models tie for the least price, output:

  • The price per square foot of the colonial and single-story models tie for the least.

If the single-story and split-entry models tie for the least price, output:

  • The price per square foot of the single-story and split-entry models tie for the least.

Finally, if all three tie for the least price, output:

  • The price per square foot all three models are the same.

In: Computer Science

Find the net torque on the wheel in the figure below about the axle through O...

Find the net torque on the wheel in the figure below about the axle through O perpendicular to the page, taking a = 5.00 cm and b = 23.0 cm. (Indicate the direction with the sign of your answer. Assume that the positive direction is counterclockwise.) N · m A wheel rotating about an axle is approximated as two concentric circles with the center defined to be O. The radius of the inner circle is a and the radius of the outer circle is b. Three arrows representing individual forces are as follows. An arrow labeled 12.0 N acts on the top left of the inner circle, and points down and to the left at an angle of 30.0° below the horizontal. An arrow labeled 10.0 N acts on the top of the outer circle and points to the right. An arrow labeled 9.00 N acts on the right of the outer circle and points down.

In: Physics

A pension fund manager is considering three mutual funds. The first is a stock fund, the...

A pension fund manager is considering three mutual funds. The first is a stock fund, the second is a long-term government and corporate bond fund, and the third is a T-bill money market fund that yields a rate of 6%. The probability distribution of the risky funds is as follows: Expected Return Standard Deviation Stock fund (S) 21 % 28 % Bond fund (B) 12 18 The correlation between the fund returns is 0.09. You require that your portfolio yield an expected return of 13%, and that it be efficient, on the best feasible CAL. a. What is the standard deviation of your portfolio? (Round your answer to 2 decimal places.) b. What is the proportion invested in the T-bill fund and each of the two risky funds? (Round your answers to 2 decimal places.)

In: Finance

Why do some managers have difficulties in delegating authority? Why do you think this problem might...

Why do some managers have difficulties in delegating authority? Why do you think this problem might be more pronounced in small businesses?

In: Finance

Write a program checkerboard3x3.cpp that asks the user to input width and height and prints a...

Write a program checkerboard3x3.cpp that asks the user to input width and height and prints a checkerboard of 3-by-3 squares. (It should work even if the input dimensions are not a multiple of three.) . Don't use function.

Example 1:

Input width: 16
Input height: 11

Shape:
***   ***   ***
***   ***   ***
***   ***   ***
   ***   ***   *
   ***   ***   *
   ***   ***   *
***   ***   ***
***   ***   ***
***   ***   ***
   ***   ***   *
   ***   ***   *

Example 2:

Input width: 27
Input height: 27

Shape:
***   ***   ***   ***   ***
***   ***   ***   ***   ***
***   ***   ***   ***   ***
   ***   ***   ***   ***   
   ***   ***   ***   ***   
   ***   ***   ***   ***   
***   ***   ***   ***   ***
***   ***   ***   ***   ***
***   ***   ***   ***   ***
   ***   ***   ***   ***   
   ***   ***   ***   ***   
   ***   ***   ***   ***   
***   ***   ***   ***   ***
***   ***   ***   ***   ***
***   ***   ***   ***   ***
   ***   ***   ***   ***   
   ***   ***   ***   ***   
   ***   ***   ***   ***   
***   ***   ***   ***   ***
***   ***   ***   ***   ***
***   ***   ***   ***   ***
   ***   ***   ***   ***   
   ***   ***   ***   ***   
   ***   ***   ***   ***   
***   ***   ***   ***   ***
***   ***   ***   ***   ***
***   ***   ***   ***   ***

In: Computer Science

Write a program, which reads a list of student records from a file in batch mode....

Write a program, which reads a list of student records from a file in batch mode. Each student record comprises a roll number and student name, and the student records are separated by commas. An example data in the file is given below.

· SP18-BCS-050 (Ali Hussan Butt), SP19-BCS-154 (Huma Khalid), FA19-BSE-111 (Muhammad Asim Ali), SP20-BSE-090 (Muhammad Wajid), SP17-BCS-014 (Adil Jameel)

The program should store students roll numbers and names separately in 2 parallel arrays named names and rolls, i.e. in the above case, 1st element of names contains “Ali Hussan Butt” and 1st element of rolls contain “SP18-BCS-321”; similarly, 2nd element of names contains “Huma Khalid” and 2nd element of rolls contain “SP19-BCS-154” and so on. Hint: You may use delimiters string “() ,”. Ignore empty strings returned as tokens (i.e. strings with length 0), if any.

In the end, first, display roll numbers and names for only the following students:

· Who are enrolled in BCS program.

· Whose roll number is between 100 and 200. (Hint: you can extract last 3 characters of roll number, convert it into integer and then check range 100-200)

For example, in the above case, only following students should be displayed.

1. Ali Hussan Butt, roll number: SP18-BCS-050

2. Adil Jameel, roll number: SP17-BCS-014

NOTE:USE ONLY C LAUNGAGE AND DONT USE FILE HANDLING.

In: Computer Science