answersLogoWhite

0

What would the studies of STD be?

User Avatar

Anonymous

11y ago
Updated: 8/21/2019

I don't know if there's a real term, but a good guess would be something like venereal pathology.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

Can 8th std student get admission in a university to continue his further studies?

yes, but it would be hard to that.


Why would one be interested in Wet Platinum products?

Wet Platinum products provide information about STD. Studies show that people who use this lubricant are three times more likely to contract an STD than those who didn't use a lubricant during sexual practice. Doctors can use this product to study STDs.


What percentage of people have pubic lice?

Because pubic lice are not a reportable STD, and over-the-counter treatment is available, good statistics are not available. Some studies note about 3% of STD clinic patients have pubic lice.


Biology 11 laboratory manual Pasadena city college?

I want the biology laboratory manual of std XI for Guidance in my studies.


If you have had a STD for 4years what would happen to you or your body?

It depends on the STD. All diseases usually get worse as time goes on, seek medical treatment.


What is the C plus plus directive that allows you to refer to classes in a namespace like STD?

A quick and simple way to do this would be to add 'std::' directly in front of the data type that requires it. For example: a vector data type, without the line of code 'using namespace std' would look like this: 'std::vector' (without the inverted commas).


What are green studies?

"Green studies" would be a current metaphor for environmental studies.


What is the difference between a plus plus and plus plus a?

a++ returns the value of a and then increments it ++a increments a and then returns the value so the following code: a = 1; std::cout << a++ std::cout << ++a std::cout << a would output 133


What would happen if you swallowed sperm?

Nothing. You could get an STD if he had one.


When should you tell your partner about an std?

i would tell him right away ...


What would cause a big rash around your lips?

std or dryness


How do you use sin in c plus plus?

#include<iostream> int main() { std::cout << "sin(1) = " << std::sin(1.0) << std::endl; std::cout << "cos(1) = " << std::cos(1.0) << std::endl; std::cout << "tan(1) = " << std::tan(1.0) << std::endl; std::cout << "asin(1) = " << std::asin(1.0) << std::endl; std::cout << "acos(1) = " << std::acos(1.0) << std::endl; std::cout << "atan(1) = " << std::atan(1.0) << std::endl; } Output: sin(1) = 0.841471 cos(1) = 0.540302 tan(1) = 1.55741 asin(1) = 1.5708 acos(1) = 0 atan(1) = 0.785398