<?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: What is the correct option and why? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931785#M366572</link>
    <description>&lt;P&gt;how did you find this?&lt;/P&gt;&lt;P&gt;by searching the content of the questions?&lt;/P&gt;</description>
    <pubDate>Tue, 11 Jun 2024 19:33:43 GMT</pubDate>
    <dc:creator>Nipun22</dc:creator>
    <dc:date>2024-06-11T19:33:43Z</dc:date>
    <item>
      <title>What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931746#M366547</link>
      <description>&lt;P&gt;Given the SAS data set SASDATA TWO:&lt;BR /&gt;SASDATA TWO&lt;BR /&gt;XY&lt;BR /&gt;- -&lt;/P&gt;&lt;P&gt;- -&amp;nbsp;&lt;BR /&gt;The following SAS program is submitted:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data sasuser.one two sasdata.three;&lt;BR /&gt;set sasdata two;&lt;BR /&gt;if x = 5 then output sasuser.one;&lt;BR /&gt;else output sasdata two;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is the result?&lt;/P&gt;&lt;P&gt;A. data set SASUSER.ONE has 5 observations&lt;BR /&gt;data set SASUSER. TWO has 5 observations&lt;BR /&gt;data set WORK. OTHER has 3 observations&lt;BR /&gt;B. data set SASUSER.ONE has 2 observations&lt;BR /&gt;data set SASUSER. TWO has 2 observations&lt;BR /&gt;data set WORK.OTHER has 1 observations&lt;BR /&gt;C. data set SASUSER.ONE has 2 observations&lt;BR /&gt;data set SASUSER. TWO has 2 observations&lt;BR /&gt;data set WORK.OTHER has 5 observations&lt;BR /&gt;D. No data sets are output.&lt;BR /&gt;The DATA step fails execution due to syntax errors.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 16:23:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931746#M366547</guid>
      <dc:creator>Nipun22</dc:creator>
      <dc:date>2024-06-11T16:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931750#M366549</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/420483"&gt;@Nipun22&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Given the SAS data set SASDATA TWO:&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Invalid name for a data set, it cannot have a space in it. So ERROR right there. Or is that just a typo? Questions like this cannot have typos or you get syntax errors that weren't intended by the questioner, and we can't give a meaningful answer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But please follow &lt;A href="https://blogs.sas.com/content/sastraining/2016/03/11/jedi-sas-tricks-data-to-data-step-macro/" target="_self"&gt;these instructions&lt;/A&gt; to share the data set with us (and no other way is acceptable).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to know what SAS will do, &lt;FONT color="#FF0000"&gt;run the code yourself&lt;/FONT&gt;, don't ask us, SAS will tell you definitively what happens.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 17:04:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931750#M366549</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-06-11T17:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931751#M366550</link>
      <description>&lt;P&gt;As shown that code cannot run.&lt;/P&gt;
&lt;P&gt;First because the two input datasets, WORK.SASDATA and WORK.TWO do not exist.&lt;/P&gt;
&lt;P&gt;Second because the dataset WORK.SASDATA listed on the OUTPUT statement is not listed on the DATA statement.&lt;/P&gt;
&lt;PRE&gt;1    data sasuser.one two sasdata.three;
2    set sasdata two;
ERROR: File WORK.SASDATA.DATA does not exist.
ERROR: File WORK.TWO.DATA does not exist.
3    if x = 5 then output sasuser.one;
4    else output sasdata two;
                 -------
                 455
ERROR 455-185: Data set was not specified on the DATA statement.

5    run;

