<?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 SAS Base Question #84 in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/508981#M6465</link>
    <description>&lt;PRE&gt;data work.roth_ira; start = 1000;
do year = 1 to 30; savings + 5000;
do month = 1 to 12;
int = savings * (.05/12);
savings + int; end;
output;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;DIV class="page"&gt;&lt;DIV class="layoutArea"&gt;&lt;DIV class="column"&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;84. How many variables/observations will come from the below program? Thank you!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="page"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
    <pubDate>Wed, 31 Oct 2018 02:08:40 GMT</pubDate>
    <dc:creator>jc3992</dc:creator>
    <dc:date>2018-10-31T02:08:40Z</dc:date>
    <item>
      <title>SAS Base Question #84</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/508981#M6465</link>
      <description>&lt;PRE&gt;data work.roth_ira; start = 1000;
do year = 1 to 30; savings + 5000;
do month = 1 to 12;
int = savings * (.05/12);
savings + int; end;
output;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;DIV class="page"&gt;&lt;DIV class="layoutArea"&gt;&lt;DIV class="column"&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;84. How many variables/observations will come from the below program? Thank you!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="page"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Wed, 31 Oct 2018 02:08:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/508981#M6465</guid>
      <dc:creator>jc3992</dc:creator>
      <dc:date>2018-10-31T02:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Base Question #84</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/508988#M6469</link>
      <description>&lt;P&gt;30 &amp;amp; 5?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I'm&amp;nbsp; wrong, i blame it on being tipsy&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 02:27:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/508988#M6469</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-10-31T02:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Base Question #84</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/508989#M6470</link>
      <description>Technically it's incomplete and would error out.</description>
      <pubDate>Wed, 31 Oct 2018 02:32:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/508989#M6470</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-10-31T02:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Base Question #84</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/508990#M6471</link>
      <description>&lt;P&gt;Btw #84 , where did you get this from?&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 02:35:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/508990#M6471</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-10-31T02:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Base Question #84</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/508992#M6472</link>
      <description>&lt;P&gt;the code&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/188695"&gt;@jc3992&lt;/a&gt; has is incorrect;&lt;/P&gt;&lt;P&gt;you have unclosed do block.&lt;/P&gt;&lt;P&gt;if the code was as this&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.roth_ira; 
start = 1000;
do year = 1 to 30; savings + 5000;
do month = 1 to 12;
int = savings * (.05/12);
savings + int; 
end;
output;
end;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;there would be 30 output records&lt;/P&gt;&lt;P&gt;if the code had the end to the do loop before the output like this&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.roth_ira; 
start = 1000;
do year = 1 to 30; savings + 5000;
do month = 1 to 12;
int = savings * (.05/12);
savings + int; 
end;
end;
output;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;there would be 1 record output&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, 31 Oct 2018 02:39:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/508992#M6472</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2018-10-31T02:39:30Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Base Question #84</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/509161#M6475</link>
      <description>&lt;P&gt;Run the code and see.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bonus points for seeing the syntax errors before running the code. (especially with a poor code layout style)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And actually without seeing the end of a data step one could make an argument for "can't tell" as there could be more code before a not-shown run statement that affects the number of variables.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 15:20:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/509161#M6475</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-10-31T15:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Base Question #84</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/509252#M6476</link>
      <description>&lt;P&gt;I forgot. Maybe the 95 former questions I guess&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 18:37:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/509252#M6476</guid>
      <dc:creator>jc3992</dc:creator>
      <dc:date>2018-10-31T18:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Base Question #84</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/509301#M6477</link>
      <description>&lt;P&gt;Those type of questions are usually from a test dump. The exams have been recently redesigned though and I don't think the old materials will supply coverage for the current exams.&amp;nbsp;&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/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Btw #84 , where did you get this from?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 19:53:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/509301#M6477</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-10-31T19:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Base Question #84</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/509307#M6478</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;,So are you sure no more dumps circling around. True merit system has been restored or put into effect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ok some relevant fun or laughter&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;ARTICLE id="ember15272" class="feed-shared-comments-list__comment-item feed-shared-comment-item ember-view" tabindex="-1" data-id="urn:li:comment:(activity:6437736845454430208,6438090758544326656)" data-artdeco-is-focused="true"&gt;
