Mechanism of Addition Polymerization

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...

Degree of Polymerization

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...

switch statement in c

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...

nested if statement in c

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...

if else statement in c

if else statement in c An if statement can be followed by an optional else statement, which executes when the boolean expression is false. Syntax: The syntax of an if…else statement in C programming language is: if(boolean_expression) { /* statement(s) will...