Questions
Halley's comet, which passes around the Sun every 76 years, has an elliptical orbit. When closest...

Halley's comet, which passes around the Sun every 76 years, has an elliptical orbit. When closest to the Sun (perihelion) it is at a distance of 8.823

In: Physics

Interpret these correlation coefficients: •r = -0.84 between total mileage and car resale value •r =...

Interpret these correlation coefficients:

•r = -0.84 between total mileage and car resale value

•r = 0.03 between anxiety level and college GPA

•r = 0.56 between age of schoolchildren and reading comprehension

In: Math

You are working in an area that has been contaminated by heavy metals, what plant-based strategy...

You are working in an area that has been contaminated by heavy metals, what plant-based strategy will you try to remediate the soil so that you can later create a park?

In: Biology

go online and find some exchange-rate policy that is going on in the world. It doesn't...

go online and find some exchange-rate policy that is going on in the world. It doesn't necessarily have to be between the United States and some other country it could be between Australia and the Philippines for example.

Again using chapter as a guide, find some trade events or policies that are going on in the world that are driving the currency exchange - and the Net Capital Out or Inflow. Is it a case where the purchase power is way off? Is it military or conflict driven? Is it currency (de)valuation?  

In: Economics

1. Treatment with which of the following in neonatal (newborn) male rats would most likely lead...

1. Treatment with which of the following in neonatal (newborn) male rats would most likely lead to normal defeminization and masculinization of sexual behavior? (Assume that in adulthood all males are treated with testosterone and tested with a female.)

-Androgen receptor antagonist

-Estrogen receptor antagonist

-Alpha-fetoprotein inhibitor

-Aromatase inhibitor

-Castration

2. Phoenix et al.’s 1959 paper showed for the first time that...

-Androgen exposure during early life affects sexual behavior in adulthood.

-Estrogen exposure during early life affects sexual behavior in adulthood.

-Androgen exposure during adulthood affects sexual behavior in adulthood.

-Estrogen exposure during adulthood affects sexual behavior in adulthood.

-Pregnant females treated with androgens produce hermaphroditic offspring.

3. Which of the following is true of organizational effects on the brain in both rats and primates?

-Sexual differentiation of the brain mostly occurs before birth.

-Masculinization of the brain requires the presence of gonadal steroids.

-Feminization of the brain requires the presence of gonadal steroids.

- Masculinization of the brain requires aromatization of androgens to estrogens.

Femalesareprotectedfrommasculinizationbyalpha-fetoprotein.

In: Biology

Nordway Corporation acquired 90 percent of Olman Company’s voting shares of stock in 20X1. During 20X4,...

Nordway Corporation acquired 90 percent of Olman Company’s voting shares of stock in 20X1. During 20X4, Nordway purchased 54,000 Playday doghouses for $28 each and sold 39,000 of them to Olman for $35 each. Olman sold 32,000 of the doghouses to retail establishments prior to December 31, 20X4, for $50 each. Both companies use perpetual inventory systems.


Required:
a.

Prepare all journal entries Nordway recorded for the purchase of inventory and resale to Olman Company in 20X4. (If no entry is required for a transaction/event, select "No journal entry required" in the first account field.)

1. Record the purchase of inventory on account.

2. Record the sales of the Playday doghouses.

3. Record the cost of goods sold.

b.

Prepare the journal entries Olman recorded for the purchase of inventory and resale to retail establishments in 20X4. (If no entry is required for a transaction/event, select "No journal entry required" in the first account field.)

1. Record the purchase of inventory on account.

2. Record the sales of the Playday doghouses.

3. Record the cost of goods sold.

c.

Prepare the worksheet consolidation entry(ies) needed in preparing consolidated financial statements for 20X4 to remove the effects of the intercompany sale. (If no entry is required for a transaction/event, select "No journal entry required" in the first account field.)

1. Record the consolidation entry.

In: Accounting

Alleles for Sickle Cell Anemia occur at higher rates in some populations compared to others. Here,...

Alleles for Sickle Cell Anemia occur at higher rates in some populations compared to others. Here, please explain what Sickle Cell Anemia is, how it is inherited, and why in spite of any negative side effects has it persisted as a trait among humans. Be as detailed as possible. You may even include a punnet square in your answer.

In: Biology

In C++ First create the txt file given below. Then complete the main that is given....

In C++

First create the txt file given below. Then complete the main that is given. There are comments to help you. An output is also given You can assume that the file has numbers in it

Create this text file: data1.txt

-59 -33 34 0 69 24 -22 58 62 -36 
5 45 -19 -73 62 -5 95 42 

Main

#include <iostream>
#include <fstream>
#include <string>
#include <iomanip>
using namespace std;

const int MAXSIZE = 100;

// Prototypes





