Course in Digital Accounting (CDA)
Course in Digital Accounting (CDA)
Example:
For 11010,
= 1 × 2⁴ + 1 × 2³ + 0 × 2² + 1 × 2¹ + 0 × 2⁰
= 16 + 8 + 0 + 2 + 0
= (26)10
2. Octal Number System
The octal number system is a base-8 system that uses digits from 0 to 7. It is used
as a shorthand representation of binary numbers because each octal digit
corresponds to a group of three binary digits (bits).
8 8 8 8
85 4 3 2 1 80
Example:
For 726,
=7 × 8² + 2 × 8¹ + 6 × 8⁰
= 7 × 64 + 2 × 8 + 6
= 448 + 16 + 6 = (470)10
3.Decimal Number System
The decimal number system is used in everyday life, based on base 10. It uses digits
from 0 to 9. Although computers don't natively use the decimal system, it is
important for human-computer interaction, as users generally interact with
computers using decimal numbers.
10 10 10 10 10 10
5 4 3 2 1 0
Example:
In 720, the value of 7 is 700 (7 × 10²), the value of 2 is 20 (2 × 10¹), and the value
of 0 is 0 (0 × 10⁰).
4.Hexadecimal Number System
The hexadecimal number system is a base-16 system that uses digits from 0 to 9
and letters A to F (representing values 10 to 15). It is commonly used in computer
programming to represent binary data, as each hexadecimal digit corresponds to
four binary digits.
16 16 16 16 16 16
5 4 3 2 1 0
Example:
For number 27FB:
2 × 16³ + 7 × 16² + 15 × 16¹ + 11 × 16⁰
= 2 x 4096 + 7 x256 + 15 x 16 + 11
= 8192 + 1792 + 240 + 11
= (10235)10
Conversion of the Number System in Computer Organization
One important aspect of number systems in computers is their ability to convert
between different bases. Conversion between number systems is crucial for
understanding how data is processed and stored in various formats. Here are some
common conversions:
Binary to Decimal Conversion: Multiply each binary digit by 2 raised to the
power of its position (starting from 0), and then sum the results.
Decimal to Binary Conversion: Repeatedly divide the decimal number by 2,
recording the remainder for each step.
Binary to Hexadecimal Conversion: Group binary digits in sets of four
(starting from the right) and convert each group to its equivalent hexadecimal
digit.
Hexadecimal to Binary Conversion: Replace each hexadecimal digit with its 4-
bit binary equivalent.
Binary Arithmetic-
Binary arithmetic uses only 0 and 1, and operations like addition, subtraction, and
multiplication follow specific rules, similar to decimal arithmetic, but with carries and
borrows occurring more frequently.
Binary Addition:
Rules:
o 0+0=0
o 0+1=1
o 1+0=1
o 1 + 1 = 10 (0 with a carry-over of 1)
Example: 11 + 1 = 100 (3 in decimal)
Binary Subtraction:
Rules:
o 0-0=0
o 0 - 1 = 1 (borrow 1)
o 1-0=1
o 1-1=0
Example: 11 - 1 = 10 (2 in decimal)
Binary Multiplication:
Rules:
0*0=0
0*1=0
1*0=0
1*1=1
Process: Similar to decimal multiplication, multiply each digit of one number
with the other and then add the partial products, shifting them appropriately.
Example: 11 * 11 = 1001 (9 in decimal)
IECT (Information Electronics and Communication Technology)-
IECT (Information, Electronics, and Communication Technology) applications span
diverse fields, including education, e-governance, business, entertainment, and
transportation, enabling efficient communication, data processing, and service
delivery.
Here's a more detailed look at the applications of IECT:
Education:
E-Learning Platforms: IECT facilitates online courses, tutorials, and educational
resources, offering flexible and accessible learning opportunities.
Virtual Classrooms: Technology enables interactive and immersive learning
experiences, connecting students and educators remotely.
Online Libraries: Students can access a vast collection of eBooks and resources
through digital libraries.
E-Governance:
Government Services: IECT enables the delivery of government services online,
streamlining processes and improving citizen access.
Information Dissemination: Governments can use IECT to communicate information
to citizens and vice versa, promoting transparency and engagement.
Transaction Management: Online platforms facilitate various transactions, including
payments, applications, and permits.
3. Business:
Data Collection and Analysis: IECT tools help businesses collect, analyse, and
manage data, leading to better decision-making and insights.
Customer Relationship Management (CRM): IECT systems enable businesses to
manage customer interactions, improve customer service, and build stronger
relationships.
Electronic Data Processing (EDP): IECT facilitates various business applications,
including payroll processing, inventory management, and financial reporting.
4. Entertainment:
Multimedia: IECT enables the creation and distribution of multimedia content,
including text, music, video, graphics, and animation.
Streaming Services: IECT supports online streaming of movies, music, and other
entertainment content.
Social media: IECT platforms enable social interaction and content sharing.
5. Transportation:
Intelligent Transportation Systems (ITS): IECT is used to develop systems that
improve traffic flow, optimize routes, and enhance transportation efficiency.
Automatic Vehicle Identification: IECT allows for the tracking and identification of
vehicles, improving safety and security.
Public Transportation: IECT enables real-time tracking of buses and trains, providing
passengers with accurate information
Operating System and types of operating system-An operating system (OS)
is software that manages computer hardware and software resources, acting as
an interface between the user and the hardware. Types of operating systems
include real-time, network, distributed, multitasking, mobile, and desktop OSs.
An operating system (OS) is a crucial piece of software that manages a computer's
hardware and software resources.
It acts as an interface between the user and the hardware, allowing users to interact
with the computer.
Examples include Windows, macOS, Linux, Android, and iOS.
Types of Operating Systems:
Real-time Operating System (RTOS): Designed for applications where timing
constraints are critical, such as industrial control systems or medical devices.
Network Operating System (NOS): Designed to manage and control network
resources, allowing multiple computers to share resources and communicate.
Distributed Operating System: Manages multiple computers or processors as a
single, unified system, enabling resource sharing and distributed processing.
Multitasking Operating System: Allows multiple programs or processes to run
concurrently, giving the user the ability to perform multiple tasks simultaneously.
Mobile Operating System: Designed for mobile devices like smartphones and tablets,
such as Android and iOS.
Desktop Operating System: Designed for personal computers and laptops, such as
Windows, macOS, and Linux.
Other Types of operating system:
Unix: A powerful, multi-user, multitasking operating system.
Linux: A popular, open-source, Unix-like operating system.
macOS: A proprietary operating system for Apple computers, based on Unix.
iOS: Apple's mobile operating system for iPhones and iPads.
Android: A mobile operating system developed by Google, based on the Linux
kernel.
Chrome OS: A lightweight operating system developed by Google, primarily used
on Chromebooks
Functions of Operating System
Memory Management:
The OS allocates memory to different programs, keeps track of which parts of memory are being used, and
reclaims memory when it's no longer needed.
Process Management:
The OS oversees all running programs or processes, schedules them, allocates resources (like CPU time
and memory), and ensures they run without interfering with each other.
Device Management:
The OS controls and coordinates hardware devices, ranging from input/output peripherals like keyboards
and printers to more complex components like disk drives and network adapters.
Secondary Storage Management:
The OS manages secondary storage devices like hard drives and SSDs, organizing and storing data
effectively
Security Management:
The OS provides mechanisms to ensure the security of the system, controlling access to system resources
such as files, directories, and hardware devices.
Error Detection and Handling:
The OS detects and handles errors, both at the hardware and software levels, to ensure system stability.
Job Accounting: The OS keeps track of system resources used by different users
and processes.
Networking: The OS facilitates communication between computers on a network.
Communication: The OS enables processes to communicate with each other.
Resource Allocation: The OS manages the allocation of system resources, such as CPU time,
memory, and storage, among processes.
Time-Sharing: The OS allows multiple users to share the computer's resources concurrently
GUI Operating Systems. A GUI operating system is an operating system that
uses a graphical user interface (GUI). GUIs use icons, windows, and a mouse to
display information and actions a user can take.
Examples of GUI operating systems:
Windows: Microsoft Windows uses a GUI model of communication.
Linux: A GUI-based operating system that supports multitasking,
multiprogramming, and timesharing.
Other GUI Operating System- (Window, Linux, Android, Apple IOS, MAC OS)
Elements of GUI Operating System - (Desktop, Windows, Title Bar, Task Bar, Start
Menu/ Launcher, Icon, Button, Menu, Dialogue Box, Tab, Toolbar, Ribbon)
How Graphical User Interface Works?
A GUI (Graphical User Interface) works by presenting users with a visual, interactive
environment using elements like icons, buttons, and menus, enabling them to
interact with a program or website without needing to type commands
Difference between GUI and CUI Operating System-
The main difference between a Command-Line User Interface (CUI) and a Graphical
User Interface (GUI) lies in how users interact with a computer: CUI uses text-based
commands, while GUI uses visual elements like icons and menus.
Graphical User Interface (GUI):
Interaction: Users interact with the computer using visual elements like icons,
buttons, menus, and windows.
Usability: Generally considered more user-friendly and easier to learn, especially for
beginners.
Examples: Windows, macOS, iOS, Android.
Resource Usage: GUI applications typically require more system resources (memory,
processing power) because of the need to render and manage visual elements.
Speed: Task execution can be slower in GUI compared to CUI, as GUI applications
have more overhead.
Flexibility: Offers a more flexible and intuitive user interface.
Command-Line User Interface (CUI):
Interaction: Users interact with the computer by typing commands into a terminal or
console.
Usability: Requires more technical knowledge and familiarity with commands.
Examples: MS-DOS, Linux command line.
Resource Usage: CUI applications generally require fewer system resources as they
don't rely on graphical elements.
Speed: Task execution can be faster in CUI, as there's less overhead involved.
Flexibility: Offers more direct control and flexibility through text-based commands.
Window Operating System-
Windows is a graphical operating system developed by Microsoft, acting as the
interface between users and computer hardware, allowing users to run software,
manage files, and perform various tasks.
Here's a more detailed explanation: What it is: Windows is a type of software that
manages a computer's hardware and software resources, providing a user interface
for interacting with the computer.
Key Features: Graphical User Interface (GUI): Windows uses a graphical interface
with icons, windows, and menus, making it easier for users to interact with the
computer.
File Management: Users can organize, store, and access files and folders through the
Windows file system.
Software Execution: Windows allows users to run various applications, including
productivity software, games, and multimedia programs.
Hardware Management: Windows manages and controls the computer's hardware
components, such as the CPU, memory, and storage devices
Managing files and folders in Window Operating System-
In Windows, you manage files and folders primarily using File Explorer, a built-in
application that allows you to navigate, organize, and manipulate files and folders.
Accessing File Explorer: You can open File Explorer by clicking the File Explorer
icon on the taskbar or by double-clicking any folder on your desktop.
Navigating Folders: Double-click a folder to open it and view its contents, and
you can use the address bar to see the location of a folder.
Organizing Files and Folders: Creating New Folders: Right-click in an empty
area within File Explorer, select "New," and then "Folder" to create a new folder.
Moving and Copying: You can move or copy files and folders using the "Move to" or
"Copy to" options in the Home tab, or by simply dragging and dropping them.
Deleting: Select the file or folder and press the Delete key, or right-click and
select "Delete
Control Panel-There are eight main areas on the Control Panel, containing
different tools designed to optimize your computer.
System and Security - A section to check your computer's status, backup and
restore, and others.
Network and Internet - View network status.
Hardware and Sound - View which devices are on your computer and add
devices.
Programs - Uninstall programs.
User Accounts - Change user accessibility.
Appearance and Personalization - Change desktop options, like fonts and
screen readers.
Clock and Region - Change date and time.
Ease of access - Optimize your display settings.
Basic Troubleshooting -for common computer issues (power Supply), Handling
issues related to printer (paper jam, printer isn’t printing, paper size mismatch,
Printer error etc.), Handling issues related to scanner (paper jam, poor image
quality etc.)
1. Introduction to Word Processing
Opening Word Processing Package, Menu Bar Creating, opening and saving
document, Entering and editing text, paragraph creation, moving text (Cut, Copy &
Paste), Undo, Redo, Using, Shortcuts
Formatting Documents (Setting font styles, size, colour, Typeface (Bold, Italic,
Underline), Font effects, change case, Highlighting, paragraph indenting,
Alignments, Line Spacing, drop cap, Bullets & Numberings, Borders & shadings,
Header & Footer, Footnote & Endnote, Inserting Page break, Page numbering, Date &
Time, Line Break, Word Wrap, Creating Cover page, Page Border, Table of Contents,
Using Page Themes & Colour, Inserting Watermarks)
Working with Tables (Creating tables, Table Styles, Borders & Shadings, Cell
Alignment, Inserting & Deleting rows or columns, Merging, Splitting, Sorting, Using
formula. Converting table into graphs)
Inserting Objects- Inserting Pictures, Formatting & editing pictures, picture styles,
Picture borders, effects & layouts, Positioning, grouping & ordering, rotating and
cropping, Adding and Editing Textbox, Shapes & SmartArt, Inserting Various types of
charts, Charts layout and formatting.
Page Layout & Printing- Page Orientation, Setting page margins, Page size, Columns,
Page Setup & Printing.
Features & Tools- Find and Replace, Auto Correct, Bookmarks, Hyperlinks, Spell
Check, Thesaurus, Mail Merge.
Converting document into pdf
2. Typing Skills
Keyboard basics, Correct way of typing, Alphabet Placement and Positioning, Typing
with Various keys, Speed typing, Using shortcut keys.
3. Introduction to Spreadsheet
Opening, creating and saving Spreadsheet., Entering & editing data, Selecting
Range, Cell Addressing, creating text, number and date series., Inserting, Deleting or
Hiding a Row & Column.
Changing Cell Height & Width, Formulas & Functions, Cell Referencing (Absolute,
Relative & Mixed)
Hookup & VLOOKUP, Conditional Formatting, Data Sorting & Filtering, Creating Data
List, Data Validation, Consolidation, What-if Analysis., Creating Charts and Graphs-
Adding different types of Charts, Charts layout and formatting., Find & Replace, Spell
Check, Thesaurus, Page Setup & Printing.
4. Introduction to Digital Presentation
Creating a Presentation using Template, creating a Blank Presentation, Opening and
saving a Presentation, Entering and Editing Text, Inserting and Deleting Slides in a
Presentation, Applying Themes & Background, Adding Pictures, Textbox, Tables,
Charts, Shapes, Word Tables or Excel Worksheets, Adding Text to Shapes,
Group/Ungroup Objects, Adding Header & Footer, Using Slide Master, Setting
Animation & Transition effects, Adding Audio & Video, Running a slide show
Save as PDF, Image or Video file, PowerPoint Views, Printing handouts and slides.
5. Secure Web Access and communication
Concept of Internet (What is Network, Types of networks, Concept of Client and
Server, Network Topologies, Network communication media, Concept of Internet
and its applications, Advantages and disadvantages of internet, Internet protocol,
Domain Name System, IP Address, URL, Internet Connectivity, Using WIFI &
Bluetooth on digital devices, WWW and Web browsers, Popular Search Engines,
Navigating through web, Uploading & Downloading, Services on web, Using
Online Services (Banking, Using e- governance websites, Shopping, Streaming,
social networking sites))
Introduction to E-mail (History of Email, E-mail addressing, creating new email
account, Composing & sending email without and with attachments, Email Drafts
and Scheduled sending, Replying & forwarding, Sorting & searching email,
sending email to multiple users, CC and BCC, Email protocol, Signatures
(appended to the end of outgoing messages)
Trading Account
It is prepared after the manufacturing account by the manufacturing industries.
However, in case of trading concerns, it is the first account that is prepared. It
determines the gross profit or gross loss of an entity resulting from the trading
activities. Trading activities refer to the buying and selling activities of a business.
Opening stock, Purchases (less returns) and Direct expenses are written on the debit
side of the Trading account while Closing Stock and Sales (less returns) are written on
the credit side of the Trading account. When the credit side exceeds the debit side, it
shows Gross Profit and if the debit side exceeds the credit side, it shows Gross Loss.
The gross profit or loss is transferred to the Profit and Loss A/c. The closing
entries are as follows:
For Gross Profit
Trading A/c Dr.
To Profit and Loss A/c
For Gross Loss
Profit and Loss A/c Dr.
To Trading A/c
Sample Trading Account
Trading Account
Amou Amou
Particulars Particulars
nt nt
To opening stock – By sales (less returns) –
To purchases (less returns) – By closing stock –
By gross loss (transfer to P
To fuel and power – –
& L A/C)
To wages –
To carriage inwards –
To freight and octroi –
To direct expenses
To gross profit (transfer to P &
–
L A/C)
Profit and Loss Account
The profit and loss account determines the net profit or net loss of the business for
the accounting period. It begins with the balance carried down from the Trading
Account. The revenues and expenses that are indirect or that do not form a part of
the Trading account, form a part of the Profit and Loss Account. When the credit side
of the Profit and Loss Account exceeds the debit side, it shows net profit and vice-
versa.
The net profit or loss is then shown as an addition or deduction respectively, from
the Capital account in the Balance Sheet.
Some expenses that form a part of the Profit and Loss Account are:
1. Sales Tax
2. Provisions
3. Maintenance
4. Administrative Expenses
5. Selling and Distribution Expense
6. Depreciation
7. Freight and carriage on sales
Wages and Salaries
Some revenues that appear on the credit side of the Profit and Loss Account are
Commission received, Discount received, profit obtained on sale of assets, etc.
The business is managed by the head of the family (eldest member) and he is
called Karta. However, all the members hold equal ownership over the property of
an ancestor and they are called as co-parceners.
Partnership, Types of Partnership- A partnership is a business arrangement
where two or more individuals agree to share in the profits or losses of a
business. There are several types of partnerships, including general, limited, and
limited liability partnerships, each with varying levels of liability protection and
management responsibilities.
Types of Partnerships:
General Partnership: This is the most common type, where all partners share
in the management, profits, and liabilities of the business.
Limited Partnership: This type includes both general partners (who manage
the business and have unlimited liability) and limited partners (who invest capital
but have limited liability and minimal control).
Limited Liability Partnership (LLP): LLPs offer liability protection to all
partners, meaning their personal assets are protected from business debts.
Partnership at Will: In this type, any partner can dissolve the partnership at
any time without prior notice.
Key Considerations for Choosing a Partnership Type:
Liability Protection: The level of liability protection for each partner depends
on the type of partnership.
Management Involvement: Some partnerships require active participation
from all partners, while others allow for limited involvement.
Tax Implications: Partnerships generally operate on a pass-through tax system,
meaning profits and losses are passed through to the individual partners'
personal tax returns.
Legal Framework: The Indian Partnership Act of 1932 governs partnerships in
India, outlining the rights, duties, and liabilities of partners.
Goodwill and its importance- Goodwill represents the intangible value of a
company beyond its tangible assets and liabilities, essentially reflecting its
reputation, brand recognition, and customer loyalty. Goodwill is an intangible asset
that represents the excess value a business has over and above the value of its
identifiable assets and liabilities. It's a reflection of the positive reputation, brand
recognition, strong customer base, and other intangible factors that contribute to a
company's success.
Business Valuation: Goodwill is a key factor in determining the overall value of
a company, especially for businesses with strong reputations and loyal customer
bases.
Financial Reporting: In accounting, goodwill is recorded as an intangible asset
and is subject to periodic review to ensure it remains valuable.
Strategic Planning: Understanding a company's goodwill can inform strategic
decisions regarding growth, diversification, and marketing efforts.
Customer Relations: Goodwill is closely tied to customer loyalty, satisfaction,
and brand perception, highlighting its importance in building a successful
business.
Examples: A well-known brand name. Strong customer relationships. Favourable
location.
Proprietary technology or intellectual property. A skilled and loyal workforce.
Companies and type of companies-
A company is a legal entity formed to conduct business, separate from its owners,
with a specific objective. There are various types of companies, primarily classified
by ownership, liability, and purpose. Key distinctions include public vs. private,
limited by shares vs. guarantee, and sole proprietorships vs. partnerships.
Types of Companies Under Company Act,2013.
Public vs. Private:
o Public Companies: Offer shares to the general public through a stock exchange.
o Private Companies: Do not offer shares publicly and are usually closely held.
o Limited by Shares: Liability of shareholders is limited to the amount unpaid on
their shares.
o Limited by Guarantee: Liability of members is limited to a fixed amount as
stipulated in the company's constitution, often used by non-profit
organizations.
Unlimited Companies: Liability of members is unlimited.
Sole Proprietorship: A business owned and run by one person, with the owner
being personally liable for business debts.
Partnership: A business owned and run by two or more individuals, with
partners sharing profits and losses.
One Person Company (OPC): A type of private limited company owned and
controlled by a single person.
Limited Liability Partnership (LLP): A hybrid structure combining features of
partnerships and limited liability companies, offering limited liability to partners.
Government Companies: Companies where the majority shareholding is held by the
government.
Listed Companies: Companies whose shares are traded on a stock exchange.
Section 8 Companies: Non-profit companies formed under the Companies Act, 2013.
Foreign Companies: Companies incorporated outside of a specific jurisdiction but
operating within that jurisdiction.
Limited Liability Companies (LLC): A business structure that offers limited
liability protection to owners, similar to a corporation, but with more flexible
management.
Financial Statement and Analysis- Financial statement analysis is the process of
reviewing and evaluating a company's financial statements (like the income
statement, balance sheet, and cash flow statement) to assess its financial health,
performance, and future prospects, ultimately aiding in informed decision-making.
Reviewing Financial Statements: Financial statement analysis involves a
thorough review of a company's financial records, including the income statement,
balance sheet, and cash flow statement.
Assessing Financial Health: It helps determine a company's profitability, liquidity,
solvency, and overall financial position.
Making Informed Decisions: The insights gained from this analysis enable
investors, creditors, management, and other stakeholders to make informed
decisions about investing, lending, or managing the business.
Identifying Strengths and Weaknesses: Financial statement analysis helps
identify a company's strengths and weaknesses, allowing for strategic planning and
improvement.
Common Techniques & Tools of Analysis
Horizontal Analysis: Comparing financial data across different periods to identify
trends and changes.
Vertical Analysis: Comparing different items within the same financial statement
to assess their relative importance.
Ratio Analysis: Using financial ratios to compare different aspects of a company's
financial performance.
Trend Analysis: Tracking changes in financial data over time to identify patterns
and potential problems.
Purpose of Financial Statement Analysis-
Profitability: Assessing a company's ability to generate profits from its operations.
Liquidity: Evaluating a company's ability to meet its short-term obligations.
Solvency: Determining a company's ability to meet its long-term obligations.
Efficiency: Evaluating how effectively a company uses its resources.
Growth Potential: Assessing a company's ability to grow and expand.
Users of Financial Statement Analysis-Financial statement analysis is used by a
wide array of stakeholders, both internal and external, to assess a company's
financial health and performance, including investors, creditors, management,
employees, regulators, and the general public.
Here's a more detailed breakdown of the key users and their purposes:
Internal Users:
Management: Uses financial statement analysis to track performance, make
operational and strategic decisions, and assess the efficiency of operations.
Employees: May use financial statements to understand the company's financial
stability and assess their job security.
Internal Auditors: Use financial statements to verify compliance and ensure
accuracy in financial reporting.
External Users:
Investors (Current and Potential): Use financial statements to evaluate
investment opportunities, assess risk, and determine the potential for returns.
Creditors (Banks, Suppliers): Analyse financial statements to assess a
company's ability to repay debts and meet obligations.
Lenders: Evaluate a company's ability to repay loans and make informed
lending decisions.
Suppliers/Trade Creditors:
Assess a company's creditworthiness and ability to settle trade obligations.
Customers: May analyse financial statements to assess a company's long-term
viability and ability to full fill promises.
Government and Regulatory Agencies:
Use financial statements for tax purposes, regulatory compliance, and economic
analysis.
The General Public: May use financial statements for research, financial news,
and to understand the financial standing of companies.
Competitors: May analyse a company's financial statements to gain insight into
its strategies and performance.
Analysts: Professionals conducting financial research and analysis for
investment recommendations.
Shareholders: Individuals or entities who own shares in the organization.
Calculation of Accounting Ratios: - Accounting ratios are an excellent tool to
help us determine the financial health of a company. However, they do not show the
whole picture, and we must always be careful to take them into context. For
example, Amazon is a company that values growth over profitability. Thus, if one
were to analyse Amazon’s profitability ratios historically, it might have misleadingly
indicated that the company was under financial stress at times when, in fact, it was
the total opposite.
Amazon always chooses to reinvest its income into growth instead of taking it as
profit. The online giant retailer, in this instance, is practicing a strategic macro
decision that may affect the micro ratio indicators. Applying accounting ratios to
companies requires background knowledge to ensure they are properly interpreted.
Type of Accounting Ratios-
Liquidity Ratios- Liquidity ratio helps in measuring the cash sufficiency of an
enterprise to pay off its short-term liabilities. A High liquidity ratio ensures the
company is in a good position to pay its creditors. The liquid ratio of 2 or more is
considered acceptable. Listed below are some of the commonly used liquidity
ratios:
Current
1 {(Current Assets)/(Current Liabilities)}
Ratio
There are numerous accounting or financial ratio categories available to choose from.
Below are just a few of the more common ratios that any size business can use.
Individual ratios can be grouped in multiple categories as there is overlap in the
categorization.
Profitability Ratios
Profitability ratios, also known as performance ratios, are easy to calculate and are
used to measure company profitability and expense management.
Gross profit ratio, net profit ratio, variable expense ratio, operational efficiency ratio,
cash flow to sales ratio, and return on investment are some of the more common
profitability ratios.
Activity Ratios
An activity ratio, also known as an efficiency ratio, is used to determine how efficiently
a business uses its assets to generate revenues and manages its liabilities. The asset
turnover ratio, accounts receivables turnover ratio, and working capital turnover ratio
are all activity ratios.
Liquidity Ratios
Liquidity ratios are used to measure a company’s ability to pay its current debt without
additional capital and are used frequently with solvency ratios. Common liquidity ratios
include quick ratio, current ratio, net working capital ratio, and days sales outstanding
ratio.
Leverage Ratios
Leverage ratios, also known as solvency ratios, measure a company’s ability to pay
long-term debt and interest. Leverage ratios are often used by banks and financial
institutions, along with potential investors.
The debt-to-equity ratio, debt-to-income ratio, debt service coverage ratio, and equity
multiplier ratio are all leverage ratios.
Market Ratios
Popular with current and potential investors, market ratios look at stock performance
and are usually used to predict stock performance and future earnings. Price-to-
earnings ratio and a loan-to-value ratio are both market ratios.
1. Gross Profit Margin Ratio
Calculating your gross profit margin ratio is easy and is especially useful for businesses
that sell products. A profitability ratio, the gross profit margin shows you how efficiently
product sales are managed, and more importantly, how much money is left over to
cover operating expenses.
To calculate the gross profit margin ratio, you’ll need your total revenue and cost of
goods sold for the period you’re calculating the ratio for. Both numbers can be obtained
from your income statement.
Gross Profit Margin Ratio = (Total Revenue – Cost of Goods Sold) /
Total Revenue
For example, if your total revenue for 2021 was $6,200,000 while your cost of goods
sold was $3,100,000, your ratio calculation would look like this:
($6,200,000 – $3,100,000) / $6,200,000 = 0.50 or 50%
This result means that you earn $.50 for each dollar of net sales. Though like any ratio,
totals vary from industry to industry, anything less than 5% is considered a low gross
profit margin, while anything over 20% is considered good.
For example, HP Inc. has a gross profit margin ratio of 19.8 as of 7-31-2022, which is
down from its previous quarter, where the profit margin was 20.2.
Because the gross profit margin is tracked quarterly, they can see that they are
trending up from their 5-year low, when the gross profit margin was 18.2% in October
of 2018.
2. Net Profit Margin Ratio
Net profit margin builds off of your gross profit margin ratio by measuring your total
revenue that remains after operating expenses have been paid. A profitability ratio, to
calculate the net profit margin ratio, you’ll need your total revenue and total expenses,
which can be found on your income statement.
Net Profit Margin Ratio = Net Income / Revenue
For example, if your business earned $1,100,000 in revenue and had $610,000 in
expenses for the year, you would calculate your net profit margin ratio as follows:
($1,100,000 – $610,000) / $1,100,000 = 0.44 or 44%
This means after all expenses are paid, your business is earning $.44 for each dollar in
revenue. Generally speaking, a net profit margin of 25% or higher is considered good,
although this will vary by industry.
3. Return on Assets (ROA) Ratio
As a business owner, you know that assets should be used to increase profits. A
profitability ratio, the return on assets ratio allows you to see just how well your
company uses your assets to increase profits.
You’ll need your net income from an income statement and your total assets from a
balance sheet to calculate the return on assets ratio.
Return on Assets Ratio = Operating Income / Total Assets
For this example, let’s say that you have a net income of $750,000 and total assets of
$5,100,000. Your calculation would be:
$750,000 / $5,100,000 = 0.14% or 14%
This means that for every dollar invested in assets, you’ve earned $.14.
Generally, an ROA of 5% is considered good, while one over 20% is considered
excellent. However, to get a better idea of company performance, it’s best to compare
your results with those of similar companies.
For example, In January of 2022, Target posted an ROA of 13.2%, up from a 5-year low
in 2019 of 7.2%. In comparison, Walmart’s ROA for the same time frame was 5.8%,
while Costco’s was 9.6%. This information helps businesses see how their ROA
measures against the competition in their own sector.
Return on Investment (ROI) Ratio
Particularly useful for startups, the return on investment or ROI ratio is a profitability
ratio that gives you a look at how much in profits your original investment has
generated.
You’ll need to obtain your total earnings from your income statement and the total of
your initial investment from your balance sheet.
Return on Investment Ratio = Net Return / Cost of Investment
For example, you recently ran an aggressive advertising campaign for a new product.
The cost of the campaign was $35,000. At the end of the campaign, sales for the new
product totaled $280,000, you would calculate your return on investment as follows:
(280,000 – $35,000) / $35,000 = 7
Conventional wisdom states that an ROI of 7% or more is good, while others believe
that an ROI of at least 10% is needed to fund proper business growth.
A return on equity (ROE) ratio can also be calculated, which measures a company’s net
income divided by shareholder’s equity.
5. Quick Ratio
If you’re wondering if your business is able to meet its short-term debt obligations, you
may want to calculate the quick ratio, also known as the acid test ratio. A liquidity ratio,
to get started, you’ll need to obtain your current liquid assets, inventory, and current
liability totals, all found on your balance sheet.
Quick Ratio = (Current Assets – Inventory) / Current Liabilities
For example, your current assets, including accounts receivable, total $7,500,000,
with inventory of $3,500,000 and liabilities of $1,750,000.
Using these numbers, let’s calculate your quick ratio.
Similar to the quick ratio, the current ratio is a liquidity ratio used to determine how
well you’re in position to pay off debt, including interest expense.
First, obtain your asset and liability totals from your balance sheet.
Using the same totals used in the quick ratio, minus inventory, here’s how you would
calculate the current ratio:
If you don’t carry inventory, you can skip this ratio, but for those that do, calculating
the inventory turnover ratio, an activity ratio, can provide good insight into how quickly
your inventory moves.
You’ll need to track down a few numbers before calculating this ratio, including both
beginning and ending inventory values for the period you’re calculating.
For example, if your beginning inventory was $1,600,000 and your ending inventory
was $1,800,000, your average inventory for the year would be $1,700,000. Then find
your cost of goods sold on your income statement, which for this calculation is
$6,500,000 to calculate the inventory turnover ratio.
The accounts payable turnover ratio, a liquidity ratio, is used to determine a company’s
ability to pay vendors and suppliers during a specific period. Used to help determine a
company’s creditworthiness, the accounts payable turnover ratio needs to be
calculated on a regular basis for it to be helpful.
The accounts payable turnover ratio requires several steps for calculation. First, you’ll
have to calculate your average payables balance for the period. Next, you’ll need to
calculate your net purchases. Once you have these two totals, you can calculate your
AP turnover ratio.
Let’s say you have a beginning AP balance of $95,000 and an ending AP balance of
$93,000, and total purchases of $425,000 with returns of $15,000. Your calculations
would be as follows:
($95,000 + $93,000) / 2 = $94,000
This means that in 2021, your business paid your accounts payable balances 4.36
times throughout the year.
With the accounts payable turnover ratio, a higher number is usually better, since a
higher number means you’re paying your AP balances more frequently, though too high
of a number can also mean that credit circumstances are forcing you to pay your bills
early.
If your AP turnover ratio is consistently low, you may want to consider using a procure-
to-pay software like PLANERGY, that can streamline the entire AP process from
purchase order to invoice payment.
9. Accounts Receivable Turnover Ratio
Like the accounts payable turnover ratio, the accounts receivable turnover ratio should
be calculated regularly. This activity ratio measures how quickly you’re collecting
outstanding balances from your credit customers.
To calculate your AR turnover ratio, you’ll need to obtain your total credit sales for the
time period in question, excluding cash sales in your total.
You’ll then need to obtain your beginning and ending accounts receivable balances for
that same period.
Accounts Receivable Turnover Ratio = Net Credit Sales / Average Accounts Receivable
Let’s say for 2021, your business had total sales in the amount of $1,200,000, with
$10,000 of that cash sales. Next, your beginning AR balance as of January 1 is
$474,000 with an ending balance as of December 31 of $470,000. These are your
calculations:
Also known as a debt-to-asset ratio, the debt-to-equity ratio is a leverage ratio that
looks at your current level of debt compared to your total assets to determine financial
leverage.
This debt ratio is used to help determine how much of your assets are financed from
loans compared to owner equity. The debt-to-equity ratio is popular with those looking
to invest in a company since it tells them how well a company can cover its current
amount of debt.
You can calculate this ratio by obtaining total liabilities and total shareholder’s equity,
with both numbers found on your balance sheet.
Debt-to-Equity Ratio = Total Debt / Total Shareholders’ Equity
For example, if your business currently has total liabilities of $1,400,000 and total
shareholder’s equity of $ 2,100,000 you would calculate the debt-to-equity ratio as
follows:
This result means that for every dollar of equity your business has, it currently has
$0.67 in debt. Though a good debt-to-equity ratio can vary from industry to industry,
anything less than 1 is considered good, while a debt-to-equity ratio higher than 2
signals that your company is highly leveraged and a riskier investment.
How to Use Accounting Ratios in Your Business
Accounting or financial ratios can be extremely useful for businesses, provided that the
proper ratio analysis is completed. A ratio calculated only once provides a good
snapshot into your business finances but provides little in the way of useful detail if
they’re not calculated regularly.
Introduction to Taxation-
Meaning
Types of Taxes-Direct and Indirect
Direct Tax- Income Tax, Corporate Tax, Property Tax,
Indirect Tax- GST)
Introduction to Income Tax
Definition and objectives of income taxation
Historical development of income tax laws
Overview of the income tax system in the country
Definition of various terms used in Taxation
Concepts of Income
Different types of income (e.g., salary, wages, interest, dividends, capital gains)
Distinction between revenue and capital receipts
Exempted incomes and tax-free allowances
Residential Status and Scope of Total Income
Determination of residential status for tax purposes
Scope of total income under the Income Tax Act
Taxability of income earned by residents and non-residents
Income from Salary-
Computation of taxable income from salary
Allowances and perquisites taxable under the Income Tax Act
Deductions and exemptions available to salaried individuals
Income from House Property-
Taxation of rental income from house property
Deductions available for interest on housing loan and property taxes paid
Income from Business or Profession-
Taxation of business income for individuals and entities
Computation of business income under different methods (e.g., cash basis, accrual
basis), Allowable deductions and expenses related to business or profession
Income from Capital Gains-
Taxation of capital gains from the sale of assets (e.g., stocks, real estate, securities)
Classification of capital assets and computation of capital gains
Exemptions and rollover provisions available for capital gains
Income from Other Sources-
Taxation of income from other sources not covered under the previous heads (e.g.,
interest income, dividend income, lottery winnings), Deductions and exemptions
available for income from other sources)
Tax Deductions and Exemptions (Overview of deductions available under
various sections of the Income Tax Act (e.g., Section 80C, Section 80D, Section
80G, TDS, Standard Deductions), Exemptions available for certain incomes (e.g.,
agricultural income, income of charitable institutions))
E-Filing of Income Tax Return (ITR) (Meaning of ITR, Types of ITR Forms,
Requirement for filing of ITR online (Income, PAN, Bank account details), Meaning
of e-filing, types of e-filing, Introduction to Income Tax Portal, e-filing process, due
date of filing of income tax return
Tax deducted at Source (TDS) (What Is TDS, who are Diductor & Deducted,
TAN, TDS deducted under different sections, Due dates TDS Payments & Return
filing, issuance of TDS Certificate (Form 16, 16A, 16B), Return filing, Penalty, e-
Filing of TDS Returns, List of forms used in return (Form 24Q, 26Q, 26QB, 27Q)
GST Return (What is GST Return, Overview of the GST system, Objectives and
benefits of GST implementation, Structure of GST in the country (e.g., CGST,
SGST, IGST), Taxable events under GST, Procedure for GST Registration, Concept
of input tax credit under GST, Types of GST Returns (e.g., GSTR-1, GSTR-3B,
GSTR-9), Frequency and due dates for filing GST returns, formats of various GST
return forms, Online Filing process for GST Returns, Penalties and interest for late
filing or incorrect filing of GST returns, Emerging issues and challenges in GST
compliance)