answersLogoWhite

0


Best Answer

No. Blood count testing just counts the different blood cells.
Not likely unless you are fighting an infection.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can you detect an std in a Complete Blood Count?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Would STD screening detect pelvic inflammatory disease?

If a woman had a bimanual exam during the STD screening, then it might detect PID. Simple urine testing will not detect PID.


Does Ebola count as an std?

If it can be transmitted by body fluids then in some ways it is an std


Can a doctor's pregnancy exam detect an std?

if you ask him too


C plus plus programme to count non-vowels in a file of test?

#include<iostream> #include<fstream> #include<string> int main() { size_t count=0; std::string vowels ("aeiouAEIOU"); std::ifstream ifs; ifs.open ("test.txt", std::ios::in); if (ifs.bad()) { ifs.close(); std::cerr << "Invalid input file.\n" << std::endl; return; } while (!ifs.eof()) { char c = ifs.get(); if ((c>='a' && c<='z') (c>='A' && c<='Z')) if (vowels.find (c) != vowels.npos) ++count; } ifs.close(); std::cout << "The file has " << count << " non-vowels.\n" << std::endl; }


C plus plus program to count digit in a string?

Use the following function to count the number of digits in a string. size_t count_digits (const std::string& str) { size_t count = 0; for (std::string::const_iterator it=str.begin(); it!=str.end(); ++it) { const char& c = *it; if (c>='0' && c<='9'); ++count; } return count; }


Can you complete 12th STD directly?

no you have to go throweit


Does a chlamydia test detect Concerta?

A chlamydia test doesn't detect drug or medication metabolites. Get tested as soon as possible.Chlamydia tests cannot detect drugs. Don't let this concern keep you from STD screening.


How do you write a counter program to count from 1 to 100 in C plus plus?

for(int i=1; i<=100; ++i ) std::cout << i << std::endl;


How can people be infected with blood fluid?

Std, Aids , blood borne disease , infected cow.


What is the C plus plus program to display fname lname age and id number of 100 students and arrange their name alphabetically?

Create a class to represent a student: struct student { string fname; string lname; unsigned age; unsigned id; }; Overload operator< to compare two student objects: bool operator< (const student& a, const student& b) { return a.lname<b.lname; } Overload std::ostream::operator<< to print a student: std::ostream& operator<< (std::ostream& os, const student& s) { return os << s.fname << ' ' << s.lname << ' ' << s.age << ' ' << s.id; } Now you can write your program: int main() { std::vector<student> v; for (unsigned count=0; count<100;) { student s; std::cout << "Enter details for student #" << ++count; std::cout << "First name: "; std::cin >> s.fname; std::cout << "Last name: "; std::cin >> s.lname; std::cout << "Age: "; std::cin >> s.age; std::cout << "ID: "; std::cin >> s.id; v.push_back (s); } std::cout << "Sorting..." std::sort (v.begin(), v.end()); std::cout << "\n\n"; // Print students... for (auto s : v) std::cout << s << std::endl; }


C program to calculate average using while loop?

//to calculate using while #include<stdio.h> #include<conio.h> void main() { int count float average,sum; sum=0; count=0; while(count<N) scanf("%f",n) sum=sum+count count=count+1 } average=sum/n


Write a c or c plus plus program to print first 50 odd numbers using do while loop?

unsigned count = 0;unsigned num=1; do { std::cout << num << std::endl; num +=2; } while (++count<50);