1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
ElenaW [278]
2 years ago
11

On August 1, Kim Company accepted a 90-day note receivable as payment for services provided to Hsu Company. The terms of the not

e were $20,000 face value and 6% interest. On October 30, the journal entry to record the collection of the note should include a
Business
1 answer:
daser333 [38]2 years ago
7 0

journal entry to record the collection of the note would be:

debit to Notes Receivable for $20,000

credit to Notes Receivable for $20,300

debit to Interest Receivable for $300

*credit to Interest Revenue for $300

More about journal entry:

A journal entry is a record of a business transaction in an organization's accounting system. Journal entries are the foundation of the double-entry accounting method, which has been used to keep financial records for centuries. They allow a company to track what its resources have been used for and where those resources came from.

More about Notes Receivable:

Amounts owed by customers for which a formal credit agreement has been written and signed Typically used when payment is not expected for more than 60 days. A formal credit account requiring interest is sometimes used to settle an account receivable. Depending on the term of the note, it can be a current or noncurrent asset. The borrower on a note is referred to as the "Maker." The "payee" is the party making the loan.

Interest Receivable:

It is the interest earned by the company, but not yet collected in cash.

Learn more about Receivable here:

brainly.com/question/13651431

#SPJ4

You might be interested in
A company that doesn't just make money but makes a difference in the world and gives back to the community is a company that eng
mote1985 [20]
Engages in ' Corporate Social Responsibly' the money they earn will be given back to society

For example: a shoe factory allows its customer to buy a pair of shoes so the money goes to society the needy. There is trust between the company and customer and the money benefits society
8 0
3 years ago
Jerrod is relatively new to Xenon Corporation and wants to make sure that he makes a good impression on his coworkers and superv
larisa86 [58]
I think the correct answer for this would be enchancement
6 0
3 years ago
The following information is available for Windsor, Inc. for the year ended December 31, 2017. Beginning cash balance $ 45,720 A
Diano4ka-milaya [45]

Answer:

<em>Cash generated for the year:</em>   348,793‬

ending cash:    394,513

Explanation:

<u>Operating Activities:</u>

Net Income     288,646

depreciation <u>   164,592  </u>

adjusted          453,238

change in Working capital:

AP decrease             3,759

Tax Payable               4,775

AR increase              (8,331)

Inventory increase <u>  (11,176)  </u>

total change            (10,973)

<em>cash generated from operating activities  442.265</em>

<em />

<u>Investing Activities</u>

proceed from land        35,560

purchase of building  (293,624)

<em>cash used from investing activities 258,064‬</em>

<u></u>

<u>Financing Activities</u>

issuance of shares    203,200

TS purchase                (26,416)

dividends paid             (12,192)

<em>cash generated from financing activities  164,592</em>

<em />

<em>Cash generated for the year:</em>   348,793‬

beginning cash                             45,720

ending cash                                 394,513

3 0
3 years ago
This program will store roster and rating information for a soccer team. coaches rate players during tryouts to ensure a balance
Vedmedyk [2.9K]

Answer:

Explanation:

#include <iostream>

#include <vector>

using namespace std;

int main() {

   vector<int> jerseyNumber;

   vector<int> rating;

   int temp;

   for (int i = 1; i <= 5; i++) {

       cout << "Enter player " << i

            << "'s jersey number: ";

       cin >> temp;

       jerseyNumber.push_back(temp);

       cout << "Enter player " << i

            << "'s rating: ";

       cin >> temp;

       rating.push_back(temp);

       cout << endl;

   }

   cout << "ROSTER" << endl;

   for (int i = 0; i < 5; i++)

       cout << "Player " << i + 1 << " -- "

            << "Jersey number: " << jerseyNumber.at(i)

            << ", Rating: " << rating.at(i) << endl;

   char option;

   '

   while (true) {

       cout << "MENU" << endl;

       cout << "a - Add player" << endl;

       cout << "d - Remove player" << endl;

       cout << "u - Update player rating" << endl;

       cout << "r - Output players above a rating"

            << endl;

       cout << "o - Output roster" << endl;

       cout << "q - Quit" << endl << endl;

       cout << "Choose an option: ";

       cin >> option;

       switch (option) {

           case 'a':

           case 'A':

               cout << "Enter a new player's"

                    << "jersey number: ";

               cin >> temp;

               jerseyNumber.push_back(temp);

               cout << "Enter the player's rating: ";

               cin >> temp;

               rating.push_back(temp);

               break;

           case 'd':

           case 'D':

               cout << "Enter a jersey number: ";

               cin >> temp;

               int i;

               for (i = 0; i < jerseyNumber.size();

                    i++) {

                   if (jerseyNumber.at(i) == temp) {

                       jerseyNumber.erase(

                               jerseyNumber.begin() + i);

                       rating.erase(rating.begin() + i);

                       break;

                   }

               }

               break;

           case 'u':

           case 'U':

               cout << "Enter a jersey number: ";

               cin >> temp;

               for (int i = 0; i < jerseyNumber.size();

                    i++) {

                   if (jerseyNumber.at(i) == temp) {

                       cout << "Enter a new rating "

                            << "for player: ";

                       cin >> temp;

                       rating.at(i) = temp;

                       break;

                   }

               }

               break;

           case 'r':

           case 'R':

               cout << "Enter a rating: ";

               cin >> temp;

               cout << "\nABOVE " << temp << endl;

               for (int i = 0; i < jerseyNumber.size();

                    i++)

                   if (rating.at(i) > temp)

                       cout << "Player " << i + 1

                            << " -- "

                            << "Jersey number: "

                            << jerseyNumber.at(i)

                            << ", Rating: "

                            << rating.at(i) << endl;

               break;

           case 'o':

           case 'O':

               cout << "ROSTER" << endl;

               for (int i = 0; i < jerseyNumber.size();

                    i++)

                   cout << "Player " << i + 1 << " -- "

                        << "Jersey number: "

                        << jerseyNumber.at(i) << ", Rating: "

                        << rating.at(i) << endl;

               break;

           case 'q':

               return 0;

           default:

               cout << "Invalid menu option."

                    << " Try again." << endl;

       }

   }

}

4 0
3 years ago
What happens if the amount of Bad Debt Expense is overstated at year end? A : Net income will be overstated. B : Allowance for D
Yuri [45]

Answer:

D. Net Accounts Receivable will be understated

Explanation:

5 0
3 years ago
Other questions:
  • Using the graph, complete the table that follows by indicating whether each statement is true or false. Statement True False Bet
    6·1 answer
  • Jones co. returned merchandise purchased from smith co. under the perpetual inventory system, the journal entry to record the re
    15·1 answer
  • If the cpi was 95 in 1955 and is 475 today, then $100 today purchases the same amount of goods and services as
    14·1 answer
  • When the government decreases spending or increases taxes to slow economic expansion, the government is conducting: a contractio
    10·1 answer
  • If Alan Shaw reduces his work hours when his salary increases, then:________
    11·1 answer
  • here is ongoing debate among U.S. policymakers whether the role the government in the healthcare system should be expanded or re
    6·1 answer
  • Some economists say that economic growth involves a​ trade-off between current generations and future generations. If a current
    8·1 answer
  • What is the minimum number of integers that you must pick between 0 and 9 (inclusive), such that two of them add up to 9?
    11·1 answer
  • The break-even point is the sales level at which a company?
    12·1 answer
  • You get an offer for a credit card that charges 13.99% interest APR, compounded monthly. What effective annual interest rate doe
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!