&lt;DIV class="feed-shared-comment-item__nested-items"&gt;
&lt;DIV id="ember15294" class="feed-shared-comment-item__replies-list replies-list comments-list ember-view"&gt;
&lt;ARTICLE id="ember15295" class="feed-shared-comment-item feed-shared-reply-item reply-item ember-view" tabindex="-1" data-id="urn:li:comment:(activity:6437736845454430208,6438121620061110272)"&gt;
&lt;DIV class="feed-shared-comment-item__social-actions  feed-shared-comment-item__social-actions--is-reply"&gt;
&lt;DIV id="ember15313" class="feed-shared-comment-social-bar display-flex ember-view"&gt;
&lt;DIV class="feed-shared-comment-social-bar__action-group "&gt;&lt;BUTTON id="ember15314" class="feed-shared-comment-social-bar__action-button t-12 t-black--light t-bold pr3 ml0 hoverable-link-text like-button button like ember-view" data-control-name="reply_like_toggle"&gt;&lt;/BUTTON&gt;&lt;BUTTON class="comment-options-trigger" data-control-name="comment_control_menu" data-ember-action="" data-ember-action-19111="19111" data-ember-action-19112="19112"&gt;&lt;/BUTTON&gt;
&lt;DIV id="ember19113" class="ember-view"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/ARTICLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/ARTICLE&gt;
&lt;ARTICLE id="ember19110" class="feed-shared-comments-list__highlighted-comment-item feed-shared-comment-item feed-shared-highlighted-comment-item feed-shared-comment-item--highlighted ember-view" tabindex="-1" data-id="urn:li:comment:(activity:6437736845454430208,6438112684406820864)"&gt;
&lt;DIV id="ember19115" class="feed-shared-comment-item__post-meta feed-shared-post-meta is-comment feed-shared-post-meta--is-not-sponsored ember-view"&gt;
&lt;DIV id="ember19117" class="feed-shared-avatar-image b0 member ember-view" data-entity-hovercard-id="urn:li:fs_miniProfile:ACoAAAEBLNIBx_DUPsno9sZOBnhuTZvlvqPaYDM"&gt;
&lt;DIV id="ember19118" class="presence-entity presence-entity--size-1 ember-view"&gt;
&lt;DIV id="ember19119" class="avatar member EntityPhoto-circle-1 presence-entity__image EntityPhoto-circle-1 ember-view"&gt;&lt;SPAN class="visually-hidden"&gt;Paul M. Dorfman&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;H3 class="feed-shared-post-meta__actor t-12 t-black--light t-normal"&gt;&lt;SPAN class=" feed-shared-post-meta__name t-14 t-black t-bold"&gt;&lt;SPAN class="hoverable-link-text" data-entity-hovercard-id="urn:li:fs_miniProfile:ACoAAAEBLNIBx_DUPsno9sZOBnhuTZvlvqPaYDM"&gt;Paul M. Dorfman&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="feed-shared-post-meta__distance-badge distance-badge separator ember-view"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H3&gt;
&lt;/DIV&gt;
&lt;DIV class="feed-shared-highlighted-comment-item-content-body"&gt;
&lt;DIV id="ember19123" class="feed-shared-highlighted-comment-item__show-more-text feed-shared-inline-show-more-text feed-shared-inline-show-more-text--expanded ember-view"&gt;
&lt;P class="feed-shared-main-content--highlighted-comment t-12 t-black--light t-normal feed-shared-main-content ember-view" dir="ltr"&gt;&lt;SPAN class="ember-view"&gt;&lt;SPAN&gt;I've met some Advanced Certified folks who would ask questions like how to reorder variables in a SAS data set or seek help with "proc MERGE" ;). Go figure...&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="feed-shared-comment-item__social-actions "&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="feed-shared-comment-item__nested-items"&gt;
&lt;DIV id="ember19133" class="feed-shared-comment-item__replies-list replies-list comments-list ember-view"&gt;
&lt;ARTICLE id="ember19134" class="feed-shared-comment-item feed-shared-reply-item reply-item ember-view" tabindex="-1" data-id="urn:li:comment:(activity:6437736845454430208,6438147067549356032)"&gt;
&lt;DIV class="feed-shared-comment-item__options"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="ember19139" class="feed-shared-reply-item__post-meta feed-shared-post-meta is-comment feed-shared-post-meta--is-not-sponsored ember-view"&gt;
&lt;DIV id="ember19141" class="feed-shared-avatar-image b0 member ember-view" data-entity-hovercard-id="urn:li:fs_miniProfile:ACoAAAQ1VbUBzclZXFo_lBoVn6Yo9kndus4Cz0E"&gt;
&lt;DIV id="ember19142" class="presence-entity presence-entity--size-1 ember-view"&gt;
&lt;DIV id="ember19143" class="avatar member EntityPhoto-circle-1 presence-entity__image EntityPhoto-circle-1 ember-view"&gt;&lt;SPAN class="visually-hidden"&gt;Naveen Srinivasan&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;H3 class="feed-shared-post-meta__actor t-12 t-black--light t-normal"&gt;&lt;SPAN class=" feed-shared-post-meta__name t-14 t-black t-bold"&gt;&lt;SPAN class="hoverable-link-text" data-entity-hovercard-id="urn:li:fs_miniProfile:ACoAAAQ1VbUBzclZXFo_lBoVn6Yo9kndus4Cz0E"&gt;Naveen Srinivasan&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="feed-shared-post-meta__distance-badge distance-badge separator ember-view"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H3&gt;
&lt;/DIV&gt;
&lt;DIV class="feed-shared-reply-item-content-body"&gt;
&lt;DIV id="ember19147" class="feed-shared-comment-item__inline-show-more-text feed-shared-inline-show-more-text ember-view"&gt;
&lt;P class="feed-shared-comment-item__main-content feed-shared-main-content--comment t-12 t-black--light t-normal feed-shared-main-content ember-view" dir="ltr"&gt;&lt;SPAN class="ember-view"&gt;&lt;SPAN&gt;That's hilarious &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="feed-shared-comment-item__main-content feed-shared-main-content--comment t-12 t-black--light t-normal feed-shared-main-content ember-view" dir="ltr"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="feed-shared-comment-item__main-content feed-shared-main-content--comment t-12 t-black--light t-normal feed-shared-main-content ember-view" dir="ltr"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="feed-shared-comment-item__main-content feed-shared-main-content--comment t-12 t-black--light t-normal feed-shared-main-content ember-view" dir="ltr"&gt;&lt;SPAN class="ember-view"&gt;&lt;SPAN&gt;EDIT: I assumed dumps meaning leaked questions, but if the meaning is something to do with practice papers, I beg&amp;nbsp; pardon&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/ARTICLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/ARTICLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 20:20:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/509307#M6478</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-10-31T20:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Base Question #84</title>
      <link>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/509381#M6479</link>
      <description>Oh there are a lot more dumps circling around, but they're no long as useful. It will be a while again before they are but it's why I test candidates for skills. And I've also had the same response as PMD after hiring...fortunately that was not my responsibility at the time.</description>
      <pubDate>Thu, 01 Nov 2018 00:38:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/SAS-Base-Question-84/m-p/509381#M6479</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-11-01T00:38:37Z</dc:date>
    </item>
  </channel>
</rss>