int main()
{
    int nums[MAXSIZE];
    int searchFor;
    int indexFound = -1;
    int numElems;
    double average;
    string fileName;
    char again;

    do
    {

        cout << "Enter the file name: ";
        cin >> fileName;

        // Call the function fillArray. It has the fileName, the nums array and
        // the numElem passed in (in that order). It will calculate the numElems
        // Description of function given below



        // Call the function printArray. It has the nums array and
        // the numElem passed in (in that order). 
        // Description of function given below





        // Call the function findAverage. It has the nums array and
        // the numElem passed in (in that order). It stores the value
        // that is returned in the average variable declared above.
        // Description of function given below




        // Asks the user what number they want to search for
        cout << endl << endl;
        cout << "Enter a number between -100 and 100 to search for: ";
        cin >> searchFor;

        // Call the function findValue. It has the number being searched for
        // the nums array and the numElem passed in (in that order). 
        // It stores the index of the position in the array where the 
        // number was found in the indexFound variable declared above.
        // Description of function given below



        // Right the if statement to print whether the number was found.
        // If it was found, it will print the inde of where it was found.
        // (See output for what should be printed






        cout.setf(ios:: fixed);
        cout.precision(2);
        cout << "The average of all the numbers in the array is " << average << endl;
        cout << endl;
        cout << "Do you want to do this again? (Y/N): ";
        cin >> again;
    } while (toupper (again) == 'Y');
    return 0;
}



// Function: findValue
// This function has the value being serachedd for, the array and the number of 
// elements passed in. I searches the array and when it first finds it, it
// stops searching and returns the index of where it was found. If it is not 
// in the array, it returns a -1






// Function: findAverage
// This function has the array and the number of elements passed in.
// It computes the average of the numbers in the array and returns it.






// Function: printArray
// This function has the array and the number of elements passed in.
// It prints the array in neat columns, with 7 numbers per line







// Function: fillArray
// This function should open the file with the name that passed into it. If the file does
// not open correctly it should exit the program. It should
// then read in the numbers and load them into the array. 
// make sure you check that you don't exceed the array size.
// If the file has too many numbers, your program should not put the 
// extra numbers in the array, the array will just be full.
// This function determines the number of elements in the array.
// This function should not call any other user defined functions.

Sample Output

Enter the file name: data.txt
    -59    -33     34      0     69     24    -22
     58     62    -36      5     45    -19    -73
     62     -5     95     42

Enter a number between -100 and 100 to search for: 62
62 was found in index 8
The average of all the numbers in the array is 13.83

Do you want to do this again? (Y/N): Y
Enter the file name: data1.txt
    -59    -33     34      0     69     24    -22
     58     62    -36      5     45    -19    -73
     61     -9     95     42    -73    -64     91
    -96      2     53     -8     82    -79     16
     18     -5    -53     26     71     38    -31
     12    -33     -1    -65     -6      3    -89
     22     33    -27    -36     41     11    -47
    -32     47    -56    -38     57    -63    -41
     23     41     29     78     16    -65     90
    -58    -12      6    -60     42    -36    -52
    -54    -95    -10     29     70     50    -94
      1     93     48    -71    -77    -16     54
     56    -60     66     76     31      8     44
    -61    -74     23     37     38     18    -18
     29     41

Enter a number between -100 and 100 to search for: 52
The number 52 was not found in the array
The average of all the numbers in the array is 1.48

Do you want to do this again? (Y/N): y
Enter the file name: data.txt
    -59    -33     34      0     69     24    -22
     58     62    -36      5     45    -19    -73
     62     -5     95     42

Enter a number between -100 and 100 to search for: 95
95 was found in index 16
The average of all the numbers in the array is 13.83

Do you want to do this again? (Y/N): n

In: Computer Science

Cute Camel Woodcraft Company is a small firm, and several of its managers are worried about...

Cute Camel Woodcraft Company is a small firm, and several of its managers are worried about how soon the firm will be able to recover its initial investment from Project Sigma’s expected future cash flows. To answer this question, Cute Camel’s CFO has asked that you compute the project’s payback period using the following expected net cash flows and assuming that the cash flows are received evenly throughout each year.

Complete the following table and compute the project’s conventional payback period. For full credit, complete the entire table. (Note: Round the conventional payback period to two decimal places. If your answer is negative, be sure to use a minus sign in your answer.)

Year 0

Year 1

Year 2

Year 3

Expected cash flow -$5,000,000 $2,000,000 $4,250,000 $1,750,000
Cumulative cash flow
Conventional payback period: years

The conventional payback period ignores the time value of money, and this concerns Cute Camel’s CFO. He has now asked you to compute Sigma’s discounted payback period, assuming the company has a 9% cost of capital. Complete the following table and perform any necessary calculations. Round the discounted cash flow values to the nearest whole dollar, and the discounted payback period to two decimal places. For full credit, complete the entire table. (Note: If your answer is negative, be sure to use a minus sign in your answer.)

