Question : Which of the following is correct way to store formats in the permanent catalog? 1. libname library '/folders/myfolders/hadoopexam'; proc format lib=library; value location 1='Mumbai' 2='Pune' 3='Chennai'; run;
2. libname library '/folders/myfolders/hadoopexam'; format lib=library; value location 1='Mumbai' 2='Pune' 3='Chennai'; run;
Correct Answer : Get Lastest Questions and Answer : Explanation: To store formats in a permanent catalog, you need to create a library pointing to a storage location and format catalog will be stored there. And you can use either LIB= or LIBRARY= PROC FORMAT statement.
Question : The following SAS program is submitted: data combine; prefix='505'; middle='6465 `; end='09090'; (insert statement here) run; Which statement successfully completes the program so that TOTAL has a value of 505-6465- 09090?