answersLogoWhite

0

Terramicina P is an antibiotic ointment containing oxytetracycline that is used topically to treat skin infections such as acne, wounds, and burns. It works by inhibiting bacterial protein synthesis, thereby killing the bacteria causing the infection. It should only be used as directed by a healthcare professional.

User Avatar

AnswerBot

1y ago

What else can I help you with?

Related Questions

What is Afghanistan land mass?

Mostof the land is used for farming tho very little of the land is arable. The rest is used for housing etc.


The three most used power formula are?

I=P/E ExI=P P/I=E


What is p used for?

p is a letter it is used to spell words. If there was no p we would be going to _izzeria to eat _izza and that just doesn't sound a_ _etizing.


What are the ingredients of the medicines used to treat stomach acid and indigestion?

h p [ u#j p#p;['['[[''['[['['['[''##';';'[;l[;p;[;[;[[;[;


Whats the value of a used savage 240 series p?

Value of used savage 240 series p?


What is potassium k used for?

its used for chemicals :P


What are centimeters used for measuring?

<p>To measure length. Used in many fields e.g. making clothes, furnitures etc<p>


What types of products are made from P Tubes?

There are many products made from P tubes. there are Ibm products that are used everyday and also P tubes from vacuums that help clean houses. P tubes are also used for LED tubes.


What varieties of psyllium are used in medicine?

The most common species producing seed for medicinal use, in addition to P. psyllium, are P. afra, P. isphagula, P. ovata, and P. indica.


When were dollar signs first used to represent money?

The exact origin of the dollar sign is difficult to pin down, but it is believed to have developed from the formally used p^s (p superscript s, or p with a little s above it) that was used for pesos. Over time, the P and S merged together forming the $, leading it to be used as a symbol representing currency for the Americas.


What is a legal and commonly used trap - bell or S or drum or P trap?

P trap


How the pointers is used with arrays?

A pointer can point to any element of the array, the array itself is a constant pointer. Eg.: int a[10], *p; p= &a[3]; p= a; /* the same as p= &a[0] */ a[2]= *p; a[3]= p[4]; a= p; /* WRONG! */