answersLogoWhite

0

ATA = Actual Time ArrivalSTD =StandardTime Departure

ATD = Actual Time Departure



User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What does STD mean to everyone?

std means sexually transmitted disease.


What is the mean of STD and idd calls?

std means standard call and idd means international direct dial


Is there a comparison chart for condoms?

Well I am pretty sure that there is a comparison chart for condoms. I mean u would want to know as a man or women which brand is better to use correct. You want something that will prevent you from getting STD'S and so on. Unfortunately it doesn't protect a 100% against STD'S. So it is better to be safe then sorry.


How long does zithromax stay in your body after taking a singe dose?

Zithromax contains azithromycin which is a macrolide antibiotic and is used for bacterial infections including STD bacterial infection. In STD its dose is 4 tablets once only. Because 4 tablets of Zithromax are much higher than the minimum inhibitory concentration for STD bacteria. These 4 tablets are sufficient to treat STD because the terminal half life of Zithromax is 68 hours and complete drug elimination will take place in about 150 hours.


Found a white oblong pill with imprint w961 or 169m?

It can be Azithromycin, it is a antibiotic, usually given in a dose of 5. For various infections such as STD ''Clamydia'' etc.


What does it mean when you bleeding from you vaguna and you skin peels?

my girlfriend got a call from her cousin her cousin asked what dose it mean when you bleeding from you vagina and you skin peels is it a std


When you touch your girlfriends boobs they are hard is this normal?

no, it is not normal. This means the girl has a STD. Sorry...


Is it normal to smell downstairs when finished the depo?

no that means you have an std please go to the doctor


Burning sensation on your penis without condom?

This probably means that you have an STD (Sexually Transmitted Disease)


What happens when your nook doesn't turn on?

it means your nook has some sort of STD probably AIDS.


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; }