<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SAS Certified Specialist Base Programming Prep Guide Question in SAS Certification</title>
    <link>https://communities.sas.com/t5/SAS-Certification/SAS-Certified-Specialist-Base-Programming-Prep-Guide-Question/m-p/584602#M617</link>
    <description>&lt;P&gt;What version of the certification guide are you using?&lt;/P&gt;
&lt;P&gt;The content update/errata page is here for the Certification Guide.&lt;/P&gt;
&lt;P&gt;I would tend to agree - as posted A seems like the correct answer.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/en/books/content-updates-base-prep-guide.html" target="_blank"&gt;https://support.sas.com/en/books/content-updates-base-prep-guide.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/228030"&gt;@CPoston&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a question from&amp;nbsp;Chp. 8 (By Group Processing), Question 4:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which program below creates the following output? (output attached)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A) proc print data=cert.credit ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;by type ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;run ;&lt;/P&gt;
&lt;P&gt;B) proc sort data=cert.credit ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;by type ascending ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;run ;&lt;/P&gt;
&lt;P&gt;C) proc sort data=cert.credit ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;by type ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;run ;&lt;/P&gt;
&lt;P&gt;D) proc sort data=cert.credit ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;by type descending ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;run ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The correct answer is C.&amp;nbsp; I thought this should be A.&amp;nbsp; My understanding is that proc sort does not create any output; it sorts the data in the data set as specified and creates a new data set if specified in the out= option.&amp;nbsp; In order to create output, I thought you have to run proc print.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Aug 2019 15:21:37 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-08-28T15:21:37Z</dc:date>
    <item>
      <title>SAS Certified Specialist Base Programming Prep Guide Question</title>
      <link>https://communities.sas.com/t5/SAS-Certification/SAS-Certified-Specialist-Base-Programming-Prep-Guide-Question/m-p/584597#M615</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a question from&amp;nbsp;Chp. 8 (By Group Processing), Question 4:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which program below creates the following output? (output attached)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A) proc print data=cert.credit ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;by type ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;run ;&lt;/P&gt;&lt;P&gt;B) proc sort data=cert.credit ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;by type ascending ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;run ;&lt;/P&gt;&lt;P&gt;C) proc sort data=cert.credit ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;by type ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;run ;&lt;/P&gt;&lt;P&gt;D) proc sort data=cert.credit ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;by type descending ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;run ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The correct answer is C.&amp;nbsp; I thought this should be A.&amp;nbsp; My understanding is that proc sort does not create any output; it sorts the data in the data set as specified and creates a new data set if specified in the out= option.&amp;nbsp; In order to create output, I thought you have to run proc print.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2019 15:12:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/SAS-Certified-Specialist-Base-Programming-Prep-Guide-Question/m-p/584597#M615</guid>
      <dc:creator>CPoston</dc:creator>
      <dc:date>2019-08-28T15:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Certified Specialist Base Programming Prep Guide Question</title>
      <link>https://communities.sas.com/t5/SAS-Certification/SAS-Certified-Specialist-Base-Programming-Prep-Guide-Question/m-p/584599#M616</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/228030"&gt;@CPoston&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The correct answer is C. PROC SORT does not create any output as it relates to the Results tab. However, it does sort your data and you would be able to see the sorted data in your library. I would say, we can reword the question to "Which program creates the sorted data set as shown?" Maybe that would clarify some confusion regarding the word output.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To create output you would run a PROC PRINT, but I can see where the confusion is. Thanks for recommending this change - I will include this in the next release of the Content Updates page.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2019 15:17:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/SAS-Certified-Specialist-Base-Programming-Prep-Guide-Question/m-p/584599#M616</guid>
      <dc:creator>sbgidlow</dc:creator>
      <dc:date>2019-08-28T15:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Certified Specialist Base Programming Prep Guide Question</title>
      <link>https://communities.sas.com/t5/SAS-Certification/SAS-Certified-Specialist-Base-Programming-Prep-Guide-Question/m-p/584602#M617</link>
      <description>&lt;P&gt;What version of the certification guide are you using?&lt;/P&gt;