ERROR: Libref SASDATA is not assigned.
NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set SASUSER.ONE may be incomplete.  When this step was stopped there were 0 observations and 1 variables.
WARNING: Data set SASUSER.ONE was not replaced because this step was stopped.
WARNING: The data set WORK.TWO may be incomplete.  When this step was stopped there were 0 observations and 1 variables.
NOTE: DATA statement used (Total process time):
      real time           0.95 seconds
      cpu time            0.01 seconds
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 16:46:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931751#M366550</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-06-11T16:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931754#M366552</link>
      <description>&lt;P&gt;Do you have access to SAS?&amp;nbsp; You will have a very hard time learning SAS, without being able to run SAS code as you learn.&amp;nbsp; Even if you manage to pass a certification test based on learning from books and trainings, you'll have a hard time programming if you haven't actually used SAS.&amp;nbsp; The good news is you can get access to SAS for free, so you can run SAS code as you learn.&amp;nbsp; You can go to SAS OnDemand for Academics:&amp;nbsp;&lt;A href="https://www.sas.com/en_us/software/on-demand-for-academics.html" target="_blank"&gt;https://www.sas.com/en_us/software/on-demand-for-academics.html&lt;/A&gt;&amp;nbsp; .&amp;nbsp; This is free access to SAS, for anyone who wants to learn SAS, even if you're not enrolled in a college or university.&amp;nbsp; With that, you will be able to run some of this code yourself, and then explore the results.&amp;nbsp; If the results are surprising to you or hard to understand, then you can ask about them in the community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 17:17:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931754#M366552</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2024-06-11T17:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931766#M366558</link>
      <description>&lt;P&gt;first of all, option D is not correct as you are saying that there is a space because that would be way too easy to dodge the question&amp;nbsp;&lt;/P&gt;&lt;P&gt;secondly, having a space at a very obvious statements is easily understood that it is a typo&lt;/P&gt;&lt;P&gt;and last thing in the original question the input dataset is not mentioned question to be solved without that only&lt;/P&gt;&lt;P&gt;so if you could answer that would be great else kindly ignore the question please.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 18:20:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931766#M366558</guid>
      <dc:creator>Nipun22</dc:creator>
      <dc:date>2024-06-11T18:20:48Z</dc:date>
    </item>
    <item>
      <title>Re: What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931767#M366559</link>
      <description>&lt;P&gt;that's the thing question has to be solved without the input dataset.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 18:22:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931767#M366559</guid>
      <dc:creator>Nipun22</dc:creator>
      <dc:date>2024-06-11T18:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931768#M366560</link>
      <description>&lt;P&gt;So show us the correct information with no typos. Then people (including me) here will be happy to help. Otherwise, we are guessing and making stuff up, and can't really help you.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 18:46:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931768#M366560</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-06-11T18:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931769#M366561</link>
      <description>&lt;P&gt;In an exam they may ask you to solve the question without input dataset. But for learning purposes, you can create an input dataset that matches the question, and run the code from the question, and explore the results.&amp;nbsp; And try different data and code than is in the question, to see how stuff works.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 18:32:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931769#M366561</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2024-06-11T18:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931772#M366564</link>
      <description>&lt;P&gt;I would think in general without knowing what the input (or inputs) are then option D is going to be the only one you can be certain is the answer.&amp;nbsp; The other answers depend on what is in the input data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let's go through them one by one:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;A. data set SASUSER.ONE has 5 observations, data set SASUSER. TWO has 5 observations,&amp;nbsp;&lt;BR /&gt;data set WORK. OTHER has 3 observations&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;For that to happen the data statement would need to be:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data sasuser.one sasuser.two other ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;So that there are 3 output datasets.&amp;nbsp; And the OUTPUT statements would need to either not mention any datasets (so that the observations is written to all of them) or only lists one or more of those datasets listed in the DATA statement.&amp;nbsp; So A is impossible given the OUTPUT statements even if the DATA statement was fixed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;B. data set SASUSER.ONE has 2 observations, data set SASUSER. TWO has 2 observations,&amp;nbsp;data set WORK.OTHER has 1 observations&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This seems to have the same problem.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;BR /&gt;C. data set SASUSER.ONE has 2 observations,&amp;nbsp;data set SASUSER. TWO has 2 observations,&amp;nbsp;data set WORK.OTHER has 5 observations&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This seems to have the same problem.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;BR /&gt;D. No data sets are output.&amp;nbsp;The DATA step fails execution due to syntax errors.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This one is true because the dataset names listed on the OUTPUT statements do not match the dataset names listed on the DATA statement.&amp;nbsp; Which is a syntax error and will cause the data step to not run.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 18:38:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931772#M366564</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-06-11T18:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931774#M366565</link>
      <description>&lt;P&gt;yes exactly i found this question on a website and can be a SAS Certification question&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nipun22_0-1718131440255.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/97221i40871E5DD1030160/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Nipun22_0-1718131440255.png" alt="Nipun22_0-1718131440255.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 18:45:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931774#M366565</guid>
      <dc:creator>Nipun22</dc:creator>
      <dc:date>2024-06-11T18:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931776#M366566</link>
      <description>&lt;P&gt;Ok, then the problem was so poorly stated by whoever made it up, that the only logical answer is D, the data step fails to execute (as explained by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;).&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 18:48:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931776#M366566</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-06-11T18:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931781#M366568</link>
      <description>&lt;P&gt;The only answer I can give you: forget this website as a resource for exam preparation.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 19:08:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931781#M366568</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-06-11T19:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931782#M366569</link>
      <description>&lt;P&gt;The very first statement on that "page" or whatever that image comes from is just plain wrong.&lt;/P&gt;
