A loop is a sequence of instruction s that is continually repeated until a certain condition is reached. Typically, a certain process is done, such as getting an item of data and changing it, and then some condition is checked such as whether a counter has reached a prescribed number. In the Blogger Language , a loop is implemented using the tag &… Show Full Article»

An arithmetic operator is a mathematical function that takes numerical values as their operands and return a single numerical value. The Blogger arithmetic operators are addition + , subtraction - , multiplication * , division / and modulo % . Also plus operator + is Concatenate operator that can joint two expression. Show Full Article»

A comparison operator is a binary operator that takes two operands whose values are being compared. Comparison operators are used in conditional statements,  where the result of the comparison decide whether execution should proceed. They form the key to program flow control, known as conditional processing. The result returns a Boolean value. Show Full Article»

?: or ternary condition is the only operator that takes three argument. Like the Selectors, the first is a comparison argument, the second is the result upon a true comparison, and the third is the result upon a false comparison. This operator is frequently used as a shortcut for the if / else statement. An expression Baz ? Foo : Bar will ev… Show Full Article»

Cascading Style Sheets or CSS, in short, is a style sheet language used for describing the presentation of a document written in a markup language like HTML. At least, we as bloggers need to have a bit of knowledge about CSS and HTML. Now we will briefly describe changing the appearance of our blog design, whether it changes the position of a bl… Show Full Article»
Page 3 of 5
12345
About
BloggerBasics101 is licensed under a Creative Commons Attribution-NonCommercial 3.0 Unported License.
Misc
If you do what you always did, you will get what you always got. -Anonymous