<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>vorbereitung auf übungsexamen it-pruefungen.ch &#187; A00-212 IT-Prüfungen</title>
	<atom:link href="http://deutsch.pruefungsfrage.ch/tag/a00-212-it-prufungen/feed/" rel="self" type="application/rss+xml" />
	<link>https://deutsch.pruefungsfrage.ch</link>
	<description>deutsche Fragen und antworten</description>
	<lastBuildDate>Wed, 27 May 2026 09:48:24 +0000</lastBuildDate>
	<language>de-DE</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>Prüfungsvorbereitung study guide A00-212 Testfragen pdf</title>
		<link>https://deutsch.pruefungsfrage.ch/2018/08/19/pruefungsvorbereitung-study-guide-a00-212-testfragen-pdf/</link>
		<comments>https://deutsch.pruefungsfrage.ch/2018/08/19/pruefungsvorbereitung-study-guide-a00-212-testfragen-pdf/#comments</comments>
		<pubDate>Sun, 19 Aug 2018 08:12:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[sas]]></category>
		<category><![CDATA[A00-212]]></category>
		<category><![CDATA[A00-212 IT-Prüfungen]]></category>
		<category><![CDATA[A00-212 Prüfungsfragen]]></category>
		<category><![CDATA[A00-212 übungstest]]></category>

		<guid isPermaLink="false">https://deutsch.pruefungsfrage.ch/?p=47</guid>
		<description><![CDATA[Prüfungsvorbereitung study guide A00-212 Testfragen pdf SAS Advanced Programming Exam for SAS 9 www.it-pruefungen.ch QUESTION 1 The following SAS program is submitted: Data sasuser.history; Set sasuser.history(keep=state x y Rename = (state=ST)); Total=sum(x,y); Run; The SAS data set SASUSER.HISTORY has an &#8230; <a href="https://deutsch.pruefungsfrage.ch/2018/08/19/pruefungsvorbereitung-study-guide-a00-212-testfragen-pdf/">Weiterlesen <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="https://www.it-pruefungen.ch/A00-212.htm">Prüfungsvorbereitung study guide A00-212 Testfragen pdf</a> SAS Advanced Programming Exam for SAS 9 www.it-pruefungen.ch</p>
<p>QUESTION 1<br />
The following SAS program is submitted:<br />
Data sasuser.history;<br />
Set sasuser.history(keep=state x y<br />
Rename = (state=ST));<br />
Total=sum(x,y);<br />
Run;<br />
The SAS data set SASUSER.HISTORY has an index on the variable STATE. Which describes the result of submitting the SAS program?</p>
<p>A. The index on STATE is deleted and an index on ST is created<br />
B. The index on STATE is recreated as an index on ST<br />
C. The index on STATE is deleted<br />
D. The index on STATE is updated as an index on ST</p>
<p>Answer: C</p>
<p>QUESTION 2<br />
The following SAS program is submitted:<br />
%macro one(input);<br />
%two;<br />
%put the value is &amp;date;<br />
%mend;<br />
%macro two;<br />
data _null_;<br />
call symput(&#8216;date&#8217;,&#8217;12SEP2008&#8242;);<br />
run;<br />
%mend;<br />
%let date=31DEC2006;<br />
%one(&amp;date)<br />
What is the result when the %PUT statement executes?</p>
<p>A. A macro variable DATE with the value 12SEP2008 is retrieved from the local symbol table for<br />
the ONE macro<br />
B. A macro variable DATE with the value 12SEP2008 is retrieved from the local symbol table for<br />
the TWO macro<br />
C. A macro variable DATE with the value 12SEP2008 is retrieved from the global symbol table<br />
D. A macro variable DATE with the value 31DEC2006 is retrieved from the global symbol table</p>
<p>Answer: C</p>
<p>QUESTION 3<br />
Which SET statements option names a variable that contains the number of the observation to read during the current iteration of the DATA step?</p>
<p>A. OBS=pointobs<br />
B. POINT=pointobs<br />
C. KEY=pointobs<br />
D. NOBS=pointobs</p>
<p>Answer: B</p>
<p>QUESTION 4<br />
When reading a SAS data file, what does the NOBS=option on the SET statement represent?</p>
<p>A. A variable that represents the total number of observation in the output data set(s)<br />
B. A variable that represents a flag indicating the end of the file<br />
C. A variable that represents the total number of observations in the input data set(s)<br />
D. A variable that represents the current observation number</p>
<p>Answer: C</p>
<p>IT-Prüfungen A00-212 SAS Advanced Programming Exam for SAS 9 www.it-pruefungen.ch</p>
<p>QUESTION 5<br />
CORRECT TEXT</p>
<p>CORRECT TEXT<br />
The following SAS program is submitted:<br />
%macro check(num=4);<br />
%let result=%sysevalf(&amp;num+0.5);<br />
%put result is &amp;result;<br />
%mend;<br />
%check(num=10)<br />
What is the written to the SAS log?</p>
<p>A. 0.5<br />
B. 10<br />
C. 10.5<br />
D. 10+0.5</p>
<p>Answer: C</p>
<p>QUESTION 6<br />
The following SAS program is submitted:<br />
%micro test(var);<br />
%let jobs=BLACKSMITH WORDSMITH SWORDSMITH;<br />
%let type=%index(&amp;jobs,&amp;var);<br />
%put type = &amp;type;<br />
%mend;<br />
%test(SMITH)<br />
What is the value of the macro variable TYPE when the %PUT statement executes?</p>
<p>A. 0<br />
B. Null<br />
C. 6<br />
D. 3</p>
<p>Answer: C</p>
<p>QUESTION 7<br />
The following SAS program is submitted:<br />
%macro check(num=4);<br />
%let result=%eval(&amp;nm gt 5);<br />
%put result is &amp;result;<br />
%mend;<br />
%check (num=10)<br />
What is written to the SAS log?</p>
<p>A. result is true<br />
B. result is 10 gt 5<br />
C. result is 1<br />
D. result is 0</p>
<p>Answer: C</p>
<p>QUESTION 8<br />
The following SAS program is submitted:<br />
data temp;<br />
length 1 b 3 x;<br />
infile &#8216;file reference&#8217;;<br />
input a b x;<br />
run;<br />
What is the result?</p>
<p>A. The data set TEMP is not created because variables A and B have invalid lengths<br />
B. The data set TEMP is created, but variable X is not created<br />
C. The data set TEMP is not created because variable A has an invalid length<br />
D. The data set TEMP is created and variable X has a length of 8</p>
<p>Answer: C</p>
<p><a href="https://www.it-pruefungen.ch/A00-212.htm">A00-212</a> Prüfungsfragen SAS Advanced Programming Exam for SAS 9 www.it-pruefungen.ch</p>
<p>QUESTION 8<br />
The following SAS program is submitted:<br />
%let dept=prod;<br />
%let prod=merchandise;<br />
The following message is written to the SAS log:<br />
The value is &#8220;merchandise&#8221;<br />
Which SAS System option writes this message to the SAS log?</p>
<p>A. %put the value is &#8220;&amp;&amp;&amp;dept&#8221;;<br />
B. %put the value is &#8220;&amp;&amp;&amp;dept&#8221;;<br />
C. %put the value is &#8220;&amp;&amp;&amp;dept&#8221;;<br />
D. %put the value is %quote(&amp;&amp;&amp;dept);</p>
<p>Answer: A</p>
]]></content:encoded>
			<wfw:commentRss>https://deutsch.pruefungsfrage.ch/2018/08/19/pruefungsvorbereitung-study-guide-a00-212-testfragen-pdf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
