Difference Between Cash Flow Statement and Balance Sheet

Mandalika
Updated on 24-Jul-2020 06:47:18

280 Views

The major differences between cash flow statement and balance sheet are as follows −Cash flow statementsIt is also called a statement of cash flows.It is calculated for short periods (quarterly).International accounting standards 7 (IAS 7).Money coming into the business is termed as cash inflow.Money going out from the business is termed as cash outflow.Money from operations, investments, and other financial activities.It is used by Short term investors.It is classified into three parts.Budgeting and forecasting.It is prepared using a Profit and loss account and balance sheet.Balance sheetIt is a statement of financial position.It is calculated yearly.Generally Accepted Accounting Principle (GAAP), Federal ... Read More

Difference Between Consolidated Balance Sheet and Balance Sheet

Mandalika
Updated on 24-Jul-2020 06:45:28

254 Views

The major differences between consolidate balance sheet and balance sheet are as follows −Consolidate balance sheetIn case of subsidiaries companies, assets and liabilities are not mentioned separately.It is difficult to prepare.It reflects financial position of a firm and its subsidiary.Assets (parent + subsidiary) = liabilities (parent + subsidiary) + shareholders’ equity+ minority interest.It takes lot of time to prepare.It is prepared by only companies holding shares in another company.Balance sheetIn case of subsidiaries, assets and liabilities are mentioned separately.It is easy to prepare.It shows financial position of a firm to stakeholders.Assets = liabilities + shareholders’ equity.It takes less time to ... Read More

Difference Between Balance Sheet and Income Statement

Mandalika
Updated on 24-Jul-2020 06:44:12

188 Views

The major differences between balance sheet and income statement are as follows −Balance sheetIncome statementAssets, liabilities and equity.Helps in deriving liquidity of a firm.Prepared in last day of accounting period.Accounts transferred are not closedBalance will become opening balance for next period.Current ratio, quick ratio, cash ratio, receivable turnover ratio, inventory turnover ratio, payable turnover ratio, return on assets are calculated.It is also named as statement of financial positionIt has narrow scope.Revenues and expenses.Helps to take decisions in any operational or financial issues.Prepared for accounting period.Accounts transferred are closed.Balance is transferred to capital account in balance sheet.Gross margin, operating margin, net ... Read More

Difference Between Trial Balance and Balance Sheet

Mandalika
Updated on 24-Jul-2020 06:42:35

224 Views

The major differences between the trial balance and balance sheet are as follows −Trail balanceBalance sheetOpening stock is considered.Debit and credit.Doesn’t take part in financial statement.Contains nominal, real and personal accounts.Internal useCan be prepared monthly, quarterly, half-yearly and financial period.Prepared in column format.Audit is not necessary.Information of loss or profit is not provided.Not necessary to prepared by law.Prepared before adjustments.Can’t tell true financial position of the firm.General ledger is the source.No thumb rule.Closing stock is considered.Assets and liabilities.Will take part in financial statement.Contains real and personal accounts.External use.Prepared in financial period.Prepared in T-Format.Audit is necessary.Information on loss/profit is provided.Prepared by ... Read More

Find Integer X as Divisor of All Except One Element in Array in C++

Arnab Chakraborty
Updated on 23-Jul-2020 09:13:11

204 Views

ConceptWith respect of a given array of integers, our task is to determine an integer B which isthe divisor of all except for exactly one element in the given array.It should be noted that the GCD of all the elements is not 1.Input arr[] = {8, 16, 4, 24}Output 8 8 is the divisor of all except 4.Input  arr[] = {50, 15, 40, 41}Output  5 5 is the divisor of all except 41.MethodWe create a prefix array A such that position or index i contains the GCD of all the elements from 1 to i. In the similar way, create a suffix array C ... Read More

Find a Permutation that Causes Worst Case of Merge Sort in C

Arnab Chakraborty
Updated on 23-Jul-2020 08:33:31

320 Views

ConceptWith respect of a given set of elements, determine which permutation of these elements would result in worst case of Merge Sort?We know, asymptotically, merge sort always consumes O(n log n) time, but the cases that need more comparisons generally consume more time in practice. Now we basically require determining a permutation of input elements that would lead to largest number of comparisons when sorted implementing a typical Merge Sort algorithm.Example Consider the below set of elements as Sorted array 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26Resultant input array that will result ... Read More

Find a Pair with Given Sum in a Balanced BST in Java

Arnab Chakraborty
Updated on 23-Jul-2020 08:32:23

240 Views

ConceptWith respect of a given Balanced Binary Search Tree and a target sum, we write a function that returns true if there is a pair with sum equals to target sum, otherwise return false. In this case, expected time complexity is O(n) and only O(Logn) extra space can beimplemented. Here, any modification to Binary Search Tree is not permitted.We have to note that height of a Balanced BST is always O(Logn).ExampleMethodAccording to the Brute Force Solution, we consider each pair in BST and verify whether the sum equals to X. The time complexity of this solution will be O(n^2).Now a ... Read More

Find Number for Minimum Sum using XOR in C++

Arnab Chakraborty
Updated on 23-Jul-2020 08:25:24

285 Views

ConceptWith respect of given array Arr[] of non-negative integers, the task is to determine an integer X such that (Arr[0] XOR X) + (Arr[1] XOR X) + … + Arr[n – 1] XOR X is minimum possible.Input Arr[] = {3, 4, 5, 6, 7}Output X = 7, Sum = 10ApproachSo we will verify ‘i’th bit of every number of array in binary representation and consider and count those numbers containing that ‘i’th bit set to ‘1’ because these set bits will contribute to maximize the sum instead of minimize. As a result of this, we have to build this set ‘i’th bit ... Read More

Fill Polygon Function in C

Arnab Chakraborty
Updated on 23-Jul-2020 08:18:25

692 Views

ConceptNow the header file graphics.h contains fillpoly() function which is implemented to draw and fill a polygon such as triangle, rectangle, pentagon, hexagon etc. So this function require same arguments as drawpoly().Syntaxvoid fillpoly( int number, int *polypoints );In this case, number indicates (n + 1) number of points where, n is the number of vertices in a polygon and polypoints points to a sequence of (n*2) integers.Input arr[] = {320, 150, 400, 250, 250, 350, 320, 150};Output Explanation So the declaration of fillpoly() contains two arguments: number specifies (n + 1) number of points where n is indicated as the number of vertices ... Read More

Check If a Number Is Primorial Prime in C++

Arnab Chakraborty
Updated on 23-Jul-2020 08:06:23

382 Views

ConceptWith respect of given positive number n, the task is to verify if n is a primorial prime number or not. We have to print ‘YES’ if n is a primorial prime number otherwise print ‘NO.Primorial Prime − With respect of Mathematics, a Primorial prime is defined as a prime number of the form pN# + 1 or pN# – 1 , where pN# is the primorial of pN such that the product of first N prime numbers.Input − n = 7Output − YES7 is Primorial prime of the form pN + 1 for N=2, Primorial is 2*3 = 6 ... Read More

Advertisements