nerdexam
SAS_Institute

A00-280 · Question #26

From the Statistical Analysis Plan, patients age is calculated as an integer relative to date randomized divided by 365.25. Given the following annotated CRF: Which programming code defines the…

The correct answer is B. age = int((randdt-birthdt)/365.25). See the full explanation below for the reasoning.

Question

From the Statistical Analysis Plan, patients age is calculated as an integer relative to date randomized divided by 365.25. Given the following annotated CRF: Which programming code defines the patient's age?

Options

  • Aage = int((birthdt-randdt)/365.25);
  • Bage = int((randdt-birthdt)/365.25);
  • Cage = int(yrdif(birthdt,randdt, "act/365.25"));
  • Dage = int((today()-birthdt)/365.25);

How the community answered

(39 responses)
  • A
    3% (1)
  • B
    74% (29)
  • C
    13% (5)
  • D
    10% (4)

Community Discussion

No community discussion yet for this question.

Full A00-280 Practice