answersLogoWhite

0

It depends. If your having anal sex with yourself then no unless you had touched a persons genitals and did not wash your hands. If you have anal sex with someone and do not have a condom then yes you can get an STD

User Avatar

Wiki User

9y ago

What else can I help you with?

Related Questions

What are sties that don't hurt around the anal opening?

Probably anal warts - an STD. See a doctor.


What is anax junius?

It is an STD that you can get from having too much anal sex with someone who has chlamydia.


Can you give a girl a STD if you do it in tha butt?

STD transmission occurs from any type of sex with an infected person including genital, oral, anal, and sex toys.


Can boys stick their penis in another boys butt?

Yes - It's called Anal sex. While taboo in many societies it remains illegal in some countries. It should be noted however, that anal sex is one of the higher risked activities for the transmission of HIV and other STD's. Condoms, lubricant and care should always be used when engaging in anal intercourse.


For the last few days you are facing a problemafter urinating you find a drop or two of white fluid coming out you are very worried you are 21 yrs old and is physically fitIs it to anal sinus?

Anal sinus? Had sex with a new partner recently? May be an STD, regardless, go to a doctor and get checked out.


How can you totally eliminate the risk of pregnancy or contracting an STD?

Just don't have any sex. No vaginal, oral, or anal. If you are a woman and you masturbate, then make sure to wash yourself up WELL after you finish.


What other types of stuff you can do besides sex?

You can have anal and oral sex of which you cannot get pregnant from. True ... but if either party has STD's or is HIV positive, the other person can still catch those deadly diseases.


Can I be the anal bottom for 2 tops at the same time?

This can be done, but you would put yourself in extreme danger. There is a very high risk of injury to anal and rectal tissue, along with the threat of STD transmission that goes along with that. Perhaps people who have had a lot of experience over a number of years have a reduced risk of this kind of tissue injury.


Does back intercourse have bad effect on health?

It can if done without the proper protection. If you are referring to anal intercourse, if performed unprotected, this can lead to catching STDs. This is also a way to get a urinary tract infection. Anal intercourse, if performed, should always be done with a latex or polyurethane condom to minimize STD risk and protect both people involved.


What happens when sperm enters the body through anal passage?

Sperm entering the body through the anal passage does not result in pregnancy, as the anus is not connected to the reproductive organs needed for fertilization. However, there is a risk of sexually transmitted infections if proper protection is not used.


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


How do you split a string in delimit c plus plus?

#include<iostream> #include<vector> #include<string> std::vector<std::string> parse (const std::string& s, const char delim) { std::vector<std::string> result {}; auto start = 0U; auto end = s.find (delim); while (end != s.npos) { result.push_back (s.substr(start, end - start)); start = ++end; end = s.find (delim, start); } result.push_back (s.substr (start, s.npos - start)); return result; } std::vector<std::string> parse (const std::string& s, const std::string& delim) { std::vector<std::string> result {}; auto start = 0U; auto end = s.find (delim); while (end != s.npos) { result.push_back (s.substr(start, end - start)); start = end + delim.length(); end = s.find (delim, start); } result.push_back (s.substr (start, s.npos - start)); return result; } int main() { std::string str1 = "This is a string that will be parsed by a single-space delimiter."; std::string str2 = "This==is==a==string==that==will==be==parsed==by==equal==operator."; std::string str3 = "This string has no delimiter."; std::cout << str1 << std::endl; std::vector<std::string> v1 = parse (str1, ' '); for (auto i : v1 ) std::cout << i << std::endl; std::cout << std::endl; std::cout << str2 << std::endl; std::vector<std::string> v2 = parse (str2, "=="); for (auto i : v2 ) std::cout << i << std::endl; std::cout << std::endl; std::cout << str3 << std::endl; std::vector<std::string> v3 = parse (str3, '\\'); for (auto i : v3 ) std::cout << i << std::endl; std::cout << std::endl; }