&lt;P&gt;It says "Given the data set SASDATA TWO"&lt;/P&gt;
&lt;P&gt;That is an invalid name for a data set. The name could be SASDATATWO, SASDATA_TWO or even "SASDATA TWO"N but not as presented. And that same error is repeated in multiple places.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With that introduction I would say that the source of this question is unreliable and would not trust the answers for any question as the foundation information they are presenting is wrong.&lt;/P&gt;
&lt;P&gt;I have to assume that your image is as presented. If the space appeared in only one place I &lt;STRONG&gt;might&lt;/STRONG&gt; believe it is a typo but there is absolutely not way that code could write any observations to SASUSER.TWO as the &lt;STRONG&gt;exact characters&lt;/STRONG&gt; SASUSER.TWO do not appear anywhere in the shown code.&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/420483"&gt;@Nipun22&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;yes exactly i found this question on a website and can be a SAS Certification question&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nipun22_0-1718131440255.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/97221i40871E5DD1030160/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Nipun22_0-1718131440255.png" alt="Nipun22_0-1718131440255.png" /&gt;&lt;/span&gt;&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>Tue, 11 Jun 2024 19:09:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931782#M366569</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-06-11T19:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931783#M366570</link>
      <description>&lt;P&gt;Same question was asked 9 years ago in the SAS communities.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/sas-base-question/td-p/237111" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/sas-base-question/td-p/237111&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And here's the same question on Flash Cards (but with different data)&lt;/P&gt;
&lt;P&gt;&lt;A href="https://quizlet.com/413354973/all-sas-questions-216-flash-cards/" target="_blank"&gt;https://quizlet.com/413354973/all-sas-questions-216-flash-cards/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 19:22:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931783#M366570</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-06-11T19:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931785#M366572</link>
      <description>&lt;P&gt;how did you find this?&lt;/P&gt;&lt;P&gt;by searching the content of the questions?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 19:33:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931785#M366572</guid>
      <dc:creator>Nipun22</dc:creator>
      <dc:date>2024-06-11T19:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931788#M366574</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/420483"&gt;@Nipun22&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;how did you find this?&lt;/P&gt;
&lt;P&gt;by searching the content of the questions?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Google "Given the SAS data set SASDATA TWO:"&lt;/P&gt;
&lt;P&gt;And there are dozens of places that someone (or a bunch of bots) have copied the exact same stuff.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 19:50:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/931788#M366574</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-06-11T19:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/932138#M366702</link>
      <description>what's your suggestions then? how should i prepare? and what if i find doubts in the online dumps?&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Jun 2024 14:32:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/932138#M366702</guid>
      <dc:creator>Nipun22</dc:creator>
      <dc:date>2024-06-13T14:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: What is the correct option and why?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/932267#M366735</link>
      <description>&lt;P&gt;When you have questions about specific points, bring them here.&lt;/P&gt;
&lt;P&gt;Hint: there might be a reason why good preparations are not free (as in beer).&lt;/P&gt;
&lt;P&gt;Creating a bunch of good and valid exam questions takes work. The one you showed here is simply crap. From where did you get it?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 19:44:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-correct-option-and-why/m-p/932267#M366735</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-06-13T19:44:20Z</dc:date>
    </item>
  </channel>
</rss>

