Questions
Required information [The following information applies to the questions displayed below.] Pearl E. White Orthodontist specializes...

Required information

[The following information applies to the questions displayed below.]

Pearl E. White Orthodontist specializes in correcting misaligned teeth. During 2021, Pearl provides services on account of $581,000. Of this amount, $71,000 remains receivable at the end of the year. An aging schedule as of December 31, 2021, is provided below.
  

Age Group Amount
Receivable
Estimated Percent Uncollectible
Not yet due $ 31,000 4 %
0-90 days past due 15,100 20 %
91–180 days past due 10,100 25 %
More than 180 days past due 14,800 70 %
Total $ 71,000

Required:

1. Calculate the allowance for uncollectible accounts.

2. Record the December 31, 2021, adjusting entry, assuming the balance of Allowance for Uncollectible Accounts before adjustment is $4,100 (credit). (If no entry is required for a particular transaction/event, select "No Journal Entry Required" in the first account field.)

3. On July 19, 2022, a customer’s account balance of $7,100 is written off as uncollectible. Record the write-off. (If no entry is required for a particular transaction/event, select "No Journal Entry Required" in the first account field.)

4. On September 30, 2022, the customer whose account was written off in part 3 unexpectedly pays the full amount. Record the cash collection. (If no entry is required for a particular transaction/event, select "No Journal Entry Required" in the first account field.)

In: Accounting

What was the status of the wandering minstrel in comparison to the troubadours, trouvères, and minnesingers?...

What was the status of the wandering minstrel in comparison to the troubadours, trouvères, and minnesingers? Are there similar differences today between the professional popular or folk musicians and other segments of society?

In: Psychology

TDABC is an activity-based costing that is also based on the function of time. In TDABC,...

TDABC is an activity-based costing that is also based on the function of time. In TDABC, we allocate the activity capacity based on how much time used for each activity.

There are two types of TDABC:

a. bottom-up TDABC (in which employees estimate the time associated with performing the activity once) --> leads to underestimation of time used

b. top-down TDABC (in which employees estimate the total time associated with the total practical capacity of the activity) --> leads to overestimation of time used

The question is why the underestimation/overestimation in TDABC occurs?

In: Accounting

For SO2 oxidation, a mixture of 28% SO2 and 72% air is fed into the flow...

For SO2 oxidation, a mixture of 28% SO2 and 72% air is fed into the flow reactor with a volumetric flow rate of 1500 L/s. The following reaction is carried out at 14.7 atm pressure and 227°C temperature. 2SO2 + O2 = 2SO3 2 2 (-Ra )= 200(L / mol.s) .Cso2.Co2

a) Create a stoichiometric table.

b) Find the concentrations of the components fed to the reactor.

c) Find the CSTR reactor volume required for 60% conversion.

d) If a PFR reactor was used at the same volume of CSTR, what would be the conversion rate and what would be the component concentrations at the reactor outlet

In: Other

Python: I am making a program that prints a circle of random size, random location, with...

Python: I am making a program that prints a circle of random size, random location, with user_inputed (using entry) color, when 'DRAW' button is clicked.

I am stuck on passing variables on the while loop. Please Help

from graphics import*
import sys
import random

from time import sleep

def main():
win = GraphWin ('What Color', 500, 600)
win.setCoords(0, 0, 500, 600)

DB = Rectangle(Point(350, 580), Point(400, 560))
DB.setFill('light Green')
DB.draw(win)

QB = Rectangle(Point(430, 580), Point(480, 560))
QB.setFill('red')
QB.draw(win)

DB_t = Text(Point(375,570),'DRAW')
DB_t.setSize(10)
DB_t.draw(win)

QB_t = Text(Point(455,570),'QUIT')
QB_t.setSize(10)
QB_t.draw(win)
  

Ins_t = Text(Point(125, 570), 'Color for next Circle:')
Ins_t.setSize(10)
Ins_t.draw(win)

E1 = Entry(Point(215, 570), 5)
E1.setFill('white')
E1.draw(win)

size = random.randrange (10,25)
x = random.randrange(5, 495)
y = random.randrange(5, 595)
  
