Posts

Cash flow , Interest and Equivalence

      CASH FLOW Out of all current assets cash is most liquid and important component . Cash is require4d for conducting central business activities of any firm . Other current assets such as debtors , bill receivable , stock etc, ultimately converted into cash within a very short time hence require proper management for its proper control. The term cash include3s not only currency but also near cash assets such as marketable securities cash at bank , cheques and demand deposit in bank. Every business entity(firm) is continuously engaged in receiving and making cash payments , termed "Cash flow". The flows reflect and determine the firm's financial health. Cashflow is a movement of money into or out of a business project or financial product. It is usually measured for a specific time period. Cash flow statement shows the effort of all cash transactions over a period of time. Cashflow statement may be defined as a logical and systematic statement which shows the change i...

Queue

Image
Data structure : Introduction to Queue and it applications . In the previous topic we talked about stack and its uses before learning about the concepts of queue it is requested as  prerequisite  to learn or do a quick recap about the concepts of stack. For learning the concepts of queue easily. link for the concepts of stack :-    stack In this blog we will be taking about queue , its implementations using using data structure in C language. for the programming environment Visual  Studio Code ( VS Code ) is used . Above is an example of Queue in real life . What is Queue ? Queue is a linear data structure which follows FIFO ( first in first out )  methodology ( i.e. the element that is stored at the first will leave at first ) . Unlike stack Queue has two ways , one for insertion (sometimes commonly known as enqueue) and another for deletion (sometimes commonly called dequeue)  . How is Queue Repesented  ? As we had mentioned prior to this th...

Use canva like a pro

 What is CANVA ? Canva is a simply a online graphic designing platform where we can make posters , logo designing , posters , documentation etc. The app has already have custom templates which are free to use we  can use for our own designing. We can dowload it easily from playstore and applestore and either you can use it online also.  

STACK

Image
DATA STRUCTURES :  Introduction to Stacks   "so we all have learned about the concepts of array" but have you heard of stack ?  I n this blog post we will be learning about stack , see the ways in which stack can be implemented and have a thorough introduction to stack data structure using c programming language . The environments used are turbo c++ (discontinued) and Visual studio code  . Before going into stack data structures, you should have good understanding of array , linked list and pointers because without learning these modules we cannot implement the data structures like stack ,queue, tree etc.. What is STACK ? Stack is linear data structure which follow lifo method (Last In First Out). In stack there is only one end for inserting data and deleting data . Inserting data is called push operation , deleting or removing data is called pop o...