In SAS, datasets can be either temporary or permanent, depending on the library where they are stored. Temporary datasets are stored in the Work library and are deleted at the end of the session, while permanent datasets reside in user-defined libraries or in libraries that refer to a more persistent storage location.
For this question:
B. Mylib.new: This is a permanent dataset. The prefix 'Mylib' suggests it is stored in a user-defined library (not the temporary 'Work' library), implying that the data persists beyond the current session unless explicitly deleted or if the library's link to the storage location is removed.
D. Temp.new: Despite the potentially misleading name 'Temp', if this dataset is not explicitly stored in the Work library, it could indeed be permanent. The permanence of a dataset is determined by its library reference, not by its name. If 'Temp' is a user-defined library linked to a persistent storage, then 'Temp.new' is also permanent.
C. Work.new: This dataset is explicitly temporary as it is stored in the Work library, which is cleared at the end of the SAS session.
A. New: Without additional context about the library, 'New' does not provide enough information to determine its permanence. It could be either temporary or permanent depending on the library it references.
References:SAS documentation on libraries and dataset management, SAS Institute.