while True:
for i in circle(colors):
if circle(color_ui) == i:
c = Circle(Point(x,y), size)
c.setFill(i)
  
while True:
m = win.checkMouse()
if m:
if 430 < m.getX() < 480 and 560 < m.getY() < 580:
win.close()
if 350 < m.getX() < 400 and 560 < m.getY() < 580:
if E1.getText():
c.draw(win)

def circle(c, E1):
colors = ['red','blue','green','yellow','black','purple','pink']
color_ui = E1.getText
while True:
for i in colors:
if color_ui == i:
return i
colors, color_ui


  

In: Computer Science

Q 2. Ethane at an average flow rate of 8000 cm3/s enters a 1.5-in ID pipe...

Q 2. Ethane at an average flow rate of 8000 cm3/s enters a 1.5-in ID pipe at 40˚C and 13 bar and emerges at a point 300 m lower than the inlet at 30˚C and 9 bar through a 1-in ID pipe. Calculate
I. the velocity of the gas in the outlet? [1 Mark]
II. Δk (W)? [3 Marks]
III. Δk (W)? [1 marks]
Assuming that the methane behaves as an ideal gas, Mol.Wt (C2H6) = 30.07 g/mol, g=9.81 m2/s.

In: Other

I am doing a speech on the importance of drinking water. I must do it with...

I am doing a speech on the importance of drinking water. I must do it with Monroe’s Motivational Sequence.

I need to address the problem (Need), how to solve that problem (satisfaction), and the positive possibilities if they would follow these solutions (Visualization).

In: Operations Management

/* 1. Fix the CREATE and INSERT statements below to create the SHIPMENT table and insert...

/* 1. Fix the CREATE and INSERT statements below to create the SHIPMENT table and insert its data in DB Fiddle*/


CREATE TABLE SHIPMENT (
ShipmentID Int NOT NULL,
ShipperName Char(35) NOT NULL,
ShipperInvoiceNumber Int NOT NULL
DepartureDate Date NULL,
ArrivalDate Date NULL,
InsuredValue Numeric(12,2) NOT NULL,
CONSTRAINT Shipment_PK PRIMARY KEY (ShipmentID))
);

INSERT INTO SHIPMENT VALUES (1,'ABC Trans-Oceanic', 2008651, '10-Dec-14', '15-Mar-18', 15000.00);
INSERT INTO SHIPMENT VALUES (2,'ABC Trans-Oceanic', 2009012, '10-Jan-18', '20-Mar-18', 12000.00);
INSERT INTO SHIPMENT VALUES (3,'Worldwide', 49100300, '05-May-18', '17-Jun-18', 20000.00)
INSERT INTO SHIPMENT VALUES (4,'International', 399400, '02-Jun-18', '17-Jul-18', 17500.00 );
INSERT INTO SHIPMENT VALUES (5,'Worldwide', 84899440, '10-Jul-18', '28-Jul-18', 25000.00);
INSERT INTO SHIPMENT VALUES (6,'International', 488955, '05-Aug-18', '11-Sep-18', 18000.00);

Now you can work on the following 5 queries:

/* Query 1. Show the shipper, the invoice number and insured value for each shipment. */

/* Query 2. Show the shipper and the number of shipments made by each one. */

/* Query 3. Show the shipper and the number of shipments made by each one but only include shipments with insured values that are 15,000 or over. */

/* Query 4. Show the shipper and the number of shipments made by each one but only include shipments with insured values that are 15,000 or over and only show shippers with 2 or more shipments.*/


/* Query 5. Show the shipper, the number of shipments made by each one and the total insured value for all shipments made by each shipper -- but only include shipments with insured values that are 15,000 or over and only show shippers with 2 or more shipments and only show shippers with a total insured value over 40000. */

In: Computer Science

