At 1 October 2015 a business had total outstanding debts of $8, 600. During the year to 30 September 2016 the following transaction took place.
(a) Credit sales amounted to $44, 000.
(b) Payments from various customers (accounts receivable) amounted to $49, 000.
(c) Two debts, for $180 and $420, were declared irrecoverable and the customers are no longer purchasing goods from the company. These are to be written off.
Required
Prepare the trade accounts receivable account and the irrecoverable debts account for the year.
Using C# and Visual Studio, design and implement a standalone command-line application that
fulfils the following requirements:
1. The user shall be able to enter the following values:
a. Gross monthly income (before deductions).
b. Estimated monthly tax deducted.
c. Estimated monthly expenditures in each of the following categories:
i. Groceries
ii. Water and lights
iii. Travel costs (including petrol)
iv. Cell phone and telephone
v. Other expenses
A person’s blood glucose level and diabetes are closely related. Let x be a random variable measuring the glucose in mg per decilitre of blood. After a 12-hour fast, the random variable x will have a distribution that is approximately normal with mean µ = 85 and standard deviation σ = 25. (Source: Diagnostic Tests with Nursing Implications, edited by S. Loeb, Springhouse Press). Note: after 50 years of age, both the mean and standard deviation tend to increase.
(a) What is the probability that, for an adult under 50 years old, after a 12-hour fast, x is less than 60?
(b) What is the probability that, for an adult under 50 years old, after a 12-hour fast, x is between 70 and 100?
(c) What is the probability that, for an adult under 50 years old, after a 12-hour fast, x is more than 125? (borderline diabetes starts at 125)
(d) Find the minimum glucose level (after a 12-hour fast) required to participate in a study reserved for the top 10% of people.
what is the calculation and errors of simple pendulum expriment ?
Identify atleast two other opportunities to create and distribute or send a merged documents or labels and make samples of each
Cindy uses the services of a brokerage firm to buy and sell stocks. The firm charges 1.5% service charges on the total amount for each transaction, buy or sell. When Cindy sells stocks, she would like to know if she gained or lost on a particular investment. Write a program that allows Cindy to input the number of shares sold, the purchase price of each share, and the selling price of each share. The program outputs the amount invested, the total service charges, amount gained or lost, and the amount received after selling the stock.
Write a program that prompts the user to input the amount of rice, in pounds, in a bag. The program outputs the number of bags needed to store one metric ton of rice.
Predict the output of the following program?
class Test {
protected int x, y;
}
class Main {
public static void main(String args[]) {
Test t = new Test();
System.out.println(t.x + " " + t.y);
}
}
debug the code for displaying numbers 1 to 10 using dowhile loop.
Class doWhile
{
public static void main(String[] args)
{
int num =1;
do
{
System.out.println(num);
}while(num>=10)
}
}
The following code results in compile time error. Identify the error.
public static void display ()
{
int n =123456;
float f =100.12;
System.out.println(“Float value ” +f);
}