Premium Essay

Basic

In:

Submitted By cryslei
Words 1030
Pages 5
Hi Class,

Please let me know specifically if there are problems you are having trouble understanding. If it is just the overall basic principles of accounting, we can go through them until you get the idea. Below is a brief overview:

The financial position of a company is measured by the following items: 1. Assets (what it owns) 2. Liabilities (what it owes to others) 3. Owner’s Equity (the difference between assets and liabilities)
The accounting equation (or basic accounting equation) offers us a simple way to understand how these three amounts relate to each other.

The accounting equation for a sole proprietorship is:

Assets = Liabilities + Owner’s Equity

The accounting equation for a corporation is:

Assets = Liabilities + Stockholders’ Equity

If a company keeps accurate records, the accounting equation will always be “in balance,” meaning the left side should always equal the right side. The balance is maintained because every business transaction affects at least two of a company’s accounts.

For example, when a company borrows money from a bank, the company’s assets will increase and its liabilities will increase by the same amount. For instance, if the company borrows $10,000, Cash (a normal debit balance account) would be increased (debited, left side) for $10,000, and Notes Payable (this is a normal credit balance account) would be increased for $10,000 (credited, right side). The entry in the General Journal (the record of all entries) would look like this:

Debit Credit

July 5, 2010 Cash $10,000 Notes Payable $10,000

When a company purchases inventory for $5,000 cash, one asset will increase and one asset will decrease. Because there are two or more accounts affected by every transaction, the accounting system is referred to as double entry accounting.

The entry in the General

Similar Documents

Premium Essay

The History of Visual Basic

...The History of Visual Basic dates back to 1991 when VB 1.0 was introduced. The core of Visual Basic was constructed on the older BASIC language, which was the prevalent programming language throughout the 1980s. It's a computer programming system established and owned by Microsoft. Visual Basic was originally produced to make it easier to write programs for the Windows computer operating system. The basis of Visual Basic is an earlier programming language called BASIC that was invented by Dartmouth College professors John Kemeny and Thomas Kurtz. Visual Basic is often denoted by using just its initials; VB. Visual Basic is easily the most extensively used computer programming system in the history of software. Microsoft Visual Basic is the most common language and development environment for developers coding to the Windows operating system platform. From modest beginnings it has grown to be part of personal computing itself, and with the latest incarnation, Visual Basic .NET in Beta it looks as if it may be in use for another decade or longer. Visual Basic 1.0 for Windows was released in May 1991 at a trade show in Atlanta, Georgia. Visual Basic 2.0 was released in November 1992. The programming environment was easier to use, and its speed was improved. Visual Basic 3.0 was released in 1993 and came in Standard and Professional versions. Visual Basic 4.0 was released in August 1995. It was the first version that could produce 32-bit as well as 16-bit Windows programs. It...

Words: 409 - Pages: 2

Free Essay

Visual Basic Preview

...Visual Basic 2010 Essentials Visual Basic 2010 Essentials Visual Basic 2010 Essentials – First Edition © 2010 Payload Media. This eBook is provided for personal use only. Unauthorized use, reproduction and/or distribution strictly prohibited. All rights reserved. The content of this book is provided for informational purposes only. Neither the publisher nor the author offers any warranties or representation, express or implied, with regard to the accuracy of information contained in this book, nor do they accept any liability for any loss or damage arising from any errors or omissions. 2 Visual Basic 2010 Essentials Table of Contents Chapter 1. Chapter 2. 2.1 2.2 2.3 2.4 About Visual Basic Essentials .................................................................................. 11 Downloading and Installing Visual Studio............................................................... 12 Getting Visual Studio ...................................................................................................... 12 Downloading a Visual Studio Trial .................................................................................. 12 Installing Visual Studio ................................................................................................... 13 Starting Visual Studio for the First Time ........................................................................ 14 Creating a New Visual Basic Project ....................................................

Words: 5044 - Pages: 21

Free Essay

Computer: Basics

