Answer:
Debit Expenses $90,000; credit Accrued wages and salary $90,000
Explanation:
If we assume that the City of Juneau maintains its books and records to facilitate the preparation of its fund financial statements. The employees paid from the general fund had earned $90,000 on Monday, Tuesday, and Wednesday (June 28, 29, and 30).
The entry, if any, should be made in the city’s general fund on June 30 is to: Debit Expenses $90,000; credit Accrued wages and salary $90,000
The amount has been incurred in the month but has not been paid hence it has to be captured as expenses for the month of June while the double entry will be that the amount is captured as accrued wages signifying that it has not been paid within the period it was incurred
Answer:
D. define the project
Explanation:
The project is defined in the initiation phase.
The Project Initiation Phase is the 1st phase in the Project Management Life Cycle, as it involves starting up a new project. You can start a new project by defining its objectives, scope, purpose and deliverables to be produced.
Don’t give out personal info and don’t cyber bully people, don’t judge them either.
ANSWER: C) People could not charge as many different prices for goods.
EXPLANATION: If a currency has fewer denominations, then it would be a problem to charge different prices for goods as the change will not be available. For example, if the country is having currency for only $ 50 and $100, then the products can not be priced at $5 or $10. Even the smallest item will have a minimum price of $50 which will be not be worth of. The price of the products will either decrease or increase drastically. Proper pricing of any product will not be possible and it will affect the common people.
Answer:
//algorithm for ATM money withdrawal
Algorithm: Algorithm for cash withdrawals from ATM.
Input: withdraw_amount
Output: amount+service_charges.
Algorithm:
step 1:
balance =account balance.
withdraw_amount = (Get input from user)
step 2:
if(withdraw_amount>400)
then, print "maximum limit exceeds"
step 3:
if(withdraw_amout<1)
then, print "enter a valid amount"
step 4:
if(withdraw_amount>balance)
then, print "insufficient balance.. withdraw money $30 as service charges "
step 5:
if(withdraw_amount<400 && withdraw_amount<balance)
if(withdraw_amount>200)
service_charge=withdraw_amount*(3/100)
print " Your cash is dispensed... total amount withdrawn +service_charges 30% (withdraw_amount +service_charge) "