Question d’entretien chez Target

How do you add 2 missing values so that the result is zero?

Réponses aux questions d'entretien

Utilisateur anonyme

22 sept. 2011

*to add 2 missing values so that the result is zero can be achieved by using sum function with zero as extra argument. eg: data x; a = .; b = .; c = a + b + 0; /* even if you add zero, result is missing*/ d = sum(a,b,0); run;

Utilisateur anonyme

8 mars 2010

-2+2