answersLogoWhite

0

Syphilis and gonorrhea come to mind.

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

What are two types of STD that cannot be cured?

AIDS nd herpes.


Can an STD be cured after 4 years?

Whether an STD can be cured after 4 years depends on the specific infection. Some STDs, like chlamydia and gonorrhea, can be effectively treated and cured with antibiotics, regardless of how long the infection has been present. However, other STDs, such as HIV and herpes, cannot be cured but can be managed with ongoing treatment. It's important to consult a healthcare provider for proper diagnosis and treatment options.


What STD is treated with metronidazole?

Trichomoniasis is treated with metronidazole.


What are the early symptoms of an std?

The early signs of an std vary depending on which std it is. There may be itching, pain, trouble urinating, a foul smell or any number of other symptoms present to alert you to a problem. Anything abnormal should not be ignored.


Can an STD can be detected in a MRI?

No, STDs (sexually transmitted diseases) cannot be directly detected through an MRI (magnetic resonance imaging) scan. MRI is primarily used for imaging soft tissues and organs and does not identify infections at a cellular or molecular level. STD diagnosis typically involves blood tests, urine tests, or swabs, which are specifically designed to detect the pathogens responsible for these infections. If you suspect an STD, it's important to consult a healthcare professional for appropriate testing.


Is std a really bad disease?

Most are- for some you need to treat for life like Herpes and some there are no cure (AIDS). There are only 1 or 2 that are easily cured-Gohnorrea, crabs, syphylus can be cured but ca be almost fatal by the time symptoms show


What is genital HPV?

Genital HPV is the most common viral STD. Occurs in both men and women. There are > 40 HPV types that effect the genital area of males and females. Hpv types can also infect the mouth and throat through oral sex. Since Genital HPV is a viral STD it can not be cured.


What do you do when your boyfriend cheats on you with a girl who has a STD?

Simply leave him. He isn't good enough for you to begin with if hes cheating on you. Nonetheless he probably caught the STD himself. It would be wise on your behalf to look someplace else.


Are condoms enough for sex protection?

yes they prevent infections like STI'S it used to be called STD's as it is not a disease.


What iMac model is w8905cpvotf?

iMac "Core 2 Duo" 2.66 20-Inch (Early 2009) 2.66 GHz Core 2 Duo (E8135) Intro Date: March 3, 2009 Disc Date: October 20, 2009 Order No: MB417LL/A Model No: A1224 (EMC 2266) Subfamily: Early 2009 Model ID: iMac9,1 Std RAM: 2 GB Std VRAM: 256 MB Std Storage: 320 GB (7200 RPM) Std Optical: 8X DL "SuperDrive"


What are the logical errors in c plus plus programs?

A logical error is an error that violates a class invariant or a logical precondition. Logic errors are typically detected at compile time and typically throw a derivative of std::logic_error exception. By contrast, runtime exceptions throw a derivative of std::runtime_error. Both classes can be found in <stdexcept>. The built-in std::logic_error types are: domain_error, invalid_argument, length_error, out_of_range and future_error.


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