<?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 Comma Informat in SAS Certification</title>
    <link>https://communities.sas.com/t5/SAS-Certification/Comma-Informat/m-p/702153#M1089</link>
    <description>&lt;DIV&gt;&lt;STRONG&gt;&lt;SPAN&gt;The COMMAw.d&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;informat&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;can be used to read which of the following values?&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&lt;SPAN&gt;Options:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&lt;SPAN&gt;A. all the three&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&lt;SPAN&gt;B. $177.95&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&lt;SPAN&gt;C. 12,805&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&lt;SPAN&gt;D. 18 %&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&lt;SPAN&gt;A or only C? why?&lt;/SPAN&gt;&lt;/DIV&gt;</description>
    <pubDate>Sat, 28 Nov 2020 04:35:35 GMT</pubDate>
    <dc:creator>anming</dc:creator>
    <dc:date>2020-11-28T04:35:35Z</dc:date>
    <item>
      <title>Comma Informat</title>
      <link>https://communities.sas.com/t5/SAS-Certification/Comma-Informat/m-p/702153#M1089</link>
      <description>&lt;DIV&gt;&lt;STRONG&gt;&lt;SPAN&gt;The COMMAw.d&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;informat&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;can be used to read which of the following values?&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&lt;SPAN&gt;Options:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&lt;SPAN&gt;A. all the three&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&lt;SPAN&gt;B. $177.95&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&lt;SPAN&gt;C. 12,805&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&lt;SPAN&gt;D. 18 %&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="rteindent1"&gt;&lt;SPAN&gt;A or only C? why?&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 28 Nov 2020 04:35:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/Comma-Informat/m-p/702153#M1089</guid>
      <dc:creator>anming</dc:creator>
      <dc:date>2020-11-28T04:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: Comma Informat</title>
      <link>https://communities.sas.com/t5/SAS-Certification/Comma-Informat/m-p/702155#M1090</link>
      <description>&lt;P&gt;Poorly worded question. You could use the COMMA informat to read "FRED".&amp;nbsp; The result would be a missing value.&lt;/P&gt;
&lt;P&gt;I suspect they want you to answer A as it will read all of those strings as numbers.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;But the value it gets for the last one is wrong.&lt;/STRONG&gt; The string 18% means the number 0.18 and the COMMA informat will read it as 18 instead.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
  input id $ value comma12.;
cards;
B. $177.95
C. 12,805
D. 18 %
;

proc print;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;Obs    id       value

 1     B.      177.95
 2     C.    12805.00
 3     D.       18.00
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Nov 2020 05:01:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/Comma-Informat/m-p/702155#M1090</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-11-28T05:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: Comma Informat</title>
      <link>https://communities.sas.com/t5/SAS-Certification/Comma-Informat/m-p/702184#M1091</link>
      <description>Great! thanks!</description>
      <pubDate>Sat, 28 Nov 2020 15:36:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/Comma-Informat/m-p/702184#M1091</guid>
      <dc:creator>anming</dc:creator>
      <dc:date>2020-11-28T15:36:26Z</dc:date>
    </item>
  </channel>
</rss>

