<?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 Certification Question in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/SAS-Certification-Question/m-p/512600#M2390</link>
    <description>Thanks Cynthia, I found it on exam collection.&lt;BR /&gt;I will try to run the data you provided using the 3 programs and see the&lt;BR /&gt;best options.&lt;BR /&gt;</description>
    <pubDate>Tue, 13 Nov 2018 15:49:10 GMT</pubDate>
    <dc:creator>Alass006</dc:creator>
    <dc:date>2018-11-13T15:49:10Z</dc:date>
    <item>
      <title>SAS Certification Question</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Certification-Question/m-p/512381#M2328</link>
      <description>&lt;P&gt;Hello folks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a SAS question. Please see the attached files. It is said that the answer is A but I want to believe that is is B, because program 3 needs a proc sort before it works. Any inputs?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Nov 2018 21:58:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Certification-Question/m-p/512381#M2328</guid>
      <dc:creator>Alass006</dc:creator>
      <dc:date>2018-11-12T21:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Certification Question</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Certification-Question/m-p/512392#M2330</link>
      <description>1. Learn how to make fake data and test this&lt;BR /&gt;2. Post your pictures directly into the forum, attachments are a pain.&lt;BR /&gt;3. Program 3 will error out, not just because of the sort, but because of NO BY statement, so 3 cannot generate the correct answer. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Nov 2018 22:11:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Certification-Question/m-p/512392#M2330</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-11-12T22:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Certification Question</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Certification-Question/m-p/512400#M2333</link>
      <description>Also, please post the title and page number of the book that you're using. Typically, our exam questions in the Prep Guide have 3-4 unique answers. In your screen shot, it looks like B and D are the same answer. If this is our Prep Guide then we need to add this to the errata. &lt;BR /&gt;Cynthia</description>
      <pubDate>Mon, 12 Nov 2018 22:26:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Certification-Question/m-p/512400#M2333</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-11-12T22:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Certification Question</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Certification-Question/m-p/512538#M2367</link>
      <description>&lt;P&gt;Thank you so much for your time and inputs. I did try to copy and paste the question into the window but it was not working. That's why I used the attachment. I believe running a fake data could also be helpful.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 13 Nov 2018 14:19:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Certification-Question/m-p/512538#M2367</guid>
      <dc:creator>Alass006</dc:creator>
      <dc:date>2018-11-13T14:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Certification Question</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Certification-Question/m-p/512574#M2380</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; You did not say where you found the question. Was it in the Certification Prep Guide that we publish? If so, was it in the 4th edition or the 5th edition?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; To make the data, so you can figure out the correct answer yourself, all you need is a DATA step program and the patience to make the datalines for input, as shown below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.orders;
infile datalines dlm=',';
input Order_Date : mmddyy. Customer_ID $ Order_Total;
return;
datalines;
01/01/2011,B4523,52.30
01/02/2011,A2356,104.20
01/03/2011,C3467,27.40
01/04/2011,B4523,260.40
01/05/2011,A2356,74.54
;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then, once you have WORK.ORDERS, you can type and submit all 3 programs to see which ones work or don't work and why. If you are studying in the Certification Prep Guide, you should find a section that discusses using DATALINES as one method of creating a SAS table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Tue, 13 Nov 2018 15:16:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Certification-Question/m-p/512574#M2380</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-11-13T15:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Certification Question</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Certification-Question/m-p/512600#M2390</link>
      <description>Thanks Cynthia, I found it on exam collection.&lt;BR /&gt;I will try to run the data you provided using the 3 programs and see the&lt;BR /&gt;best options.&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Nov 2018 15:49:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Certification-Question/m-p/512600#M2390</guid>
      <dc:creator>Alass006</dc:creator>
      <dc:date>2018-11-13T15:49:10Z</dc:date>
    </item>
  </channel>
</rss>

