answersLogoWhite

0


Best Answer

Blood testing will include screening for hepatitis and HIV. You should not donate blood in order to get tested for STDs, and should not assume that you don't have an STD just because you didn't get a call from the blood bank.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can you find out if you have an STD while donating plasma?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can you donate plasma if you have hpv?

No, you should not donate plasma with hpv. This can transmit hpv to those needing plasma-based products. If you are discovered to be donating with hpv or any other std, you will be permanently banned on the National Donor Database, and never allowed to donate blood, plasma, organs, tissue or sperm.


What are some examples of loops in C plus plus?

The following example demonstrates all 4 loop structures in C++. #include<iostream> int main() { int i; std::cout<<"For loop...\n"<<std::endl; for(i=0; i<10; ++i) std::cout<<i; std::cout<<'\n'<<std::endl; std::cout<<"While loop...\n"<<std::endl; i=0; while(i<10) std::cout<<i++; std::cout<<'\n'<<std::endl; std::cout<<"Do-while loop...\n"<<std::endl; i=0; do { std::cout<<i; }while( ++i<10 ); std::cout<<'\n'<<std::endl; std::cout<<"Goto loop...\n"<<std::endl; i=0; again: std::cout<<i; if(++i<10) goto again; std::cout<<'\n'<<std::endl; } Output: For loop... 0123456789 While loop... 0123456789 Do-while loop... 0123456789 Goto loop... 0123456789


A c plus plus program to find Fibonacci series?

#include<iostream> int main() { int x=0, y=1; std::cout<<x<<" "; std::cout<<y<<" "; while( y<1000000 ) { std::cout<<(y+=x)<<" "; x=y-x; } std::cout<<std::endl; return(0); }


Write a C plus plus program to find out the square of first 10 numbers?

#include<iostream> int main() { int i=0; while(i++<10) std::cout<<i*i<<std::endl; }


How do you print 1 to 100 in c without using loop condition?

If you mean you cannot use a for loop, then use a while loop: int i=0 while( i++ < 100 ) std::cout << i << " "; std::cout << std::endl; Or a do-while loop: int i=0; do std::cout << ++i << " "; while( i<100 ); std::cout << std::endl; If these are not allowed either, use a procedural loop: int i=0; again: std::cout << ++i << " "; if( i<100 ) goto again; std::cout << std::endl; If even that is not allowed, then the only option is to hard-wire: std::cout << 1 << " " << 2 << " " << [etc] << 99 << " " << 100 << std::endl; It does seem a pointless exercise when a for loop exists specifically for counting iterations like this: for( int i=1; i<=100; ++i ) std::cout << i << " "; std::cout << std::endl;


How do you find results of scholarship of 4 STD?

how to find 4th std scholarship results of seat no.- m100226


C plus plus program for searching a word from text file?

#include<iostream> #include<fstream> #include<vector> #include<string> std::string get_input_file() { while (true) { std::cout << "Enter the input file name: "; std::string filename; std::getline (std::cin, filename); std::ifstream file (filename); if (file.is_open()) { file.close(); return filename; } std::cerr << "The file could not be opened.\n" << std::endl; } } std::string get_search_word() { while (true) { std::cout << "Enter the word to search for: "; std::string search; std::cin >> search; if (search.size()) return search; std::cerr << "The search word cannot be an empty string.\n" << std::endl; } } std::vector<size_t> get_offsets(const std::string& filename, const std::string& search) { std::vector<size_t> offsets; std::ifstream file (filename); if (!file.is_open()) throw std::exception("The file could not be opened."); size_t offset = 0; while (!file.eof()) { size_t pos = 0; char c; while (!file.read(&c, 1).eof() && c!=search[pos]) ++offset; while (pos!=search.size()-1 && !file.read(&c, 1).eof() && c==search[++pos]); if (pos==search.size()-1 && c==search[pos]) offsets.push_back (offset); offset += pos; pos = 0; } file.close(); return offsets; } int main() { std::cout << "Word Search\n" << std::endl; std::string filename = get_input_file(); std::string search = get_search_word(); std::vector<size_t> offsets = get_offsets (filename, search); std::cout << "The word was found " << offsets.size() << " time" << (offsets.size()==1?"":"s") << ".\n" << std::endl; if (offsets.size()) { std::cout << "Offsets:\n"; for (auto off : offsets) std::cout << off << std::endl; } }


What activities before donating blood would cause facility to deny you?

Taking mostly any kind of drugs, having a previous STD, travelling outside your country for a certain period of time


How many blocks on a pallet?

6x8x16 has 120 mixed std and bb while 8x8x16 has 90 all std or bb and 12x8x16 has 60 all std or bb and 16x8x16 has 45 all std or bb. Hope that helps


Turbo C plus plus program to generate addition table from 1 to 10?

#include<iostream> int main() { int x=0; while( x++<10 ) { int y=0; while( y++<10 ) { std::cout<<std::setw(3)<<x+y; } std::cout<<std::endl; } }


How many cement blocks on a pallet?

6x8x16 has 120 mixed std and bb while 8x8x16 has 90 all std or bb and 12x8x16 has 60 all std or bb and 16x8x16 has 45 all std or bb. Hope that helps


Write a program to compute the summation of array elements using pointers?

#include<iostream> #include<random> int main() { std::default_random_engine generator; std::uniform_int_distribution<int> distribution (1,9); std::cout << "Array : "; int a[10]; int* p = a; do { std:: cout << (*p = distribution (generator)) << '+'; } while (++p != a + 10); int sum = 0; p = a; while (p != a + 10) sum += *p++; std::cout << "\b=" << sum << std::endl; }