by admin | May 24, 2015 | sem1
Visualization concepts Visualization or visualisation (see spelling differences) is any technique for creating images, diagrams, or animations to communicate a message. Visualization through visual imagery has been an effective way to communicate both abstract and...
by admin | May 24, 2015 | sem1
Anionic and Cationic Polymerization Ionic polymerization is faster than the free radical polymerization.Ionic polymerization is initiated by a positive ion or a negative ion.Depending upon the nature of ions the polymerization takes place in two ways as Anionic and...
by admin | May 24, 2015 | sem1
Polymerization is a process of reacting monomer molecules together in a chemical reaction to form polymer chains or three-dimensional networks.There are many forms of polymerization and different systems exist to categorize them. Mechanism of Addition Polymerization...
by admin | May 24, 2015 | sem1
Degree of Polymerization The number of repeating units (n) in a polymer chain is known as the degree of polymerization. It is represented by the following relationship. Degree of polymerization (n) = Molecular weight of the polymeric network / Molecular weight of the...
by admin | May 23, 2015 | cse
switch statement in c 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 switch case. Syntax: The syntax for a switch statement in C programming...
by admin | May 23, 2015 | cse
nested if statement in c It is always legal in C programming to nest if-else statements, which means you can use one if or else if statement inside another if or else if statement(s). Syntax: The syntax for a nested if statement is as follows: if( boolean_expression...