ii)Transition metals and their compounds show catalytic activities because of Variable or multiple oxidation states, ability to form complexes, they provide large surface area for adsorption.
0 Thanks
2 Answers
9 Claps
0 Comments

5 Claps
0 Comments

The Wheatstone bridge is not suitable for measuring very low resistance because it is based on a ratio of two resistances, and the resolution of the bridge decreases as the ratio approaches 1. This means that the Wheatstone bridge is not accurate enough to measure very small changes in resistance.
1 Thanks
2 Answers

#include<stdio.h>
#include<conio.h>
#include<string.h>
int main() {
int i, nextTerm;
int t1 = 2, t2 = 2;
nextTerm = t1+t2;
printf("%d, %d, ", t1, t2);
for (i = 3; i <= 10; ++i) {
printf("%d, ", nextTerm);
t1 = t2;
t2 = nextTerm;
nextTerm = t1 + t2;
}
return 0;
}
2 Thanks
2 Answers

5 Claps
1 Comments