Please, I need a unique answer, use your own words (don't copy and paste, no handwritten...

Please, I need a unique answer, use your own words (don't copy and paste, no handwritten notes)

give me an the biosynthesis and chemical structure of (Dexamethasone & COVID-19)

In: Biology

language is C++ 1. Design a class that manages a Pet Food Company's quarterly summarized activity....

language is C++

1. Design a class that manages a Pet Food Company's quarterly summarized activity. It should contain the following:

( This is all private data )

Company Name - char[40]   //  This is a static member 
Quarter              - char         // This is a static member.  Validate to be 1-4 in the setter method

Division Name - char[40]

BonusBudgetRate - float   - set to 0.02
Total Sales        - float
Total Expenses - float

1a. Create a public method named netIncome() which will return total sales - total expenses as float.

 

2. Create public class methods (Setters and Getters) that load the data values.

3. Do not create getter/setter methods for the BonusBudgetRate item. It can be set in a constructor or initialized to the default value of 0.02. There is no other reference to it.

4. This class needs a header file and a corresponding cpp file.

5. Create a 'driver' program that contains the main() method and includes the header file for PetFoodCompany class.

   In the driver program, create an instance of the object PetFoodCompany. 
   Internally set the Quarter to 1 and the CompanyName to a name of your choosing.
   Display the CompanyName and Quarter values
   Prompt for total sales and total expenses for this object
   Display the result of netIncome(). 

Below is an example:

 
Company Name is myCompanyName
Current Quarter is 1

Enter Total Sales: 1000

Enter Total Expenses: 600
Net Income = 400

The deliverable is a working program (CPPs & H files) and a UML diagram of the this class.

In: Computer Science

1) What operational and organizational impacts must be considered when transitioning from the planning to the...

1) What operational and organizational impacts must be considered when transitioning from the planning to the implementation phase of your project? What else is impacted? Think about operational activities, resources, responsibilities, and dependencies.

In: Computer Science

Explain what equity and non-equity entry modes are and summarize their main types.

Explain what equity and non-equity entry modes are and summarize their main types.

In: Economics

Becton Labs, Inc., produces various chemical compounds for industrial use. One compound, called Fludex, is prepared...

Becton Labs, Inc., produces various chemical compounds for industrial use. One compound, called Fludex, is prepared using an elaborate distilling process. The company has developed standard costs for one unit of Fludex, as follows:

Standard Quantity
or Hours
Standard Price
or Rate
Standard Cost
Direct materials 2.10 ounces $ 22.00 per ounce $ 46.20
Direct labor 0.80 hours $ 15.00 per hour 12.00
Variable manufacturing overhead 0.80 hours $ 2.50 per hour 2.00
Total standard cost per unit $ 60.20

During November, the following activity was recorded related to the production of Fludex:

  1. Materials purchased, 10,500 ounces at a cost of $216,825.
  2. There was no beginning inventory of materials; however, at the end of the month, 2,600 ounces of material remained in ending inventory.

  3. The company employs 20 lab technicians to work on the production of Fludex. During November, they each worked an average of 180 hours at an average pay rate of $14.00 per hour.

  4. Variable manufacturing overhead is assigned to Fludex on the basis of direct labor-hours. Variable manufacturing overhead costs during November totaled $7,000.

  5. During November, the company produced 3,700 units of Fludex.

Required:

1. For direct materials:

a. Compute the price and quantity variances.

b. The materials were purchased from a new supplier who is anxious to enter into a long-term purchase contract. Would you recommend that the company sign the contract?

2. For direct labor:

a. Compute the rate and efficiency variances.

b. In the past, the 20 technicians employed in the production of Fludex consisted of 8 senior technicians and 12 assistants. During November, the company experimented with fewer senior technicians and more assistants in order to reduce labor costs. Would you recommend that the new labor mix be continued?

3. Compute the variable overhead rate and efficiency variances.

In: Accounting

Research different tools for assessing leadership styles. Summarize at least three tools and the styles they...

  1. Research different tools for assessing leadership styles. Summarize at least three tools and the styles they mention. Do you believe that it’s best for leaders to use different styles in different situations? Why or why not?

In: Operations Management

What is the difference between infrastructure security and premises security? List and describe three categories of...

  1. What is the difference between infrastructure security and premises security?
  2. List and describe three categories of physical threats caused by humans.
  3. What are the two requirements for physical security?

In: Computer Science