Questions
Prepare the answer to the following question by either entering text directly or uploading an Excel...

Prepare the answer to the following question by either entering text directly or uploading an Excel or Word file. Do NOT upload a .pdf or .jpg file or you will receive zero credit. Show computations. The prepaid insurance account has an unadjusted balance of $46,000 at December 31, 2018, the end of Hanson Company's accounting year. Insurance expense has an unadjusted $2,000 balance at the same point in time. Some policies that were in effect have expired. Some of those were renewed and some were not. The following policies are in effect at December 31, 2018: Policy Date Policy Total Premium Type Acquired Term Paid when acquired Liability 1-31-17 2 years $48,000 Auto 6-30-18 2 years 9,000 Business interruption 8-1-18 1 year 840 Determine the adjusted balance in prepaid insurance at December 31, 2018. 2.Determine the amount of total insurance expense (you need not separate the expense by policy type) to report on the income statement for the year ended December 31, 2018.

In: Accounting

Prepare the answer to the following question by either entering text directly or uploading an Excel...

Prepare the answer to the following question by either entering text directly or uploading an Excel or Word file. Do NOT upload a .pdf or .jpg file or you will receive zero credit. Show computations.

The prepaid insurance account has an unadjusted balance of $46,000 at December 31, 2018, the end of Hanson Company's accounting year. Insurance expense has an unadjusted $2,000 balance at the same point in time. Some policies that were in effect have expired. Some of those were renewed and some were not. The following policies are in effect at December 31, 2018:

Policy                                                                 Date                 Policy            Total Premium

  Type                                                               Acquired             Term         Paid when acquired

Liability                                                              1-31-17          2 years         $48,000

Auto                                                                   6-30-18             2 years             9,000

Business interruption 8-1-18              1 year                 840

  1. Determine the adjusted balance in prepaid insurance at December 31, 2018.

2.Determine the amount of total insurance expense (you need not separate the expense by policy type) to report on the income statement for the year ended December 31, 2018.

In: Accounting

In a system employing a paging scheme for memory management; wasted space is due to: External...

In a system employing a paging scheme for memory management; wasted space is due to:

External fragmentation

Internal fragmentation

Pages and frames of different specified sizes

None of these are reasons for wasted space in a paging scheme

The page table for each process maintains:

The frame location for each page of the process

The page location for each frame of the process

The physical memory location of the process

None of these are what the page table maintains

The real address of a word in memory is translated from the following portions of a virtual address:

Page number and frame number

Page number and offset

Frame number and offset

None of these are how a virtual address is translated to a real address

The replacement policy that can be implemented in practice and performs the best among the replacement policies that can be actually coded is:

Optimal Policy

Least recently used (LRU) policy

Clock policy

None of these are the described replacement policy

A reference to a memory location independent of the current assignment of data to memory is called a(n):

Special address

Logical address

Absolute address

None of these are the name for this type of memory reference

In: Computer Science

To obviate current beach erosion potentials and as a part of beach re-nourishment, Research department’s Dr....

To obviate current beach erosion potentials and as a part of beach re-nourishment, Research department’s Dr. Smith proposed a construction of a series of submerged wave energy dissipation structures (=submerged-plate breakwaters) at 110 ft from the shoreline of the Beach. Based on design specifications of the structure, the distribution of the number of waves dissipatable by the proposed structure per hour could be approximated by a normal distribution with a mean of 189 waves and a standard deviation of 7 waves.
1) Use the Empirical Rule to describe the 90% distribution/range of X, i.e., the number
of waves dissipatable by the proposed structure per hour.
2) If the structure is built with dissipating a maximum 195 waves/hour capacity, what
fraction of an hour, i.e., minutes, might the structure be unable to handle incoming
waves (or in other word, how many minutes per hour the structure exceeds 195
waves/hour capacity)?
3) What wave dissipating capacity of the structure should be built so that the
probability of the incoming waves exceeding the structure capacity is equal to only
0.05 (or 5%)?

In: Statistics and Probability

Suppose patient demand for blood tests at a local hospital to screen for various illnesses is...

Suppose patient demand for blood tests at a local hospital to screen for various illnesses is given by Q = 5,000 - 10P, where Q is the number of tests and P is the price of each test in dollars. It costs the hospital a constant $250 to run each test.

(a).Now suppose that all patients that visit the hospital have insurance that covers 80% of the cost of a blood test. In that case, the number of blood tests that will be run at the hospital is __________ . The deadweight loss that results from the hospital administering blood tests in this case is _________$  (enter only numbers in the blank, and please round to the nearest whole number if necessary).

(b)Consider the hospital from the previous problems. Continue to assume that patients have insurance that covers 80% of the cost of a blood test. However, suppose that, because it helps to detect communicable diseases, each blood test that is administered has a positive externality that can be valued at $25. The deadweight loss resulting from the hospital administering blood tests in this case will be [size] in size relative to if there were no positive externality associated with the tests (enter just the word larger, smaller, or identical in the blank). __________

