10. LOOPS

There may be a situation when you need to execute a block of code several times. In general, statements are executed sequentially: The first statement in a function is executed first, followed by the second, and so on. Programming languages provide various control structures that allow for more complicated execution paths. A loop statement allows… Read More »

09. C++ switch statement

A switch statement allows a variable to be tested for equality against a list of values. Each value is called a case, and the variable being switched on is checked for each case. Syntax The syntax for a switch statement in C++ is as follows − switch(expression) { case constant-expression : statement(s); break; //optional case constant-expression : statement(s); break;… Read More »

08. AND, OR & NOT

Logical Operators There are following logical operators supported by C++ language. Logical operators are used to determine the logic between variables or values: Operator Name Description Example &&  Logical and Returns true if both statements are true x < 5 &&  x < 10 ||  Logical or Returns true if one of the statements is… Read More »

07. C++ Conditions and If Statements

C++ supports the usual logical conditions from mathematics: Less than: a < b Less than or equal to: a <= b Greater than: a > b Greater than or equal to: a >= b Equal to a == b Not Equal to: a != b You can use these conditions to perform different actions for different decisions. C++ has the following… Read More »

Point of Sale | POS

Point of Sale | POS  Point of Sale transactions may take place at a retail shop, a check-out counter in a shop or any similar location. The various POS equipment used in retail outlets are cash registers, card readers, and barcode scanners. In TallyPrime, you can record a POS invoice in single or multiple payment… Read More »

Detail information of CPU

Alternately referred to as a processor, central processor, or microprocessor, the CPU (pronounced sea-pea-you) is the central processing unit of the computer. A computer’s CPU handles all instructions it receives from hardware and software running on the computer. As an example, the CPU processed the instructions to use a web browser to open and display… Read More »

Sales Order in Tally Prime

Sales Order In your business, if you are following the process of raising a sales order for each sales transaction, you can do the same in TallyPrime. You can record a sales order, raise a delivery note and link it to this order, and then link them to the sales invoice. You can use the… Read More »

Sales Return in TallyPrime

Record Credit Note for Sales Returns and Increase in Sale Value In case you have sold goods and some or all of the goods have been returned by your customer, you will need to account for such sales returns. Once you accept the goods that are returned, before or after receiving the payment for the… Read More »

Sales of Goods and Service

Sales of Goods and Services Every business involves sales of goods or services. The sales transactions in your business may be a simple cash sales, or even sales on credit. For each sales transaction, you will need to keep a record of the items that you sold, the payment that you received, goods returned, and… Read More »

Stock Items

Create Stock Items Gateway of Tally > Create > type or select Stock Item > and press Enter.Alternatively, press Alt+G (Go To) > Create Master > type or select Stock Item > and press Enter. Name & alias: As in other masters, you can specify multiple aliases for the stock item. Under: Select Primary or an existing Stock Group. If you have not created any Stock Group, you can create… Read More »