Resistant starches, a unique class of carbohydrates, go by during the small intestine undigested and after that carry on to the large intestine where they undergo fermentation. The by-products of this fermentation method contain compounds called short-chain fatty acids(SCFA). One of these SCFAs is butyric acid, which is a compound that holds the health and curative of cells in the small and great intestine. Many research studies have demonstrated that butyric acid impedes the means of cancer cells to propagate in the colon, and so is protective of colon cancer. SCFAs have as well been related with helping to stay healthy blood lipid and sugar levels.
Wednesday, June 18, 2008
What is meant by Resistant Starches?
Tuesday, June 10, 2008
What is Procedural programming?
Procedural programming can sometimes be used as a synonym for very important programming (specifying the steps the program have to take to reach the desired state), however can as well refer (as in this article) to a programming paradigm based upon the thought of the procedure call. Procedures, as well known as routines, subroutines, methods, or functions (not to be confused with mathematical functions, but like those used in functional programming) simply include a series of computational steps to be carried out. Any given procedure may be called at any point during a program's execution, including by other procedures or by itself.
Procedural programming is sometime a better option than simple sequential or unstructured programming in many situations which involve moderate complexity or which need important ease of maintainability.
Possible benefits:
* The ability to use again the same code at different places in the program without copying it.
* An easier method to keep track of program flow than a collection of "GOTO" or "JUMP" statements (which can turn a large, complex program into spaghetti code).
* The capability to be strongly modular or structured.