...Teaching Computer Skills To Children with Visual Impairments: A Concept-Based Approach | [Graphic. Three color photos are standing side-by-side. In the first, a young teen-age boy is typing on a computer keyboard and smiling. In the second, a man is sitting in front of a computer reading using his refreshable braille display. In the third, three children are in a computer lab. All three have headphones. One is looking at the screen and one is listening to the output. (The face of the third child is blocked by the head of the second). End of graphic description]Joanmarie Diggs, M.Ed.The Carroll Center for the Blind 2002 AER International Conference 20 July 2002We know….The world is made up of objects whose function and form dictate how we access and use these objects. Children who are blind or visually impaired need concrete, hands-on experiences so that they can understand the world around them and can independently and safely interact with the objects they encounter.Similarly….The Windows Operating System is made up of objects whose function and form dictate how we access and use these objects. As with accessing objects in the environment, people who are sighted have visual information about the form and function of Windows objects and controls. In addition, a mouse user can access all windows controls in the same way: clicking on them. Children who are blind or visually impaired need to understand the form and function of these objects and controls so that they can independently...

Words: 6098 - Pages: 25

Premium Essay

Universal Basic Income

...monthly grants, or free money to everyone. This is what a universal basic income (UBI) has been called in other names. The notion of a universal basic income has been literally everywhere for a very long period, at least since the aftermath of the world war I. A UBI is an income given without any strings attached to every adult and child (or in some version, only citizens) to provide at least an adequate level of resources. A basic income guarantees each citizen an income sufficient to meet his or her basic needs. The money would be given even regardless of whether the recipients are in the jobs or not. Strikingly for UBI, it is not mean-testing benefits, meaning that no family stuck in poverty traps where benefit withdrawal erodes any increase in earning. Yet, there are many critics of a universal basic income, the most common one is the cost objection. It argues that the cost of providing everyone with an adequate income floor, beneath which no one would fall us out of reach for governments and public finance. Other critics pointed out at some deficiencies that the incentives for people to work would be somewhat eliminated. Yet, what many critics seem to not recognize is that many objections is usually based on inadequate and misleading information, and that the current system of welfare is being implemented obsoletely and ineffectively. In this paper, first, I will demonstrate reasons why the idea of a universal basic income, in terms of feasibility, is financially feasible to be...

Words: 1895 - Pages: 8

Free Essay

Semantics of Visual Basics

...| Purpose In this project, a database management system will be implemented to make the self-ordering easier. The users for this program will be used for customers in various restaurants. It will take a customer’s order, total it, and give them an amount. The system will instruct the customer to enter the correct amount. If the amount is not enough, the system will instruct them to enter more money. If it is too less, however, the system will them issue out change. Use of Visual Basics Visual Basic for Applications (VBA) will be used because it is a programming language built right into many Microsoft programs. This language is built on the Basic programming language made popular by PCs over the past 25 years. VBA shares similarities with other Windows implementations of the Basic language, such as Visual Basic. If you are familiar with programming in a different language (including using macros), you can quickly get up to speed with VBA. There are a few terms you should know before you start programming in VBA: * Procedure. A section of programming code, designed to accomplish a specific task, which your program statements can use throughout your program. There are two types of procedures: functions and subroutines. * Function. A procedure that returns a value after it completes its task. When called, functions typically appear on the right side of an equal sign in an expression. * Subroutine. A procedure that does not return a value after it completes its...

Words: 3627 - Pages: 15

Free Essay

7 Basic Tools in Quality

...TABLE OF CONTENTS 1.0 Introduction ………………………………………….………………………… 2 2.0 The Development of 7 Basic Tools…………………………………………….. 3 3.0 Data Figures ………………………………………..…………………… 3 4.0 Histogram ..………………...…………………………………………………… 5 5.0 Process Control Chart ..………………………….…………………………… 5 6.0 Patero Analysis …………………………………………………………….. 8 7.0 Cause and Effect Diagram ……..………………..……………….……….……. 9 8.0 Trend Analysis ……………………………………………………………………11 9.0 Scatter Diagram…...……………………………………………..………………. 13 10.0 Conclusion…….…………………………………………………………..……... 15 THE SEVEN BASIC QUALITY TOOLS Project Risk, Procurement and Integration Management 1. INTRODUCTION The last two decades have been a period of tremendous turmoil and change in the business environment. Competition in many industries has become worldwide in scope, and the pace of innovation in products and services has accelerated. These changes in business environment have resulted in organisations attempting to transform themselves to become more competitive. Since the early 1980s, many companies have gone through several waves of improvement programs, starting with Just-In-Time (JIT), then moving on to Total Quality Management (TQM), Lean Production, Six Sigma and many other various management programs. Implementing these programmes would require tools for data collection, measure and monitor. There are seven quality control tools which are: * Data figures ...

