in science k stands for kelvin, the temperature system that starts from absolute zero
K does not equal kelvin... K stands for Kelvin. In different applications it means different constants, such as Boltzmann constant or a spring constant.
Chat with our AI personalities
Its suppose to say k greater than or equal to 3 k greater than or equal to 6
K Factor determines the type of crude whether it is parrafinic, Napthenic or aromtic. If K factor is equal or more than 12.5 means paraffinic and if equal or less than 10 means aromatic and in between napthenic
i think it should be equal. ab ap khud btao k diploma students kahan jaein
A lower-case 'k' stands for kilo which is 1000. An upper-case 'M' stands for mega which is 1 000 000. so 150 000 does not equal 1 500 000.
//the following code will help you to write the program for(i=n-1, j=0; i > 0; i--, j++) //n is the order of the square matrix { for(k=j; k < i; k++) printf("%d ", a[j][k]); for(k=j; k < i; k++) printf("%d ", a[k][i]); for(k=i; k > j; k--) printf("%d ", a[i][k]); for(k=i; k > j; k--) printf("%d ", a[k][j]); } m= (n-1)/2; //calculate the position of the middle element if (n% 2 == 1) printf("%d", a[m][m]);//to print the middle element also //9809752937(udanesh)