What is the Program Data Vector (PDV) and What are its
functions?
Answer Posted / sas - user
Program data vector (pdv) is a temporary memory location.
While execution it stores the temporary values in the pdv
and after execution it displays only the final output.
For example:
do i = 1 to 10 by 2;
end;
The values of i that are stored in the pdv everytime the
loop executes are 1, 3, 5, 7, 9, 11. Everytime the
execution of the loop takes place, it over-writes the
previous value in the pdv. But at the end of execution, the
value of i is 11.
Thus pdv temporarily stores the values of i during
execution but displays the lastly over-written value.
Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What do you know about sas data set?
What are the parameters of scan function?
How is character variable converted into numeric variable and vice versa?
why is sas considered self-documenting? : Sas programming
explain the function of substr in sas? : Sas-administrator
Can you suggest us materials for sdtm mapping?
What is data _null_?
please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??
What are the features of base sas system?
Enlist the syntax rules followed in sas statements.
how can you put a "trace" in your program? : Sas programming
what is the basic structure sas administrator? : Sas-administrator
what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi
What are pdv and it functions?
how do you pull data from equifax?tell me the process?