answersLogoWhite

0


Best Answer

BNF = British National Formulary.

It provides guidance on prescribing, dispensing and administering medicines.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the B N F and what is it used for?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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(); }


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 are some seven letter words with 1st letter B and 5th letter F and 7th letter N?

According to SOWPODS (the combination of Scrabble dictionaries used around the world) there are 2 words with the pattern B---F-N. That is, seven letter words with 1st letter B and 5th letter F and 7th letter N. In alphabetical order, they are: beaufin bluefin


What are some seven letter words with 3rd letter B and 5th letter F and 7th letter N?

According to SOWPODS (the combination of Scrabble dictionaries used around the world) there are 1 words with the pattern --B-F-N. That is, seven letter words with 3rd letter B and 5th letter F and 7th letter N. In alphabetical order, they are: lobefin


What are some nine letter words with 3rd letter F and 5th letter B and 8th letter N?

According to SOWPODS (the combination of Scrabble dictionaries used around the world) there are 2 words with the pattern --F-B--N-. That is, nine letter words with 3rd letter F and 5th letter B and 8th letter N. In alphabetical order, they are: infobahns softbound


What are some nine letter words with 1st letter F and 4th letter B and 9th letter N?

According to SOWPODS (the combination of Scrabble dictionaries used around the world) there are 1 words with the pattern F--B----N. That is, nine letter words with 1st letter F and 4th letter B and 9th letter N. In alphabetical order, they are: forbidden


What are some eight letter words with 1st letter F and 3rd letter B and 7th letter N?

According to SOWPODS (the combination of Scrabble dictionaries used around the world) there are 2 words with the pattern F-B---N-. That is, eight letter words with 1st letter F and 3rd letter B and 7th letter N. In alphabetical order, they are: fibranne fibroins


What are some seven letter words with 1st letter B and 3rd letter N and 5th letter F and 6th letter F?

According to SOWPODS (the combination of Scrabble dictionaries used around the world) there are 1 words with the pattern B-N-FF-. That is, seven letter words with 1st letter B and 3rd letter N and 5th letter F and 6th letter F. In alphabetical order, they are: banoffi


What are some seven letter words with 1st letter F and 4th letter B and 6th letter N?

According to SOWPODS (the combination of Scrabble dictionaries used around the world) there are 4 words with the pattern F--B-N-. That is, seven letter words with 1st letter F and 4th letter B and 6th letter N. In alphabetical order, they are: fibbing flybane fobbing fubbing


What are some nine letter words with 2nd letter N and 5th letter F and 7th letter B?

According to SOWPODS (the combination of Scrabble dictionaries used around the world) there are 3 words with the pattern -N--F-B--. That is, nine letter words with 2nd letter N and 5th letter F and 7th letter B. In alphabetical order, they are: ineffable ineffably sniffable


What are some nine letter words with 1st letter F and 5th letter B and 7th letter N?

According to SOWPODS (the combination of Scrabble dictionaries used around the world) there are 3 words with the pattern F---B-N--. That is, nine letter words with 1st letter F and 5th letter B and 7th letter N. In alphabetical order, they are: fahlbands fishbones fleabanes


What is the integral of the derivative with respect to x of the function f multiplied by the quantity a times f plus b raised to the power of n with respect to x?

∫ f'(x)(af(x) + b)n dx = (af(x) + b)n + 1/[a(n + 1)] + C C is the constant of integration.