Words: 3093 - Pages: 13

Premium Essay

Basic Combat Training

...Basic Combat Training Basic Combat Training, often referred to as just BCT, is the introduction Soldiers recieve as they enter the Army. It is often considered a life-changing experience, something that people remember, reflect on, and tell stories to their grand children about decades later. BCT is not easy...as we often say here, there is nothing basic about Basic Training. BCT takes 10 weeks to complete. Unlike schools which typically have between six and seven hours a day of teaching, the Army trains for about 12-14 hours a day, Monday through Saturday. We try to avoid too much sitting in a classroom...but it does happen: We also spend a little bit of time outside; getting some fresh and air and, when the opportunity presents itself, a little exercise: Traveling...by foot: Climbing ropes: And if you're good enough, graduating in front of your friends and Family! Week 0: Reception Soldiers complete administrative actions required to become part of the Army. Simple things such as medical examinations, setting up pay, and initial issue of equipment is completed. This process typically takes between two and three days but can take over a week in some cases. Weeks 1-3: Red Phase Welcome to BCT! Soldiers meet their Drill Sergeants and begin training. While often considered a difficult week for Soldiers due to the adjustments, it is actually pretty easy compared to later weeks. Most classroom-type training occurs in this period where Soldiers learn about: * Ballistics...

Words: 679 - Pages: 3

Premium Essay

Germany Basic Law

...The Basic Law or Grundgesetz for the Federal Republic of Germany was approved on 8 May 1949, and, with the signature of the western Allies of World War 2 on 12 May, came into effect on 23 May. The authors also ensured that human rights and human dignity was made the central and core part of the Basic Law. Key concepts in the basic law are principles of democracy, republicanism, federalism and social responsibility. These principles are constitutionally entrenched and they cannot be removed or repealed by the normal amendment process. Firstly this essay will look into what lead to the development of the new Basic Law and how the new parliamentary democracy was put into place with separation of powers into different branches of government. Secondly the essay will examine what were the specific changes from pre-1945 Germany and if which areas these changes were most visible. Here it will be important to look at the fundamentally differences from the Weimar Constitution, but also what the new Basic Law chose to keep from the Weimar Constitution. And why the authors of the Basic law felt that this was the safest way to construct a good state for all Germans where the sins of the past would never be repeated. In 1948 the three Western Allied military governors met in Frankfurt with the chief executive of the various states and “recommended” the calling of a constituent assembly by September 1, 1948, which was to draft a constitution for the three Western zones. None of the state...

Words: 1494 - Pages: 6

Free Essay

Table

...(L) SUK H207 AHCC1113 (P) V207 AHCC1113 (P) M102 (L) FAI DKB AELE0343 (P) SUK CC205 JS AHCC1163 (P) FAI M003 AELE0343 (T) SUK H207 JS AHCC1163 AHCC1153 (L) WYL DKB AHCC1153 (P) WYL LAB 2 AHCC1163 (P) FAI V207 AHCC1153 (P) WYL LAB 3 AELE0343 READING AND WRITING AHCC1153 BASIC SOFTWARE APPLICATION I AEPD1013 STUDY SKILLS AHCC1163 DRAWING BASIC AHCC1103 ART APPRECIATION AHCC1113 GRAPHIC DESIGN BASICS School of Social Science and Humanities Certificate in Graphic Design - Year 1 1st semester 2013/2014 8 9 10 AHCC1103 (T) HAR V102 11 AHCC1113 (L) JS DK 6 Tutorial Group: M1CGD2 12 1 2 3 4 AEPD1013 (L) PRA H209 5 6 7 8 9 Mon Tue Wed Thu Fri Sat AHCC1103 (L) HAR DK AB1 AELE0343 (L) SUK H207 AEPD1013 (T) PRA H207 AHCC1163 (L) FAI DKB AELE0343 (P) SUK CC205 AHCC1153 (L) WYL DKB AHCC1113 (P) V304 AHCC1113 (P) V207 AELE0343 (T) SUK H207 JS JS AHCC1163 (P) FAI V208 AHCC1153 (P) WYL LAB 2 AHCC1153 (P) WYL LAB 2 AHCC1163 (P) FAI V202 AELE0343 READING AND WRITING AHCC1153 BASIC SOFTWARE APPLICATION I AEPD1013 STUDY SKILLS AHCC1163 DRAWING BASIC AHCC1103 ART APPRECIATION AHCC1113 GRAPHIC DESIGN BASICS School of Social Science and Humanities Certificate in Graphic Design - Year 1 1st semester 2013/2014 8 9 AEPD1013 (L) PRA H209 10 11 AHCC1113 (L) JS DK 6 Tutorial Group: M1CGD3 12 1 2 3 AHCC1103 (T) HAR V104 AELE0343 (L) SUK H207 4 5 6 7 8 9 Mon Tue Wed AHCC1103 (L) HAR DK AB1 AHCC1163...