In: Economics

Suppose patient demand for blood tests at a local hospital to screen for various illnesses is...

Suppose patient demand for blood tests at a local hospital to screen for various illnesses is given by Q = 5,000 - 10P, where Q is the number of tests and P is the price of each test in dollars. It costs the hospital a constant $250 to run each test.

(a).Now suppose that all patients that visit the hospital have insurance that covers 80% of the cost of a blood test. In that case, the number of blood tests that will be run at the hospital is __________ . The deadweight loss that results from the hospital administering blood tests in this case is _________$  (enter only numbers in the blank, and please round to the nearest whole number if necessary).

(b)Consider the hospital from the previous problems. Continue to assume that patients have insurance that covers 80% of the cost of a blood test. However, suppose that, because it helps to detect communicable diseases, each blood test that is administered has a positive externality that can be valued at $25. The deadweight loss resulting from the hospital administering blood tests in this case will be [size] in size relative to if there were no positive externality associated with the tests (enter just the word larger, smaller, or identical in the blank). __________

In: Economics

(Use the String Class to Solve This (and only the iostream, string and cctype libraries)) Write...

(Use the String Class to Solve This (and only the iostream, string and cctype libraries))

Write a program that can be used to train the user to use less sexist language by suggesting alternative versions of sentences given by the user. The program will ask for a sentence, read the sentence into a string variable, and replace all occurrences of masculine pronouns with gender-neutral pronouns. For example, it will replace “he” with “she or he”, and “him” with “her or him”. Thus, the input sentence

See an adviser, talk to him, and listen to him.

should produce the following suggested changed version of the sentence:

See an adviser, talk to her or him, and listen to her or him.

Be sure to preserve uppercase letters for the first word of the sentence. The pronoun “his” can be replaced by “her(s) or his”; your program need not decide between “her” and “hers”. Allow the user to repeat this for more sentences until the user says she or he is done.

You need to take care of the following string replacements:

he/she -> she or he

him/her -> her or him

his/her(s) -> her(s) or his

In: Computer Science

Overview: As a community healthcare professional, you will need an understanding of the risk factors of...

Overview: As a community healthcare professional, you will need an understanding of the risk factors of diseases. This activity provides you with the opportunity to use a graphic organizer, which is an excellent educational tool you may use in your future career. Prompt: Before completing this activity, read about genetic risk and behavioral determinants of health. Then create a graphic organizer that demonstrates your understanding of risk factors. Be sure to address both genetic and behavioral determinants by describing each. Include genetic and behavioral determinants within your graphic organizer (at least four of each). This guide will help you understand more about graphic organizers. Specifically, the following critical elements must be addressed: • Describe at least four genetic risk factors for communicable diseases. • Describe at least four behavioral determinants as risk factors for communicable diseases. Guidelines for Submission: Consider a free online graphic organizer tool such as Creately, Popplet Lite, or Bubbl to create this assignment and submit your graphic organizer as a PDF, JPEG, PowerPoint file, or Word file.

In: Biology

Sampling Methodology It is incumbent on the researcher to clearly define the target population. Sometimes, the...

Sampling Methodology It is incumbent on the researcher to clearly define the target population. Sometimes, the entire population is small enough to be included in the study. In other instances, the population is too large for the researcher to attempt to survey all of its members. Therefore, a small, but carefully chosen sample is used to represent the population. The sample is the actual group targeted either directly or indirectly and reflects the characteristics of the population from which it is drawn. Using the South University Online Library or the Internet, research, analyze, and select at least two articles on sampling methodology used in public health research studies. Note: The articles should not be more than two years old. Based on the articles identified, create a 2- to 3-page Microsoft Word document that includes the following:

A synopsis on the perspective of the sampling methodology used in your selected articles related to public health research studies.

Your opinion on whether the sampling method used in each of your chosen articles is appropriate for its target population.

Justify your response. An explanation of the potential advantages and disadvantages of the sampling plan used in your selected articles.

In: Nursing

ABC Co. has recently completed a $200,000, two-year marketing study. Based on the results of the...

ABC Co. has recently completed a $200,000, two-year marketing study. Based on the results of the study, Datum has estimated that 5,000 units of its new electro-optical data scanner could be sold annually over the next 5 years, at a price of $5,000 each. Variable costs per unit are $4,000, and fixed costs total $5 million per year. Start-up costs include $15 million to build production facilities, and $4 million in net working capital. The $15 million facility will be depreciated on a straight-line basis to a value of zero over the five-year life of the project. At the end of the project’s life, the production facilities will be sold for an estimated $3 million. Finally, start-up would also entail tax-deductible expenses of $75,000 at year zero. Datum is an ongoing, profitable business and pays taxes at a 35% rate on all income and capital gains. Datum has a 20% cost of capital for projects such as this one. Evaluate the project using NPV. ( Each and every step of calculation required and answer in microsoft word not excel!)

In: Finance