answersLogoWhite

0


Best Answer

If we count 10 as 1 & 0, 11 as 1 & 1 and 12 as 1 & 2, then there are fifteen individual 'numbers' on the face of a standard clock.

So, 15 N on a C F = 15 Numbers on a Clock Face

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does 15 N on a C F mean?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

15 N on a C F?

15 numbers on a clock face


What does this mean 3 N of N in a P C F?

what is the full meaning of N.N.P.C.?


What is a c program to implement trapezoidal and Simpson's methods?

ITS EASY...TRY THIS OUT..TRAPEZOIDAL METHOD#include#include#includefloat valcal(float x){return (x*x*x);}int main(){float a,b,h,c,I;int n,i;printf("THE TRAPEZOIDAL RULE:\n");printf("---------------------");printf("\n\n\nEnter the two limits and the no. of divisions:\n");scanf("%f %f %d",&a, &b, &n);h=(b-a)/n;//printf("\nVALUE of h: %f\n", h);c=a;I=valcal(a)+valcal(b);//printf("\nVALUE FOR a: %f\n", valcal(a));//printf("\nVALUE FOR b: %f\n", valcal(b));for(i=1;i=b){printf("\n\nc>b\n\n");break;}//printf("\nVALUE FOR %f: is %f\n",c, valcal(c));I=I+(2*valcal(c));//printf("\nI right now is %f", I);}printf("\n\n\nThe integration of x*x*x is: %f",(h*I)/2);printf("\n\n\n");system("pause");}SIMPSON'S 1/3RD METHOD#include#include#includefloat valcal(float x){return (1/(1+x*x));}int main(){float a,b,h,c,I;int n,i;printf("THE SIMPSON'S ONE-THIRD RULE:\n");printf("------------------------------");printf("\n\n\nEnter the two limits and the no. of divisions:\n");scanf("%f %f %d",&a, &b, &n);h=(b-a)/n;//printf("\nVALUE of h: %f\n", h);c=a;I=valcal(a)+valcal(b);//printf("\nVALUE FOR a: %f\n", valcal(a));//printf("\nVALUE FOR b: %f\n", valcal(b));for(i=1;ib){printf("\n\nc>b\n\n");break;}//printf("\nVALUE FOR %f: is %f\n",c, valcal(c));if(i%2==0)I=I+(2*valcal(c));elseI=I+4*valcal(c);//printf("\nI right now is %f", I);}printf("\n\n\nThe integration of x*x*x is: %f",(h*I)/3);printf("\n\n\n");system("pause");}NEED MORE HELP...MAIL ME YOUR PROB... SEE YA


What is the difference between a fraction and a multiple?

Given an integer n, an integer f is a fraction of n if f goes into n evenly. That is, n/f is an integer or n = f*x for some integer x.m is a multiple of n if m = n*c for some integer c.


Change 0 Celsius to Fahrenheit please?

0°C = 32°F. Both indicate the temperature at which, under standard conditions, water freezes. Similarly, 100°C = 212°F, both indicating the temperature at which, under standard conditions, water boils. To convert n°C to Fahrenheit, n°C = [ 32 + (9/5) X n ]°F. To convert n°F to centigrade, n°F = [ (n - 32) X (5/9) ]°C.


Mini project in c language with coding?

C Program to find factorial of a numberSimple C Programint main() {int n,i,f=1;printf("enter any num \n");scanf("%d",&n);for(i=1;i


What are the musical notes to play empire state of mind on keyboard?

T| Capitals on the notes signify sharps (the black keys) A| B| Also see my Alicia Keys tab of the Empire State of Mind 2 for the chords! N| PEACE! A| ~Steph~ B| B| E| R5|F-F-F----- R| R4|F-F-F----- .| L3|F-F-F-F--- C| L3|----C----- O| L2|b-b---F--- M| -| R6|F-F-F---F---F---F-F-F--- T| R6|C-C-C---C---C---C-C-C--- A| R5|A-A-A---A---A---A-A-A--- B| N| L3|F-f----- A| L3|C-C----- B| L2|----b--- B| L2|----F--- E| L1|----b--- R| .| R6|F-F-F---F---F---F-F-F--- C| R6|C-C-C---C---C---C-C-C--- O| R5|A-A-A---A---A---A-A-A--- M| -| L3|F-F-F--- T| L3|--C----- A| L2|b---F--- B| N| R6|F-F-F---F---F---F-F-F--- A| R6|C-C-C---C---C---C-C-C--- B| R5|A-A-A---A---A---A-A-A--- B| E| L3|F-f----- R| L3|C-C----- .| L2|----b--- C| L2|----F--- O| L1|----b---


Which one of the following bonds is the most polar C H C N C O C F?

C-F will be the most polar because of the four C and F have the largest difference in electronegativity.


How do you make a calculator in code block by using c?

#include<stdio.h> #include<conio.h> int main(void) { float a,b,c=0, d=0, e=0,f=0; printf("Please enter two numbers:\n"); scanf("%f %f", &a, &b); c=a+b; d=a-b; e=a*b; f=a/b; printf("The sum of %f and %f is :%f\n", a,b,c); printf("The subtraction of %f and %f is :%f\n", a,b,d); printf("The multiplication of %f and %f is :%f\n", a,b,e); printf("The division of %f by %f is :%f\n",a,b,f); getch(); }


How do you write a c program to calculate mean variance and standard deviation?

Program in CHere is a program in C to calculate mean variance and standard deviation: #include#includevoid main(){float a[50],sum=0,vsum=0,mean,variance,sd;int n,i;printf("Enter the no of valus");scanf("%d",&n);printf("Enter the no of valus");for(i=0;i


What is the rule to the pattern 1 3 7 15 31?

its Mersenne's Number f(n)= (2^n) -1 where n is the number of sequence. so f(1) = 1 f(2) = 3 f(3) = 7 f(4) = 15 f(5) = 31 ...


How can you improve self image?

c o n f i d e n c e is key!