Words: 517 - Pages: 3

Premium Essay

Hostel Management Synopsis

...SYNOPSIS TITLE OF THE PROJECT HOSTEL MANAGEMENT SYSTEM PROBLEM STATEMENT This project needs to create the Hostel Management System (HMS) to organize the rooms, mess, student’s record and the other information about the students. All hostels without HMS are managed manually by the hostel office. And hence there is a lot of strain on the person who are running the hostel. This particular project deals with the problems on managing a hostel and avoids the problem which occur when carried manually. INTRODUCTION In hostels without a HMS all the things have to be done manually. The Registration form verification to the different data processing are done manually. Thus there are a lot of repetitions which can be easily avoided. Identification of the drawbacks of the existing system leads to the designing of computerized system that will be compatible to the existing system with the system which is more user friendly and more GUI oriented. We can improve the efficiency of the system, thus overcome the drawbacks of the existing system. Hostel management gives on idea about how the students details, room allocation, mess expenditure are maintained in the particular concern. The hostel management system also includes some special features like How many students can live in a room, and the students of the hostel can be recognized from their ID number. The administration has the unique identity for each members as well as students details. The stock management...

Words: 903 - Pages: 4

Free Essay

Mortgage

...Leah Dolce ECO 103 Mortgage Project While doing this project, I kept finding myself to be very indecisive as to what I wanted in a home and what things would be important to me if I were to purchase one. This project helped me understand the basics of buying a home such as: where I would want my kids to go to school, how many bedrooms, how many bathrooms, property, neighborhood reputation, and much more. I had very little knowledge about most of the surrounding area so now I know what kind of research I would have to do to make sure I know exatcly what I want when purchasing a home. I did know I wanted it to be at least 3 bedrooms, 2 bathrooms, and have an updated kitchen. I was able to find those things in the home I selected but what I didn't realize was what the cost would be. There is a huge financial difference between a 15 year fix and a 30 year fix mortgage. For the home I selected it was a $522.76 difference in the monthly payment and a $91,271.79 difference in the amount of interest I would be paying for the life of the loan. If I was abel to afford such a hefty, monthly payment I would choose the 15 year mortgage because in the long run it would be cheaper. The lesson learned here, though, is find a more affordable house and make updates as you go along. All -in-all I had fun doing this project and it helped me understand the process into buying a home and gave me great internet resources to do...

Words: 282 - Pages: 2

Free Essay

How to Present to Investors

