<?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>simple recursion example - Wikitechy</title>
	<atom:link href="https://www.wikitechy.com/interview-questions/tag/simple-recursion-example/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.wikitechy.com/interview-questions/tag/simple-recursion-example/</link>
	<description>Interview Questions</description>
	<lastBuildDate>Fri, 03 Sep 2021 06:01:46 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://www.wikitechy.com/interview-questions/wp-content/uploads/2025/10/cropped-wikitechy-icon-32x32.png</url>
	<title>simple recursion example - Wikitechy</title>
	<link>https://www.wikitechy.com/interview-questions/tag/simple-recursion-example/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>What is the output of the following pseudo code ? Int a = 456, b, c, d = 10; b = a/d; c = a-b; print c ?</title>
		<link>https://www.wikitechy.com/interview-questions/recursion-and-iteration/what-is-the-output-of-the-following-pseudo-code-int-a-456-b-c-d-10-b-a-d-c-a-b-print-c/</link>
					<comments>https://www.wikitechy.com/interview-questions/recursion-and-iteration/what-is-the-output-of-the-following-pseudo-code-int-a-456-b-c-d-10-b-a-d-c-a-b-print-c/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Sat, 28 Aug 2021 17:21:53 +0000</pubDate>
				<category><![CDATA[Recursion and Iteration]]></category>
		<category><![CDATA[advantages of recursion in c]]></category>
		<category><![CDATA[fine the output of the following pseudocode]]></category>
		<category><![CDATA[good recursion examples]]></category>
		<category><![CDATA[integer a=456 b c d=10]]></category>
		<category><![CDATA[recursion and iteration examples]]></category>
		<category><![CDATA[recursion c]]></category>
		<category><![CDATA[recursion crecursion vs iteration example]]></category>
		<category><![CDATA[recursion examples in c]]></category>
		<category><![CDATA[recursion in c]]></category>
		<category><![CDATA[recursion in c programming]]></category>
		<category><![CDATA[recursion problems in c]]></category>
		<category><![CDATA[recursion program in c]]></category>
		<category><![CDATA[recursion vs iteration]]></category>
		<category><![CDATA[recursion vs iteration c++]]></category>
		<category><![CDATA[recursive function in c]]></category>
		<category><![CDATA[simple recursion example]]></category>
		<category><![CDATA[TCS Ninja Coding Questions with Answers | TCS Ninja Coding Questions 2021 | TCS Ninja Programming MCQ Questions]]></category>
		<category><![CDATA[what is recursion in c explain with example]]></category>
		<category><![CDATA[what will be the output of the following code statements]]></category>
		<category><![CDATA[What will be the output of the following code statements integer a]]></category>
		<category><![CDATA[what will be the output of the following pseudo-code statements]]></category>
		<category><![CDATA[what will be the output of the following pseudo-code statements: integer a = 984]]></category>
		<category><![CDATA[What will be the output of the following pseudocode]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2651</guid>

					<description><![CDATA[Answer : B. 411]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">What is the output of the following pseudo code ?</p>
<div class="CodeContent">
<div class="hddn">
<figure class="highlight">
<pre><code class="hljs bash" data-lang=""><span class="nt">Int a = <span class="hljs-number">456</span>, b, c, d = <span class="hljs-number">10</span>; 
b = a / d; 
c = a - b; 
<span class="hljs-built_in">print</span> c</span></code></pre>
</figure>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<p>A. 411.4</p>
</div>
<div class="col-sm-4">
<p>B. 411</p>
</div>
<div class="col-sm-4">
<p>C. 410.4</p>
</div>
<div class="col-sm-4">
<p>D. 410</p>
</div>
<div class="col-sm-4">
<p>E. None of these</p>
</div>
</div>
</div>
</div>
<h3 id="answer-b-411"><b>Answer : </b>B. 411</h3>
<div class="subheading">
<h2 id="explanation">Explanation:</h2>
</div>
<div class="Content">
<div class="hddn">
<p>b = 456/10<br />
= 45 (Quotient)<br />
c = 456 &#8211; 45<br />
= 411</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/recursion-and-iteration/what-is-the-output-of-the-following-pseudo-code-int-a-456-b-c-d-10-b-a-d-c-a-b-print-c/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Integer a =40, b =35, c=20, d =10 Comment about the output of the following two statements Print a*b/c-d Print a*b/(c-d) ?</title>
		<link>https://www.wikitechy.com/interview-questions/recursion-and-iteration/integer-a-40-b-35-c20-d-10-comment-about-the-output-of-the-following-two-statements-print-ab-c-d-print-ab-c-d/</link>
					<comments>https://www.wikitechy.com/interview-questions/recursion-and-iteration/integer-a-40-b-35-c20-d-10-comment-about-the-output-of-the-following-two-statements-print-ab-c-d-print-ab-c-d/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Sat, 28 Aug 2021 17:19:45 +0000</pubDate>
				<category><![CDATA[Recursion and Iteration]]></category>
		<category><![CDATA[advantages of recursion in c]]></category>
		<category><![CDATA[define recursion what are its types]]></category>
		<category><![CDATA[recursion c]]></category>
		<category><![CDATA[recursion examples]]></category>
		<category><![CDATA[recursion examples in c]]></category>
		<category><![CDATA[recursion in c]]></category>
		<category><![CDATA[recursion in c programming]]></category>
		<category><![CDATA[recursion problems in c]]></category>
		<category><![CDATA[recursive function in c]]></category>
		<category><![CDATA[simple recursion]]></category>
		<category><![CDATA[simple recursion example]]></category>
		<category><![CDATA[TCS Ninja Coding Questions with Answers | TCS Ninja Coding Questions 2021 | TCS Ninja Programming MCQ Questions]]></category>
		<category><![CDATA[types of recursion in c]]></category>
		<category><![CDATA[what is recursion in c explain with example]]></category>
		<category><![CDATA[What will be the output of the following code statements integer a 10 b]]></category>
		<category><![CDATA[what will be the output of the following pseudo-code statements]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2649</guid>

					<description><![CDATA[Answer : A . Differ by 80]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Integer a =40, b =35, c=20, d =10<br />
Comment about the output of the following two statements.</p>
<pre>I. Print a*b/c-d
II. Print a*b/(c-d)</pre>
<div class="row">
<div class="col-sm-6">
<p>A. Differ by 80</p>
</div>
<div class="col-sm-6">
<p>B. Same</p>
</div>
<div class="col-sm-6">
<p>C. Differ by 50</p>
</div>
<div class="col-sm-6">
<p>D. Differ by 160</p>
</div>
</div>
</div>
</div>
<h3 id="answer-a-differ-by-80"><b>Answer : </b>A . Differ by 80</h3>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/recursion-and-iteration/integer-a-40-b-35-c20-d-10-comment-about-the-output-of-the-following-two-statements-print-ab-c-d-print-ab-c-d/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
