answersLogoWhite

0

What is td sick and how do you get it?

Updated: 8/18/2019
User Avatar

Wiki User

9y ago

Best Answer

Traveler's diarrhea (TD) is the most common illness affecting travelers. It is defined as three or more unformed stools in 24 hours passed by a traveler. Most causes are unknown but it may be due to E.coli. Be careful where you eat and what you eat. Make sure your food is well cooked and hot and where you eat is clean.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

9y ago

Oh shut the five occupational exposure to blood borne pathogen ad

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is td sick and how do you get it?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you make a GB crossover cable?

{| ! <table border="1" cellpadding="4" cellspacing="0" style="margin: 1em 1em 1em 0; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%; color: #000;"> <tr> <th> Name </th><th> NIC1 </th><th> Color </th><th> NIC2 </th><th> Name </th></tr> <tr> <td> TX+ (BI_DA+) </td><td> 1 </td><td> White/Orange </td><td> 3 </td><td> RX+ (BI_DB+) </td></tr> <tr> <td> TX- (BI_DA-) </td><td> 2 </td><td> Orange </td><td> 6 </td><td> RX- (BI_DB-) </td></tr> <tr> <td> RX+ (BI_DB+) </td><td> 3 </td><td> White/Green </td><td> 1 </td><td> TX+ (BI_DA+) </td></tr> <tr> <td> - (BI_DC+) </td><td> 4 </td><td> Blue </td><td> 7 </td><td> - (BI_DD+) </td></tr> <tr> <td> - (BI_DC-) </td><td> 5 </td><td> White/Blue </td><td> 8 </td><td> - (BI_DD-) </td></tr> <tr> <td> RX- (BI_DB-) </td><td> 6 </td><td> Green </td><td> 2 </td><td> TX- (BI_DA-) </td></tr> <tr> <td> - (BI_DD+) </td><td> 7 </td><td> White/Brown </td><td> 4 </td><td> - (BI_DC+) </td></tr> <tr> <td> - (BI_DD-) </td><td> 8 </td><td> Brown </td><td> 5 </td><td> - (BI_DC-) </td></tr></table> |}


How do you create a student table with shift columnstudent namecoursemobile number in HTML?

Here is the HTML code to create a table to include your content. Repeat the <tr><td>*<.td></tr> section as many times as you like. <table> <th> <td>Shift</td> <td>Student Name</td> <td>Course</td> <td>Mobile Number</td> </th> <tr> <td>*</td> <td>*</td> <td>*</td> <td>*</td> </tr> </table>


Can anyone get me an HTML table layout code?

This is just a smiple example of a table. <table border=3><tr><td>1</td><td>2</td></tr><tr><td>3</td><td>4</td><td>5</td></tr></table>


What is the vertical rule for HTML?

There is a horizontal rule, using the <HR> tag, but there is no corresponding vertical rule tag. What you can do is create a table and set it to show vertical lines only as a border, using the rules attribute of the Table tag, and setting its value to cols. <TABLE border=5 bordercolor=Black Rules=Cols> <CAPTION>Rules=Cols</CAPTION> <TR><TD>January</TD><TD>January</TD><TD>January</TD></TR> <TR><TD>February</TD><TD>February</TD><TD>February</TD></TR> <TR><TD>March</TD><TD>March</TD><TD>March</TD></TR> </TABLE> You can also use the frame attribute in a similar way with its value set to LHS or RHS. <TABLE border=5 bordercolor=Black Frame=RHS> <CAPTION>Frame=RHS</CAPTION> <TR><TD>January</TD><TD>January</TD><TD>January</TD></TR> <TR><TD>February</TD><TD>February</TD><TD>February</TD></TR> <TR><TD>March</TD><TD>March</TD><TD>March</TD></TR> </TABLE> Both of the above examples include borders, but they can be turned on or off, as you require, by setting the border to 0.


How many tds has Tom Brady thrown each year?

2000: 0 TD's 2001: 18 TD's 2002: 28 TD's 2003: 23 TD's 2004: 28 TD's 2005: 26 TD's 2006: 24 TD's 2007: 50 TD's 2008: 0 TD's 2009: 28 TD's 2010: 36 TD's 2011: 39 TD's 2012: 34 TD's 2013: 25 TD's THat's a total of 359 over the course of his 13 seasons in the NFL


What does TD stand for in TD Canada Trust?

TD Stands for Toronto Dominion


Hide age sex and location on myspace?

<style> td td td td {vertical-align:top !important;} td td td td.text div {margin-bottom:-400px;} td td td td.text div {margin-top:-50px;} td.text td.text div {margin-top:0px; margin-bottom:0px;} table table table td.text div img {visibility:hidden;} </style>


What is the name of the of the Boston Celtics arena?

TD North bank Gardens


How do you enter a text in a table?

<table> <tr> <td>Name</td> <td><input type="text"/></td> </tr> </table>


What does td mean in td bank?

TD stands for Toronto-Dominion, the name of the Canadian multinational bank that operates as TD Bank in the United States.


How do you hide playlist link on MySpace?

<style> table.profileInfo * {background-color:transparent;} table.profileInfo td td {letter-spacing:-100px; font-size:0px;} table.profileInfo td td.text, table.profileInfo td td * {font-size:11px; letter-spacing:0px;} table.profileInfo td td a {display:none;} table.profileInfo td td.text * {display:inline;} </style>


How you can create a rounded border on HTML Table?

You can use the code from below example: <TABLE BORDER=5 BORDERCOLOR=BLUE> <TR> <TD>Row1Column1</TD> <TD>Row1Column2</TD> </TR> <TR> <TD>Row2Column1</TD> <TD>Row2Column2</TD> </TR> </TABLE>