answersLogoWhite

0

if tax is paid then it will be shown in cash flow statement otherwise it will not shown in cash flow statement.

User Avatar

Wiki User

10y ago

What else can I help you with?

Continue Learning about Accounting

Can we prepare financial statements using cost accounting?

Cost accounting primarily focuses on capturing and analyzing cost data to aid in internal decision-making, rather than preparing financial statements. However, the information derived from cost accounting can inform financial statements by providing insights into costs and profitability. While cost accounting is essential for managerial purposes, financial statements are typically prepared using financial accounting principles, adhering to standardized guidelines like GAAP or IFRS. Thus, while they can complement each other, cost accounting alone does not suffice for preparing formal financial statements.


What are five source documents used in preparing cash book?

Five source documents commonly used in preparing a cash book include cash receipts, cash payment vouchers, bank deposit slips, bank statements, and invoices. Cash receipts record incoming cash transactions, while cash payment vouchers document outgoing cash payments. Bank deposit slips provide evidence of cash deposited in the bank, and bank statements summarize all transactions processed by the bank. Invoices serve as proof of sales or services rendered, aiding in the accurate recording of cash flows.


How do you calculate accruals and non-cash transactions in preparing statement of cash flows?

non cash transaction are adjusted while preparing for cash flow using indirect method.


Is there a charge for bank statements?

Whether there is a charge for bank statements depends on the bank and the type of account you hold. Many banks provide electronic statements for free, while some may charge a fee for paper statements or for additional copies. It's best to check your bank's fee schedule or contact customer service to understand any potential charges related to statements.


What are two kinds of personal financial documents?

Two common types of personal financial documents are bank statements and tax returns. Bank statements provide a summary of an individual's transactions and account balances over a specific period, while tax returns detail income, deductions, and tax liabilities for a given year, serving as a crucial record for financial planning and reporting to tax authorities. Both documents are essential for tracking financial health and preparing for future financial decisions.

Related Questions

Can we prepare financial statements using cost accounting?

Cost accounting primarily focuses on capturing and analyzing cost data to aid in internal decision-making, rather than preparing financial statements. However, the information derived from cost accounting can inform financial statements by providing insights into costs and profitability. While cost accounting is essential for managerial purposes, financial statements are typically prepared using financial accounting principles, adhering to standardized guidelines like GAAP or IFRS. Thus, while they can complement each other, cost accounting alone does not suffice for preparing formal financial statements.


Is glucose used while preparing liquors?

while preparing liquors what is not added


How to treat interest on capital while preparing balance sheet?

Interest on capital is added on the capital account in balance sheet as interest incurred from capital is based on business entity assumption.


How did U.S support the war effort while it was preparing for full military participation in world war 2?

Americans supported the country in many ways. Women especially worked in industries while the men to war.


Why is it important to prepare the financial statements prior to the closing activities?

It'd be far better to end-up with the current transactions and the related financial details while starting over the new one. And with that, the financial statements would do so the needed in order the tax returns, payroll information, etc is vivid for the business to submit whenever required. This would be the reason for preparing the statements.


What are iterative statements?

An iterative statement is a looping statement, such as a 'for', 'while', or 'do-while' statement. They cause statements to be repeated (iterated) multiple times.


What is the difference between do while and while?

In while, from the very first term, every time, the related conditions in while will be checked and then the statements will execute. But, in do-while, all the statements under do will execute once and then compiler will check the while condition. Therefore, only first time only statements will execute without checking the conditions in while, but not from the second term repetition. written by DILSHAN MADUSANKA dilshanmadusanka@yahoo.com


What are the statements that appear between the while and the end while clauses called?

Body of the loop


What are eterative statements?

Iterative statements are:while (expr) statementfor (expr; expr; expr) statementdo statement while (expr);


You should separate food while preparing it so you do not cross?

Contaminate


Explain control instructions in c plus plus?

Control instructions are instructions that alter the flow of execution. In C++ this include if, if-else statements, switch-case statements and the conditional ternary operator (?:), as well as loop structures (for, while, do-while) and procedural goto statements.


What is a while?

The while keyword is used to create a while loop, which tests a boolean expression and executes the block of statements associated with the loop.If the expression evaluates to true, this continues until the expression evaluates to false.This keyword can also be used to create a do-while loop.Syntax:do{statements;}while(condition);