&lt;P&gt;The content update/errata page is here for the Certification Guide.&lt;/P&gt;
&lt;P&gt;I would tend to agree - as posted A seems like the correct answer.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/en/books/content-updates-base-prep-guide.html" target="_blank"&gt;https://support.sas.com/en/books/content-updates-base-prep-guide.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/228030"&gt;@CPoston&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a question from&amp;nbsp;Chp. 8 (By Group Processing), Question 4:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which program below creates the following output? (output attached)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A) proc print data=cert.credit ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;by type ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;run ;&lt;/P&gt;
&lt;P&gt;B) proc sort data=cert.credit ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;by type ascending ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;run ;&lt;/P&gt;
&lt;P&gt;C) proc sort data=cert.credit ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;by type ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;run ;&lt;/P&gt;
&lt;P&gt;D) proc sort data=cert.credit ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;by type descending ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;run ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The correct answer is C.&amp;nbsp; I thought this should be A.&amp;nbsp; My understanding is that proc sort does not create any output; it sorts the data in the data set as specified and creates a new data set if specified in the out= option.&amp;nbsp; In order to create output, I thought you have to run proc print.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2019 15:21:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/SAS-Certified-Specialist-Base-Programming-Prep-Guide-Question/m-p/584602#M617</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-08-28T15:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Certified Specialist Base Programming Prep Guide Question</title>
      <link>https://communities.sas.com/t5/SAS-Certification/SAS-Certified-Specialist-Base-Programming-Prep-Guide-Question/m-p/584603#M618</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;that is NOT the correct Content Updates page, that is for a different Prep Guide that is no longer being used for Certification.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2019 15:23:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/SAS-Certified-Specialist-Base-Programming-Prep-Guide-Question/m-p/584603#M618</guid>
      <dc:creator>sbgidlow</dc:creator>
      <dc:date>2019-08-28T15:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Certified Specialist Base Programming Prep Guide Question</title>
      <link>https://communities.sas.com/t5/SAS-Certification/SAS-Certified-Specialist-Base-Programming-Prep-Guide-Question/m-p/584607#M619</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;,&amp;nbsp;the correct content updates page for the&amp;nbsp;&lt;EM&gt;current&amp;nbsp;&lt;/EM&gt;SAS Certified Specialist Prep Guide: Base Programming Using SAS 9.4 is&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.sas.com/content/dam/SAS/support/en/books/errata-base-certified.pdf" target="_blank"&gt;https://support.sas.com/content/dam/SAS/support/en/books/errata-base-certified.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2019 15:25:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/SAS-Certified-Specialist-Base-Programming-Prep-Guide-Question/m-p/584607#M619</guid>
      <dc:creator>sbgidlow</dc:creator>
      <dc:date>2019-08-28T15:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Certified Specialist Base Programming Prep Guide Question</title>
      <link>https://communities.sas.com/t5/SAS-Certification/SAS-Certified-Specialist-Base-Programming-Prep-Guide-Question/m-p/584609#M620</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;I am using this prep guide:&amp;nbsp;&amp;nbsp;&lt;A href="https://www.sas.com/store/prodBK_72102_en.html" target="_self"&gt;SAS Prep Guide&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/287068"&gt;@sbgidlow&lt;/a&gt;&amp;nbsp;thanks for the clarification&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2019 15:26:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/SAS-Certified-Specialist-Base-Programming-Prep-Guide-Question/m-p/584609#M620</guid>
      <dc:creator>CPoston</dc:creator>
      <dc:date>2019-08-28T15:26:43Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Certified Specialist Base Programming Prep Guide Question</title>
      <link>https://communities.sas.com/t5/SAS-Certification/SAS-Certified-Specialist-Base-Programming-Prep-Guide-Question/m-p/584619#M621</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/287068"&gt;@sbgidlow&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;,&amp;nbsp;the correct content updates page for the&amp;nbsp;&lt;EM&gt;current&amp;nbsp;&lt;/EM&gt;SAS Certified Specialist Prep Guide: Base Programming Using SAS 9.4 is&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/content/dam/SAS/support/en/books/errata-base-certified.pdf" target="_blank" rel="noopener"&gt;https://support.sas.com/content/dam/SAS/support/en/books/errata-base-certified.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Can you also include the versions on the Content Update pages so that it's clear which page goes with which version? I googled and found three and the one I linked to looked like the most recent&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;¯\_(ツ)_/¯&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2019 15:38:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/SAS-Certified-Specialist-Base-Programming-Prep-Guide-Question/m-p/584619#M621</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-08-28T15:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Certified Specialist Base Programming Prep Guide Question</title>
      <link>https://communities.sas.com/t5/SAS-Certification/SAS-Certified-Specialist-Base-Programming-Prep-Guide-Question/m-p/598081#M677</link>
      <description>&lt;P&gt;This is just one of&amp;nbsp;the many mistakes in this book...&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 11:01:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/SAS-Certified-Specialist-Base-Programming-Prep-Guide-Question/m-p/598081#M677</guid>
      <dc:creator>ijijijijijjiij</dc:creator>
      <dc:date>2019-10-21T11:01:14Z</dc:date>
    </item>
  </channel>
</rss>