...nonstop work. Startups are a counterexample to the rule that haste makes waste. (Too much money seems to be as bad for startups as too much time, so we don't give them much money either.) A week before Demo Day, we have a dress rehearsal called Rehearsal Day. At other Y Combinator events we allow outside guests, but not at Rehearsal Day. No one except the other founders gets to see the rehearsals. The presentations on Rehearsal Day are often pretty rough. But this is to be expected. We try to pick founders who are good at building things, not ones who are slick presenters. Some of the founders are just out of college, or even still in it, and have never spoken to a group of people they didn't already know. So we concentrate on the basics. On Demo Day each startup will only get ten minutes, so we encourage them to focus on just two goals: (a) explain what you're doing, and (b) explain why users will want it. That might sound easy, but it's not when the speakers have no experience presenting, and they're explaining technical matters to an audience that's mostly...

Words: 303 - Pages: 2

Premium Essay

Course Descriptions

...GE117 Composition I | A 4 credit hour Composition course This course covers phases of the writing process, with special emphasis on the structure of writing and techniques for writing clearly, precisely and persuasively. Prerequisite or Corequisite: TB133 Strategies for the Technical Professional or equivalent GE127 College Mathematics I | A 4 credit hour Mathematics course This course will include, but is not limited to, the following concepts: quadratic, polynomial and radical equations, linear functions and their graphs, systems of linear equations, functions and their properties and triangles and trigonometric functions. Activities will include solving problems and using appropriate technological tools. Prerequisite: GE184 Problem Solving or TB184 Problem Solving or GE150 Survey of the Sciences or equivalent; Prerequisite or Corequisite: TB133 Strategies for the Technical Professional or equivalent GE184 Problem Solving | A 4 credit hour Science course This course introduces students to problem solving techniques and helps them apply the tools of critical reading, analytical thinking and mathematics to help solve problems in practical applications. GE192 College Mathematics II | A 4 credit hour Mathematics course This course will include, but is not limited to, the following concepts: exponential and logarithmic equations and functions, graphs of trigonometric functions, trigonometric equations, polar coordinates, oblique triangles, vectors and sequences. Prerequisite:...

Words: 1186 - Pages: 5

Premium Essay

Lab 6

...and logical operators in computer programs. Use compound logical conditions. Required Setup and Tools Standard lab setup Lab Manual Lab Demo Media and Startup Files CD Recommended Procedures Complete Lab 6.2: Flowcharts from the lab manual. Deliverables Submit the following at the end of this lab activity: Corrected variable declarations and initializations using Visio in Step 2 Corrected module calls using Visio in Step 3 Corrected inputOptions() module using Visio in Step 4 Corrected displayProvider() module with case labels and flow lines using Visio in Step 5 Corrected displayChoices() module with logical operators using Visio in Step 6 Completed and workable flowchart using Visio in Step 7 Unit 6 Lab 6.3: Visual Basic Programming Challenge Learning Objectives and Outcomes Use flowcharts and pseudocode to represent Boolean conditions. Use if-then, if-then-else, and case structures in a computer program. Use Boolean variables and logical operators in computer programs. Use compound...

Words: 355 - Pages: 2

Free Essay

Abacus Aat Pricing & Tktg Quick Ref 073109.Pdf

...Display Basic Entry FT1 Tax Details from List RB2 Specific Tax Code RB2MNLLAX–PR/LAXMIA–AA Passenger Facility Charge Basic Entry Optional Qualifiers Travel Date Multiple Carriers Display All Types of Fares Return Travel Date Fare Display from Segment Continuation Entries Redisplay Fare Tax Breakdown Display Display RBD Conditions Display RBD by Carrier FQHELP FQBKKMNL–PR/USD FQMNLBKK–TG¥QYEE6M FQMNLBWN–BR¥BY FQMNLTPE–PR¥PINF FQMNLTPE–PR¥PSEA/LBR TXN∗BKK TXN∗1 TXN∗∗XA PXC∗SFO Basic Entry Fare Rule by Line Number Redisplay Rule Information Routing Map FARE RULE DISPLAY RDMNLLAX11SEPLEE6M–PR RD2 Quick Reference Page RDHELP RD∗ Rule Menu of Categories RD2∗M RD2∗RTG Specific Categories RD2∗5/15/22 NON-ITINERARY PRICING WQMNLHKGLAX–ACX/VCX Quick Reference Page Basic Entry Optional Qualifiers Currency Code Passenger Type Code Operating Carrier Date & Booking Class Surface Segment Connection City Continuation Entries Fare Details from List Fare Rule Display Rule Display of First Fare Rule Display from Fare List Fare Basis Code WQHELP WQMNLHKG–ACX/VCX/MUSD WQMNLKULMNL–AMH/VMH/PCNN/PINF WQMNL/ASQSIN/APRMNL–VSQ WQMNL29MAR/CYBKK13APR/CSMNL–ATG/VTG WQMNL14APR/APRHKG/–BKK19APR/ATGMNL–VPR WQMNL24APR/XHKG24APRSFO29MAY/XHKG31MAYMNL–ACX/VCX WQ¥1 WQRD∗ WQRD∗L3 WQRD∗QYOX Fare Calculation WQ¥DF2 Rule Menu of Categories WQRD∗L2¥M Specific Categories WQRD∗L2¥C6/7 Quick Reference Page WQRDHELP FAREX PRICING NET FARE LIST Basic Entry Multiple Carriers NET FARE DISPLAY Basic Entry...

Words: 1491 - Pages: 6