Year 0

Year 1

Year 2

Year 3

Cash flow -$5,000,000 $2,000,000 $4,250,000 $1,750,000
Discounted cash flow
Cumulative discounted cash flow
Discounted payback period: years

Which version of a project’s payback period should the CFO use when evaluating Project Sigma, given its theoretical superiority?

The discounted payback period

The regular payback period

One theoretical disadvantage of both payback methods—compared to the net present value method—is that they fail to consider the value of the cash flows beyond the point in time equal to the payback period.

How much value in this example does the discounted payback period method fail to recognize due to this theoretical deficiency?

$4,928,461

$1,763,323

$1,351,321

$3,186,183

In: Finance

In python language do thee following: Some password scheme is designed such that the password must...

In python language do thee following:

Some password scheme is designed such that the password must start with a special symbol in “$” “@” or “!” followed by four letters that could be in a..z followed by a similar special symbol followed by three letters in A..Z followed by a single digit. Write a program that takes from the user a string, and verifies whether the string abides by this password scheme. Do this once using regular expressions. Another time without using regular expressions.

In: Computer Science

A firm uses skilled labor, unskilled labor, and capital, and is initially in equilibrium. Suppose that...

A firm uses skilled labor, unskilled labor, and capital, and is initially in equilibrium. Suppose that the wage paid to unskilled labor falls, and that unskilled labor is a substitute in production with both skilled labor and capital. Depict in separate graphs of (a) capital and unskilled labor and (b) capital and skilled labor how the original equilibrium choices change in response to the decline in wages paid to unskilled workers. What are the expected impacts on the wage and employment level for each group of worker, and why? How does this factor into the growth of inequality in recent decades in the United States?

In: Economics

The Gourmand Cooking School runs short cooking courses at its small campus. Management has identified two...

The Gourmand Cooking School runs short cooking courses at its small campus. Management has identified two cost drivers it uses in its budgeting and performance reports—the number of courses and the total number of students. For example, the school might run two courses in a month and have a total of 65 students enrolled in those two courses. Data concerning the company’s cost formulas appear below:

Fixed Cost per Month Cost per Course Cost per
Student
Instructor wages $ 2,910
Classroom supplies $ 270
Utilities $ 1,240 $ 70
Campus rent $ 4,900
Insurance $ 2,200
Administrative expenses $ 3,500 $ 45 $ 6

For example, administrative expenses should be $3,500 per month plus $45 per course plus $6 per student. The company’s sales should average $850 per student.

The company planned to run four courses with a total of 65 students; however, it actually ran four courses with a total of only 61 students. The actual operating results for September appear below:

Actual
Revenue $ 52,350
Instructor wages $ 10,920
Classroom supplies $ 17,400
Utilities $ 1,930
Campus rent $ 4,900
Insurance $ 2,340
Administrative expenses $ 3,496

Required:

Prepare a flexible budget performance report that shows both revenue and spending variances and activity variances for September (Indicate the effect of each variance by selecting "F" for favorable, "U" for unfavorable, and "None" for no effect (i.e., zero variance). Input all amounts as positive values.)

In: Accounting

Friedman distinguishes between the two concepts that (a) businesses really do act in ways to maximize...

  1. Friedman distinguishes between the two concepts that (a) businesses really do act in ways to maximize profit and (b) businesses have a moral responsibility (or, as he puts it, a social responsibility) to act to maximize profit. How does he defend the latter position? (See both the Friedman and Sandbu readings)
  2. From the Sandbu article, Sandbu quotes Adam Smith as saying that we get our dinner from the self-interest of the butcher, baker and brewer. What does he mean by this? How does this observation lead to Adam Smith's concept of the "invisible hand?"

NB: Can I get an email to send both article?

In: Operations Management

Two stationary positive point charges, charge 1 of magnitude 3.85 nC and charge 2 of magnitude...

Two stationary positive point charges, charge 1 of magnitude 3.85 nC and charge 2 of magnitude 2.00 nC , are separated by a distance of 43.0 cm . An electron is released from rest at the point midway between the two charges, and it moves along the line connecting the two charges.

What is the speed Vfinal of the electron when it is 10.0 cm from charge 1?

Express your answer in meters per second.

Please show your work!

In: Physics

1) Describe the performance impact of using the LIKE operation with a wild card character at...

1) Describe the performance impact of using the LIKE operation with a wild card character at the beginning of the value.

2) Under what circumstances is a non-matching index scan performed?

3) A query is written to access a single table. Furthermore, that query will return only a single row because an equality predicate is coded on the primary key for the table. A unique index exists to support the primary key. What type of access is likely to be the most efficient for that query?

4) How can stored procedures be used to optimize performance in a client/server application?

5) Under what circumstances will a table scan outperform indexed access?

In: Computer Science