answersLogoWhite

0

A zero result means you tested negative for TB.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is a normal result for PRO-BNP blood test?

Depending on the lab that does the test. Range of normal is 0-125 pg/ml


How many GB is equal to 10 TB?

1 TB is 1000 GB, so 10000 GB = 10 TB roughly, its not all 1 and 0 but you get the picture.


What 0 percent basos blood test mean?

0% baso in a blood test stands for basophils. It is normal for the test to show somewhere between 0% and 2%. Anything higher could suggest an illness or allergy.


What does 0 percent basos blood test mean?

0% baso in a blood test stands for basophils. It is normal for the test to show somewhere between 0% and 2%. Anything higher could suggest an illness or allergy.


C plus plus prog a function mean that returns the mean of all Values in the given array double mean int list int arraySize?

double mean(int list[], int arraySize) { double result=0; for(int i=0; i<arraySize; ++i ) result += list[i]; return(result/size); }


What does it mean if the Z score of a test is equal to 0?

If the Z Score of a test is equal to zero then the raw score of the test is equal to the mean. Z Score = (Raw Score - Mean Score) / Standard Deviation


Prove A plus Ab equals A using boolean algebra theorem?

A+A*b does not mean A plus Ab the operation signified by "+" is called "or" the operation signified by "*" is called "and" there are four possible outcomes of a+a*b if a=1 and b=1 the result is 1 if a=1 and b=0 the result is 1 if a=0 and b=1 the result is 0 if a=0 and b=0 the result is 0 a+a*b is 1 if a is 1 and a+a*b is 0 if a is 0 regardless of the value of b thus a+a*b=a Q.E.D.


What is the result for the following operation 0 AND 1?

The result is 0.


If the null hypothesis states that there is no difference between the mean income of males and the mean income of females then the test is one-tailed?

Falseà Ha:µM-µF=0 and Ha:µM-µF≠0


Your lipase test was 239 what does that mean?

A lipase test result of 239 is within the normal range (normal range is typically around 0-160 U/L). Lipase is an enzyme produced by the pancreas and elevated levels can indicate pancreatitis or other pancreatic disorders, so further evaluation may be needed if there are symptoms or other abnormal test results.


How do you define c?

If you mean defining an item a value then I can show you.Say we have an item called Test. Test will be Defined as an int or integer.int Test;You can also Define Test a value such as:Test=0;Hoped this helped:D


How do you calculate water bill from C programming?

#include<iostream> using namespace std; #include<conio.h> void main() { char m[100]; int units[100],i,j,n; float x,tb; cout<<"enter the total number of bills to be calculate:\n"; cin>>n; for(i=1;i<=n;i++) { cout<<"\nenter the name \n:==>"; cin>>m; for(i=0;i<n;i++) { cout<<"\nenter the total units consumed \n:==>"; cin>>units[i]; } } if(units[i]<=100) { x=units[i]*0.6; tb=50+x; if(tb>300) { tb=0.15*tb+tb; } cout<<"\ncalculated bill:==>"; cout<<m<<tb; } else if(units[i]>100 && units[i]<=300) { tb=100*0.6+(units[i]-100)*0.8+50; if(tb>300) { tb=0.15*tb+tb; } cout<<"\ncalculated bill:==>"; cout<<m<<tb; } else if(units[i]>300) { tb=100*0.6+200*0.8+(units[i]-300)*0.9+50; if(tb>300) { tb=0.15*tb+tb; } cout<<"\ncalculated bill:==>"; cout<<m<<tb; } getch(); }