<?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>Editor, Author at Wikitechy</title>
	<atom:link href="https://www.wikitechy.com/interview-questions/author/editor/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.wikitechy.com/interview-questions/author/editor/</link>
	<description>Interview Questions</description>
	<lastBuildDate>Mon, 20 Sep 2021 10:56:52 +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>Editor, Author at Wikitechy</title>
	<link>https://www.wikitechy.com/interview-questions/author/editor/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Find the output : function modify(a,b) { Integer c,d=2 c= a*d+ b return c } Function calculate () { Integer a = 5, b = 20, c Integer d= 10 c = modify (a, b); c = c+ d Print c }</title>
		<link>https://www.wikitechy.com/interview-questions/function-and-scope/find-the-output-function-modifyab-integer-cd2-c-ad-b-return-c-function-calculate-integer-a-5-b-20-c-integer-d-10-c-modify-a-b-c-c-d-print-c/</link>
					<comments>https://www.wikitechy.com/interview-questions/function-and-scope/find-the-output-function-modifyab-integer-cd2-c-ad-b-return-c-function-calculate-integer-a-5-b-20-c-integer-d-10-c-modify-a-b-c-c-d-print-c/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Sat, 28 Aug 2021 17:29:11 +0000</pubDate>
				<category><![CDATA[Function and Scope]]></category>
		<category><![CDATA[c programming functions exercises]]></category>
		<category><![CDATA[Consider the following code:Function modify]]></category>
		<category><![CDATA[Consider the following code:Function modify { Integer c]]></category>
		<category><![CDATA[d=2]]></category>
		<category><![CDATA[find output of c program]]></category>
		<category><![CDATA[find output of c program with answers]]></category>
		<category><![CDATA[find the output of c program questions]]></category>
		<category><![CDATA[find the output of the following c program]]></category>
		<category><![CDATA[function in c programming examples]]></category>
		<category><![CDATA[functions in c programming]]></category>
		<category><![CDATA[output of c program examples]]></category>
		<category><![CDATA[return -1 in c programming]]></category>
		<category><![CDATA[syntax of function in c]]></category>
		<category><![CDATA[TCS Ninja Coding Questions with Answers | TCS Ninja Coding Questions 2021 | TCS Ninja Programming MCQ Questions]]></category>
		<category><![CDATA[types of functions in c]]></category>
		<category><![CDATA[user defined functions in c]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2654</guid>

					<description><![CDATA[Answer : B . 40]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Find the output :</p>
<div class="CodeContent">
<div class="hddn">
<figure class="highlight">
<pre><code id="code1" class="hljs javascript" data-lang=""><span class="nt"><span class="hljs-built_in">Function</span> modify (a , b) 
{
      Integer c , d = <span class="hljs-number">2</span> 
      c= a * d + b 
      <span class="hljs-keyword">return</span> c 
}

<span class="hljs-built_in">Function</span> calculate () 
{
     Integer a = <span class="hljs-number">5</span>, b = <span class="hljs-number">20</span>, c 
     Integer d = <span class="hljs-number">10</span> 
     c = modify (a, b); 
     c = c + d 
     Print c
 }</span></code></pre>
</figure>
</div>
</div>
<div class="row">
<div class="col-sm-6">A . 80</div>
<div class="col-sm-6">
<p>B . 40</p>
</div>
<div class="col-sm-6">
<p>C . 32</p>
</div>
<div class="col-sm-6">
<p>D . 72</p>
</div>
</div>
</div>
</div>
<h3 id="answer-b-40"><b>Answer : </b>B . 40</h3>
<div class="subheading">
<h2 id="explanation">Explanation :</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li style="list-style-type: none;">
<ul>c = ?</ul>
</li>
</ul>
<ul>
<li style="list-style-type: none;">
<ul>d = 2</ul>
</li>
</ul>
<ul>
<li style="list-style-type: none;">
<ul>c = a * d + b</ul>
</li>
</ul>
<ul>
<li style="list-style-type: none;">
<ul>c = a * 2 + b then a = 5 b = 20</ul>
</li>
</ul>
<ul>
<li style="list-style-type: none;">
<ul>c = ?</ul>
</li>
</ul>
<ul>
<li style="list-style-type: none;">
<ul>c = c + d</ul>
</li>
</ul>
<ul>
<li style="list-style-type: none;">
<ul>c = a * 2 + b + d</ul>
</li>
</ul>
<ul>c = 5 * 2 + 20 + 10 = 40</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/function-and-scope/find-the-output-function-modifyab-integer-cd2-c-ad-b-return-c-function-calculate-integer-a-5-b-20-c-integer-d-10-c-modify-a-b-c-c-d-print-c/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is the output of this C code ? &#124; Recursion Program in C &#124; Recursion in C</title>
		<link>https://www.wikitechy.com/interview-questions/recursion-and-iteration/what-is-the-output-of-this-c-code-recursion-program-in-c-recursion-in-c/</link>
					<comments>https://www.wikitechy.com/interview-questions/recursion-and-iteration/what-is-the-output-of-this-c-code-recursion-program-in-c-recursion-in-c/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Sat, 28 Aug 2021 17:26:53 +0000</pubDate>
				<category><![CDATA[Recursion and Iteration]]></category>
		<category><![CDATA[c functions list]]></category>
		<category><![CDATA[c programming functions exercises]]></category>
		<category><![CDATA[c programming if else example]]></category>
		<category><![CDATA[c programming if else exercises]]></category>
		<category><![CDATA[c++ if else practice problems]]></category>
		<category><![CDATA[else if ladder in c flowchart]]></category>
		<category><![CDATA[else if statement c programming]]></category>
		<category><![CDATA[function call in c]]></category>
		<category><![CDATA[function declaration in c]]></category>
		<category><![CDATA[functions in c programming with examples]]></category>
		<category><![CDATA[if else c]]></category>
		<category><![CDATA[if else if]]></category>
		<category><![CDATA[if else if ladder example in java]]></category>
		<category><![CDATA[if else if ladder in c++]]></category>
		<category><![CDATA[if else ladder in java]]></category>
		<category><![CDATA[if else program in c]]></category>
		<category><![CDATA[if else statement]]></category>
		<category><![CDATA[if else statement c++]]></category>
		<category><![CDATA[if else statement in c]]></category>
		<category><![CDATA[if else statement java]]></category>
		<category><![CDATA[nested if else c++]]></category>
		<category><![CDATA[nested if else in c programming examples]]></category>
		<category><![CDATA[nested if else in java]]></category>
		<category><![CDATA[syntax of function in c]]></category>
		<category><![CDATA[TCS Ninja Coding Questions with Answers | TCS Ninja Coding Questions 2021 | TCS Ninja Programming MCQ Questions]]></category>
		<category><![CDATA[types of functions in c]]></category>
		<category><![CDATA[types of functions in cuser defined functions in c]]></category>
		<category><![CDATA[user defined functions in c]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2653</guid>

					<description><![CDATA[Answer : D. This code will generate an error.]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">What is the output of this C code ?</p>
<div class="CodeContent">
<div class="hddn">
<figure class="highlight">
<pre><code class="hljs bash" data-lang=""><span class="nt">Function <span class="hljs-function"><span class="hljs-title">main</span></span>() {
  Integer i = <span class="hljs-number">0.7</span> Static <span class="hljs-built_in">float</span> m = <span class="hljs-number">0.7</span>
  If(m equals i)
  Print(“We are equal”)
  Else
  If(m &gt; i)
  Print(“I am greater”)
  Else
  Print(“I am lesser”)
}</span></code></pre>
</figure>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<p>A. We are equal.</p>
</div>
<div class="col-sm-6">
<p>B. I am greater.</p>
</div>
<div class="col-sm-6">
<p>C. I am lesser.</p>
</div>
<div class="col-sm-6">
<p>D. This code will generate an error.</p>
</div>
</div>
</div>
</div>
<h3 id="answer-d-this-code-will-generate-an-error"><b>Answer : </b>D. This code will generate an error.</h3>
<div class="subheading">
<h2 id="explanation">Explanation:</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Two different <a href="https://www.wikitechy.com/tutorials/c-programming/c-data-type" target="_blank" rel="noopener">data types</a> cannot be linked with each other without <a href="https://www.wikitechy.com/tutorials/c-programming/typecasting-in-c" target="_blank" rel="noopener">type-casting</a>.</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/recursion-and-iteration/what-is-the-output-of-this-c-code-recursion-program-in-c-recursion-in-c/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Ravi and Rupali are asked to write a program to sum the rows of 2X2 matrices stored in the array A..?</title>
		<link>https://www.wikitechy.com/interview-questions/recursion-and-iteration/ravi-and-rupali-are-asked-to-write-a-program-to-sum-the-rows-of-2x2-matrices-stored-in-the-array-a/</link>
					<comments>https://www.wikitechy.com/interview-questions/recursion-and-iteration/ravi-and-rupali-are-asked-to-write-a-program-to-sum-the-rows-of-2x2-matrices-stored-in-the-array-a/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Sat, 28 Aug 2021 17:26:14 +0000</pubDate>
				<category><![CDATA[Recursion and Iteration]]></category>
		<category><![CDATA[3*3 matrix addition program in c]]></category>
		<category><![CDATA[addition of two matrix in c using 2d array]]></category>
		<category><![CDATA[c functions list]]></category>
		<category><![CDATA[c program for matrix addition and subtraction using two dimensional array]]></category>
		<category><![CDATA[c programming functions exercises]]></category>
		<category><![CDATA[c programming if else example]]></category>
		<category><![CDATA[c programming if else exercises]]></category>
		<category><![CDATA[c++ if else practice problems]]></category>
		<category><![CDATA[else if ladder in c flowchart]]></category>
		<category><![CDATA[else if statement c programming]]></category>
		<category><![CDATA[function call in c]]></category>
		<category><![CDATA[function declaration in c]]></category>
		<category><![CDATA[functions in c programming with examples]]></category>
		<category><![CDATA[if else if ladder example in java]]></category>
		<category><![CDATA[if else if ladder in c++]]></category>
		<category><![CDATA[if else ladder in java]]></category>
		<category><![CDATA[if else statement c++]]></category>
		<category><![CDATA[if else statement java]]></category>
		<category><![CDATA[matrix multiplication in c]]></category>
		<category><![CDATA[nested if else c++]]></category>
		<category><![CDATA[nested if else in c programming examples]]></category>
		<category><![CDATA[nested if else in java]]></category>
		<category><![CDATA[program to sum the rows of 2X2 matrices]]></category>
		<category><![CDATA[program to sum the rows of 2X2 matrices stored in the array A]]></category>
		<category><![CDATA[Ravi and Rupali are asked to write a program to sum the rows]]></category>
		<category><![CDATA[recursion in c]]></category>
		<category><![CDATA[recursion program in c]]></category>
		<category><![CDATA[recursion vs iteration c++]]></category>
		<category><![CDATA[recursion vs iteration example]]></category>
		<category><![CDATA[sum of elements in 2d array in c]]></category>
		<category><![CDATA[sum of rows and columns in 2d array in c++]]></category>
		<category><![CDATA[sum of rows and columns in 2d array in java]]></category>
		<category><![CDATA[syntax of function in c]]></category>
		<category><![CDATA[TCS Ninja Coding Questions with Answers | TCS Ninja Coding Questions 2021 | TCS Ninja Programming MCQ Questions]]></category>
		<category><![CDATA[types of functions in cuser defined functions in c]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2652</guid>

					<description><![CDATA[Answer : B. Code b will execute faster than a]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Ravi and Rupali are asked to write a program to sum the rows of 2X2 matrices stored in the array A.<br />
Ravi writes the following code (Code A):</p>
<pre> for n = 0 to 1 
 sumRow1[n] = A[n][1] + A[n][2]
 end</pre>
<p class="color-pink">Rupali writes the following code (Code B):</p>
<pre>sumRow1[0] = A[0][1] + A[0][2] 
sumRow1[1] = A[1][1] + A[1][2]</pre>
<p>Comment upon these codes (Assume no loop unrolling done by compiler) ?</p>
<div class="row">
<div class="col-sm-6">
<p>A. Code a will execute faster than b.</p>
</div>
<div class="col-sm-6">
<p>B. Code b will execute faster than a.</p>
</div>
<div class="col-sm-6">
<p>C. Code a is logically incorrect.</p>
</div>
<div class="col-sm-6">
<p>D. Code b is logically incorrect</p>
</div>
</div>
</div>
</div>
<h3 id="answer-b-code-b-will-execute-faster-than-a"><b>Answer : </b>B. Code b will execute faster than a</h3>
<div class="subheading">
<h2 id="explanation">Explanation:</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Both codes are taking two steps of operation, so same complexity.</li>
<li>But if we consider the overhead of <a href="https://www.wikitechy.com/tutorials/c-programming/loops-in-c" target="_blank" rel="noopener">looping</a> (as it takes time to increment counter) then code b will be faster.</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/recursion-and-iteration/ravi-and-rupali-are-asked-to-write-a-program-to-sum-the-rows-of-2x2-matrices-stored-in-the-array-a/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<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>
		<item>
		<title>The construct “if (condition) then A else B” is used for which of the following purposes ?</title>
		<link>https://www.wikitechy.com/interview-questions/recursion-and-iteration/the-construct-if-condition-then-a-else-b-is-used-for-which-of-the-following-purposes/</link>
					<comments>https://www.wikitechy.com/interview-questions/recursion-and-iteration/the-construct-if-condition-then-a-else-b-is-used-for-which-of-the-following-purposes/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Sat, 28 Aug 2021 17:17:58 +0000</pubDate>
				<category><![CDATA[Recursion and Iteration]]></category>
		<category><![CDATA[decision making and branching in c]]></category>
		<category><![CDATA[decision making and looping in c]]></category>
		<category><![CDATA[decision making statement program]]></category>
		<category><![CDATA[decision making statements]]></category>
		<category><![CDATA[decision making statements in c]]></category>
		<category><![CDATA[decision making statements in c with examples]]></category>
		<category><![CDATA[if else statement in c]]></category>
		<category><![CDATA[if statement in c]]></category>
		<category><![CDATA[looping statements in c]]></category>
		<category><![CDATA[switch statement in c++]]></category>
		<category><![CDATA[TCS Ninja Coding Questions with Answers | TCS Ninja Coding Questions 2021 | TCS Ninja Programming MCQ Questions]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2648</guid>

					<description><![CDATA[Answer : A. Decision making]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">The construct “if (condition) then A else B” is used for which of the following purposes ?</p>
<div class="row">
<div class="col-sm-6">
<p>A. Decision making</p>
</div>
<div class="col-sm-6">
<p>B. Iteration</p>
</div>
<div class="col-sm-6">
<p>C. Recursion</p>
</div>
<div class="col-sm-6">
<p>D. Object oriented programming</p>
</div>
</div>
</div>
</div>
<h3 id="answer-a-decision-making"><b>Answer : </b>A. Decision making</h3>
<div class="subheading">
<h2 id="explanation">Explanation:</h2>
</div>
<div class="subheading">
<h2 id="if-else-for-decision-making" class="color-green">If-Else for Decision Making:</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>The if statement alone tells us that if a condition is true it will execute a block of statements and if the condition is false it won’t. But what if we want to do something else if the condition is false. Here comes the else statement. We can use the else statement with if statement to execute a block of code when the condition is false.</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/recursion-and-iteration/the-construct-if-condition-then-a-else-b-is-used-for-which-of-the-following-purposes/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Ashima wants to print a pattern which includes checking and changing a variables value iteratively She decides to use a loop/condition &#8230;</title>
		<link>https://www.wikitechy.com/interview-questions/recursion-and-iteration/ashima-wants-to-print-a-pattern-which-includes-checking-and-changing-a-variables-value-iteratively-she-decides-to-use-a-loop-condition/</link>
					<comments>https://www.wikitechy.com/interview-questions/recursion-and-iteration/ashima-wants-to-print-a-pattern-which-includes-checking-and-changing-a-variables-value-iteratively-she-decides-to-use-a-loop-condition/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Sat, 28 Aug 2021 17:16:15 +0000</pubDate>
				<category><![CDATA[Recursion and Iteration]]></category>
		<category><![CDATA[a while statement must execute its loop at least once]]></category>
		<category><![CDATA[Ashima wants to print a pattern]]></category>
		<category><![CDATA[Ashima wants to print a pattern which includes checking]]></category>
		<category><![CDATA[Ashima wants to print a pattern which includes checking and changing a variables]]></category>
		<category><![CDATA[Ashima wants to use a loop/conditiondo while c#]]></category>
		<category><![CDATA[difference between recursion and iteration in]]></category>
		<category><![CDATA[difference between recursion and iteration in c with example]]></category>
		<category><![CDATA[difference between recursion and iteration with example]]></category>
		<category><![CDATA[do while c++]]></category>
		<category><![CDATA[do while javado while loop c++]]></category>
		<category><![CDATA[do while loop]]></category>
		<category><![CDATA[do while loop javascript]]></category>
		<category><![CDATA[does a for loop always run once java]]></category>
		<category><![CDATA[does a for loop execute at least once java]]></category>
		<category><![CDATA[recursion and iteration examples]]></category>
		<category><![CDATA[recursion c]]></category>
		<category><![CDATA[recursion vs iteration]]></category>
		<category><![CDATA[recursion vs iteration advantages]]></category>
		<category><![CDATA[recursion vs iteration c++]]></category>
		<category><![CDATA[recursion vs iteration example]]></category>
		<category><![CDATA[TCS Ninja Coding Questions with Answers | TCS Ninja Coding Questions 2021 | TCS Ninja Programming MCQ Questions]]></category>
		<category><![CDATA[the body of a do ... while loop executes at least one time.]]></category>
		<category><![CDATA[what is recursion]]></category>
		<category><![CDATA[what loop always executes at least once]]></category>
		<category><![CDATA[which loop executes at least once]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2647</guid>

					<description><![CDATA[Answer : C. Do-while loop]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Ashima wants to print a pattern which includes checking and changing a variables value iteratively She decides to use a loop/condition Which of the following options should she use such that the body of the loop/condition is executed at least once whether the variable satisfies the entering condition or not ?</p>
<div class="row">
<div class="col-sm-4">
<p>A. For loop</p>
</div>
<div class="col-sm-4">
<p>B. While loop</p>
</div>
<div class="col-sm-4">
<p>C. Do-while loop</p>
</div>
<div class="col-sm-4">
<p>D. Switch case</p>
</div>
<div class="col-sm-4">
<p>E. None of these</p>
</div>
</div>
</div>
</div>
<h3 id="answer-c-do-while-loop"><b>Answer : </b>C. Do-while loop</h3>
<div class="subheading">
<h2 id="explanation">Explanation:</h2>
</div>
<div class="subheading">
<h2 id="do-while-loop" class="color-green">Do While Loop :</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Unlike for and while loops, which test the loop condition at the top of the loop, the do&#8230;while loop in C programming checks its condition at the bottom of the loop.</li>
<li>A do&#8230;while loop is similar to a while loop, except the fact that it is guaranteed to execute at least one time.</li>
</ul>
<div class="subheading">
<h2 id="syntax-for-do-while-loop" class="color-green">Syntax for Do While Loop :</h2>
</div>
<div class="CodeContent">
<div class="hddn">
<figure class="highlight">
<pre><code class="hljs bash" data-lang=""><span class="nt"><span class="hljs-keyword">do</span> {
     statement(s);
}    <span class="hljs-keyword">while</span>( condition );</span></code></pre>
</figure>
</div>
</div>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/recursion-and-iteration/ashima-wants-to-print-a-pattern-which-includes-checking-and-changing-a-variables-value-iteratively-she-decides-to-use-a-loop-condition/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is the output of this C code ? &#124; Recursive Function in C Program</title>
		<link>https://www.wikitechy.com/interview-questions/recursion-and-iteration/what-is-the-output-of-this-c-code-recursive-function-in-c-program/</link>
					<comments>https://www.wikitechy.com/interview-questions/recursion-and-iteration/what-is-the-output-of-this-c-code-recursive-function-in-c-program/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Sat, 28 Aug 2021 17:14:35 +0000</pubDate>
				<category><![CDATA[Recursion and Iteration]]></category>
		<category><![CDATA[algorithm for switch case in c]]></category>
		<category><![CDATA[c program for switch case using function]]></category>
		<category><![CDATA[C programming switch case examples]]></category>
		<category><![CDATA[C programming switch case Examples/Programs]]></category>
		<category><![CDATA[C programming switch case Programs]]></category>
		<category><![CDATA[C switch case Statement]]></category>
		<category><![CDATA[How does the switch and break work in C]]></category>
		<category><![CDATA[Java switch Statement]]></category>
		<category><![CDATA[Program for Switch Case with and without break statement]]></category>
		<category><![CDATA[switch case]]></category>
		<category><![CDATA[switch case c]]></category>
		<category><![CDATA[switch case example in c]]></category>
		<category><![CDATA[switch case exercises in c]]></category>
		<category><![CDATA[switch case in c programming examples]]></category>
		<category><![CDATA[switch case in c programming questions]]></category>
		<category><![CDATA[switch case program in c]]></category>
		<category><![CDATA[switch case statement in C Programming]]></category>
		<category><![CDATA[switch statement in c++]]></category>
		<category><![CDATA[TCS Ninja Coding Questions with Answers | TCS Ninja Coding Questions 2021 | TCS Ninja Programming MCQ Questions]]></category>
		<category><![CDATA[What is switch condition]]></category>
		<category><![CDATA[while c programming]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2646</guid>

					<description><![CDATA[Answer : D. Error]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">What is the output of this C code ?</p>
<div class="CodeContent">
<div class="hddn">
<figure class="highlight">
<pre><code class="hljs bash" data-lang=""><span class="nt">Function <span class="hljs-function"><span class="hljs-title">main</span></span>() {
  <span class="hljs-built_in">integer</span> a = <span class="hljs-number">5</span>, b = <span class="hljs-number">7</span>
  Switch(a) {
    Case <span class="hljs-number">5</span>: <span class="hljs-built_in">print</span> <span class="hljs-string">"I am 5"</span>
    Break
    Case b: <span class="hljs-built_in">print</span> <span class="hljs-string">"I am not 5"</span>
    Break
    Default: <span class="hljs-built_in">print</span> <span class="hljs-string">"I am different"</span>
  }
}
</span></code></pre>
</figure>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<p>A. I am 5</p>
</div>
<div class="col-sm-4">
<p>B. I am not 5</p>
</div>
<div class="col-sm-4">
<p>C. I am different</p>
</div>
<div class="col-sm-4">
<p>D. Error</p>
</div>
<div class="col-sm-4">
<p>E. None of these</p>
</div>
</div>
</div>
</div>
<h3 id="answer-d-error"><b>Answer : </b>D. Error</h3>
<div class="subheading">
<h2 id="explanation">Explanation:</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Break doesn’t have &#8220;;&#8221; (Semi Colon missing in break command)</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/recursion-and-iteration/what-is-the-output-of-this-c-code-recursive-function-in-c-program/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>TCS Ninja Test pattern and Syllabus</title>
		<link>https://www.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-test-pattern-and-syllabus/</link>
					<comments>https://www.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-test-pattern-and-syllabus/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Sat, 28 Aug 2021 15:24:05 +0000</pubDate>
				<category><![CDATA[TCS Ninja]]></category>
		<category><![CDATA[general aptitude test papers with answers]]></category>
		<category><![CDATA[Instruction for TCS Ninja]]></category>
		<category><![CDATA[tcs 2016]]></category>
		<category><![CDATA[tcs aptitude]]></category>
		<category><![CDATA[tcs aptitude papers]]></category>
		<category><![CDATA[tcs aptitude questions]]></category>
		<category><![CDATA[tcs aptitude test]]></category>
		<category><![CDATA[tcs aptitude test online]]></category>
		<category><![CDATA[tcs aptitude test papers]]></category>
		<category><![CDATA[tcs aptitude test pattern]]></category>
		<category><![CDATA[tcs aptitude test questions]]></category>
		<category><![CDATA[tcs aptitude test questions and answers]]></category>
		<category><![CDATA[tcs company]]></category>
		<category><![CDATA[tcs company details]]></category>
		<category><![CDATA[tcs company profile]]></category>
		<category><![CDATA[tcs digital coding questions]]></category>
		<category><![CDATA[tcs digital coding questions with answers]]></category>
		<category><![CDATA[tcs digital exam pattern]]></category>
		<category><![CDATA[tcs digital pattern]]></category>
		<category><![CDATA[tcs digital syllabus]]></category>
		<category><![CDATA[tcs digital syllabus 2019]]></category>
		<category><![CDATA[tcs digital syllabus 2020]]></category>
		<category><![CDATA[tcs exam]]></category>
		<category><![CDATA[tcs it company]]></category>
		<category><![CDATA[tcs latest recruitment]]></category>
		<category><![CDATA[tcs mock test]]></category>
		<category><![CDATA[tcs mock test papers with solutions]]></category>
		<category><![CDATA[tcs ninja]]></category>
		<category><![CDATA[tcs ninja 2020 syllabus]]></category>
		<category><![CDATA[tcs ninja exam 2019]]></category>
		<category><![CDATA[tcs ninja exam date 2019]]></category>
		<category><![CDATA[tcs ninja interview questions and answers]]></category>
		<category><![CDATA[tcs ninja package]]></category>
		<category><![CDATA[tcs ninja questions]]></category>
		<category><![CDATA[tcs ninja syllabus]]></category>
		<category><![CDATA[tcs ninja test papers]]></category>
		<category><![CDATA[tcs ninja test pattern]]></category>
		<category><![CDATA[tcs nqt syllabus 2019]]></category>
		<category><![CDATA[tcs online mock test]]></category>
		<category><![CDATA[tcs online test]]></category>
		<category><![CDATA[tcs online test for freshers]]></category>
		<category><![CDATA[tcs online test question and answers]]></category>
		<category><![CDATA[tcs placement papers]]></category>
		<category><![CDATA[tcs practice test]]></category>
		<category><![CDATA[tcs previous papers]]></category>
		<category><![CDATA[tcs test]]></category>
		<category><![CDATA[tcs test papers]]></category>
		<category><![CDATA[tcs test pattern]]></category>
		<category><![CDATA[tcs testing jobs]]></category>
		<category><![CDATA[tcs website]]></category>
		<category><![CDATA[tcs written test papers]]></category>
		<category><![CDATA[tcs written test papers with answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2640</guid>

					<description><![CDATA[Answer : The test pattern for TCS enrollment 2021 is given below.]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-test-pattern-and-syllabus" class="color-pink">TCS Ninja Test pattern and Syllabus</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>The test pattern for TCS enrollment 2021 is given below.</li>
</ul>
</div>
</div>
<div class="table-responsive">
<table class="table-bordered table-striped table table-responsive">
<tbody>
<tr>
<th>Section</th>
<th>Duration</th>
<th>No. of Questions</th>
</tr>
<tr>
<td><a href="https://www.wikitechy.com/interview-questions/verbal-ability/" target="_blank" rel="noopener">English</a></td>
<td>10 mins</td>
<td>10</td>
</tr>
<tr>
<td><a href="https://www.wikitechy.com/interview-questions/aptitude/" target="_blank" rel="noopener">Quantitative Aptitude</a></td>
<td>40 mins</td>
<td>20</td>
</tr>
<tr>
<td><a href="https://www.wikitechy.com/interview-questions/programming/" target="_blank" rel="noopener">Programming Concepts</a></td>
<td>20 mins</td>
<td>10</td>
</tr>
<tr>
<td><a href="https://www.wikitechy.com/interview-questions/programming/" target="_blank" rel="noopener">Coding</a></td>
<td>20 mins</td>
<td>1</td>
</tr>
</tbody>
</table>
</div>
<div class="Content">
<div class="hddn">
<p align="justify">At one time you clear the TCS online test, then students will be called for personal interview. Post the assessment, interview date and location will be communicated to the candidates personally.</p>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-off-campus-drive-syllabus" class="color-red">TCS Ninja Off Campus Drive &#8211; Syllabus</h2>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-quantitative-aptitude-syllabus" class="color-blue">TCS Ninja &#8211; Quantitative Aptitude Syllabus</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<div class="col-sm-6">
<ul>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/numbers/">Number system</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/lcm-and-hcf/">HCF &amp; LCM</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/time-and-distance/">Time, Speed &amp; Distance</a></li>
<li><a href="https://www.wikitechy.com/online-videos/aptitude-shortcuts-and-tricks/alligation-of-mixture-interview-questions-and-answers-part1">Mixtures &amp; Allegations</a></li>
<li><a href="https://www.wikitechy.com/online-videos/aptitude-shortcuts-and-tricks/time-and-work-interview-questions-and-answers-part1">Time &amp; Work, Percentages</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/permutation-and-combination/">Permutation &amp; Combination</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/profit-and-loss/">Profit &amp; Loss</a></li>
</ul>
</div>
<div class="col-sm-6">
<ul>
<li><a href="https://www.wikitechy.com/tutorials/c-programming/library-functions-in-c">Functions</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/logical-reasoning/number-series/16-24-48-120-360-1260">Series &amp; Progression</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/logarithm/the-equation-loga-x-loga">Equations</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/verbal-reasoning/blood-relation/p-q-means-p-is-sister-of-q">Blood Relations</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/">Algebra, Averages</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/geometry/a-polygon-has-77-diagonals-determine-the-number-of-sides">Geometry</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/">Clocks &amp; Calendar</a></li>
</ul>
</div>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-verbal-ability-syllabus" class="color-blue">TCS Ninja &#8211; Verbal Ability Syllabus</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>TCS Ninja<a href="https://www.wikitechy.com/interview-questions/verbal-ability/"> Verbal ability questions</a> will be based on Sentence Completion.</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-programming-syllabus" class="color-blue">TCS Ninja Programming Syllabus</h2>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="programming-concepts" class="color-black">Programming Concepts:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li><a href="https://www.wikitechy.com/technology/determine-first-last-iteration-foreach-loop/" target="_blank" rel="noopener">Iteration</a>, <a href="https://www.wikitechy.com/tutorials/r-programming/recursive-function" target="_blank" rel="noopener">recursion</a>, procedural vs<a href="https://www.wikitechy.com/interview-questions/cpp/what-are-the-oops-concepts" target="_blank" rel="noopener"> OOp</a>.</li>
<li><a href="https://www.wikitechy.com/interview-questions/c/" target="_blank" rel="noopener">C Language</a>:
<ul>
<li><a href="https://www.wikitechy.com/technology/tag/c-program-to-swap-two-numbers-using-call-by-value/" target="_blank" rel="noopener">Call by value</a>/<a href="https://www.wikitechy.com/tutorials/c++/call-by-reference-in-c++" target="_blank" rel="noopener">reference</a>, Basic and Derived <a href="https://www.wikitechy.com/tutorials/c-programming/c-data-type" target="_blank" rel="noopener">Data types</a>, Storage class, Scope and Visibility, <a href="https://www.wikitechy.com/tutorials/c-programming/what-is-pointer-in-c" target="_blank" rel="noopener">Basics of Pointers</a>, Basic header files, Library functions, Branching and <a href="https://www.wikitechy.com/tutorials/c-programming/loops-in-c" target="_blank" rel="noopener">Looping</a>, <a href="https://www.wikitechy.com/tutorials/c-programming/command-line-arguments-in-c" target="_blank" rel="noopener">Command line arguments</a>, <a href="https://www.wikitechy.com/tutorials/c-programming/c-library-and-user-define-functions" target="_blank" rel="noopener">User-defined functions</a>.</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="algorithms">Algorithms</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Basic <a href="https://www.wikitechy.com/technology/binary-search-2/" target="_blank" rel="noopener">Search and Sort Algorithms</a> (<a href="https://www.wikitechy.com/technology/c-programming-tree-traversals-inorder-preorder-postorder/" target="_blank" rel="noopener">Tree traversal</a>, <a href="https://www.wikitechy.com/technology/category/algorithm/dynamic-programming/" target="_blank" rel="noopener">Dynamic Programming</a>, etc)</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="data-structures">Data Structures:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li><a href="https://www.wikitechy.com/tutorials/javascript/unique-values-in-an-array" target="_blank" rel="noopener">Array</a>, <a href="https://www.wikitechy.com/technology/queue-data-structure-implement-queue-using-stacks/" target="_blank" rel="noopener">Stack, Queue</a>, <a href="https://www.wikitechy.com/tutorials/c-programming/linked-list-in-c" target="_blank" rel="noopener">List</a> (Tree, <a href="https://www.wikitechy.com/tutorials/java/java-hash-table" target="_blank" rel="noopener">Hash table</a>, etc)</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="coding" class="color-blue">Coding</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>TCS Ninja Coding Question with Solution -&gt; <a href="https://www.wikitechy.com/interview-questions/programming/" target="_blank" rel="noopener">Click Here</a></li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="instructions" class="color-green">Instructions</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Only One question, 20 minutes.</li>
<li>Choice of <a href="https://www.wikitechy.com/engineering-interview-questions-and-answers/computer-science-engineering/c-programming-interview-questions-and-answers-part1">C </a>/<a href="https://www.wikitechy.com/engineering-interview-questions-and-answers/computer-science-engineering/cpp-interview-questions-and-answers-part1"> C++</a> / <a href="https://www.wikitechy.com/technology/java-programming-randomized-algorithms/">Java</a> /<a href="https://www.wikitechy.com/interview-questions/shell-script/what-is-the-difference-between-shell-script-and-perl"> Perl</a> /<a href="https://www.wikitechy.com/tutorials/python/python-coding-interview-questions-and-answers"> Python 2.7</a>.</li>
<li>Provided an IDE to debug.</li>
<li>For Java, the class name should be named Maze.</li>
<li>Input to the program either through STDIN / Command line arguments, as per the instructions.</li>
<li>Program should write the output to STDOUT.</li>
<li>Public and private test cases based evaluation.</li>
</ul>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul class="note">
<li>While printing the output no leading or trailing spaces should be printed.</li>
<li>Other than the required output, no other text should be printed.</li>
<li>If the output is a number, no leading sign must be printed unless it is a negative number.</li>
<li>No scientific notation (3.9265E + 2).</li>
<li>All floating point numbers must contain that many decimal places as mentioned in the question.</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="instructions-for-tcs-ninja-exam-pattern" class="color-green">Instructions for TCS Ninja exam pattern</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>The test will progress as per specified in the above table. But <b>Once you move from one group to another, you cannot go back to the previous group</b>. For example, once you have moved to Quantitative Aptitude, you can’t go back to English and so on.</li>
<li>The timer shown on the test screen will show the time resting to complete each group. Each group has independent timers and when the timer start the first question present on the screen.</li>
<li>The <b>test period for each group is fixed</b>. For example: If you complete a group in limited time, the left over time will not be carried to the remaining groups.</li>
<li>At the end of every group <b>Click SUBMIT</b> to move to the next group.</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-test-pattern-and-syllabus/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>TCS Ninja Registration 2021</title>
		<link>https://www.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-registration-2021/</link>
					<comments>https://www.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-registration-2021/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Sat, 28 Aug 2021 15:18:51 +0000</pubDate>
				<category><![CDATA[TCS Ninja]]></category>
		<category><![CDATA[tcs national qualifier test 2019]]></category>
		<category><![CDATA[tcs ninja 2019 syllabus]]></category>
		<category><![CDATA[tcs ninja 2020]]></category>
		<category><![CDATA[tcs ninja 2020 exam date]]></category>
		<category><![CDATA[tcs ninja 2020 registration]]></category>
		<category><![CDATA[tcs ninja nqt requirement process]]></category>
		<category><![CDATA[tcs ninja registration]]></category>
		<category><![CDATA[tcs ninja registration 2019]]></category>
		<category><![CDATA[tcs ninja registration 2020]]></category>
		<category><![CDATA[tcs ninja registration process]]></category>
		<category><![CDATA[tcs ninja registration steps]]></category>
		<category><![CDATA[tcs nqt]]></category>
		<category><![CDATA[tcs nqt 2019]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2638</guid>

					<description><![CDATA[Answer : To apply for TCS National Qualifier Test(NQT), Go to TCS Careers Official Website. Now You will see on the below page.]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-nqt-registration" class="color-purple">TCS Ninja NQT Registration</h2>
</div>
</div>
<p>Follow these steps to apply for TCS National Qualifier Test(NQT).</p>
<div class="TextHeading">
<div class="hddn">
<h2 id="step-1" class="color-red">Step 1:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>To apply for <b>TCS National Qualifier Test(NQT)</b>, Go to <a href="https://careers.tcs.com/#1%40IID%40Home%2FCatalogue%3DredirectTo~%40~%26subAction%3DviewMicrosite%26Link%3D%2Fdotcom%2Ftcsrh%2Flayout%2FMicrosite%2FTCSOffCampus%2FTCSTNQT_24May2019.html%26id%3DTCSTNQT24052019%26name%3DTCS%2BNational%2BQualifier%2BTest" target="_blank" rel="noopener">TCS Careers Official Website</a>. Now You will see on the below page.</li>
</ul>
</div>
</div>
<div class="ImageContent">
<div class="hddn"><img decoding="async" class="img-responsive  center-block" src="https://cdn.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-nqt-process.png" alt=" TCS Ninja Registration Process Step 1" /></div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="step-2" class="color-red">Step 2:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Click on the <b>&#8220;Register Now&#8221;</b> button. You will be redirected to <a href="https://www.wikitechy.com/online-videos/company-interview-questions-and-answers/tcs-interview-questions-and-answers-part1" target="_blank" rel="noopener">TCS</a> next step website as shown below. or Click on this link to go to TCS Next step Website &#8211; <a href="https://nextstep.tcs.com/campus/" target="_blank" rel="noopener">https://nextstep.tcs.com/campus/</a></li>
</ul>
</div>
</div>
<div class="ImageContent">
<div class="hddn"><img decoding="async" class="img-responsive  center-block" src="https://cdn.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-off-campus-drive-nextstep-registration.png" alt=" TCS Ninja Registration Process Step 2" /></div>
</div>
<div class="text-center row">
<div class="col-sm-12"></div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="step-3" class="color-red">Step 3:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>In this step, you should Select your <b>“IT Category”</b>. If you have created your profile under BPS, you will need to create your profile under ‘IT’ once again using your different email ID.</li>
</ul>
</div>
</div>
<div class="ImageContent">
<div class="hddn"><img decoding="async" class="img-responsive  center-block" src="https://cdn.wikitechy.com/interview-questions/tcs-ninja/tcs-next-step-registration.png" alt="TCS Ninja Registration Process Step 3" /></div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="step-4" class="color-red">Step 4:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Fill in the registration form details like name, DOB, gender, email id, mobile number, YOP, qualification, test center location, password, and security question. Once you have complete in these details, click on submit button.</li>
</ul>
</div>
</div>
<p class="note">Your registered email id and mobile number will be used by TCS for more communication about the interview process and results of TCS National Qualifier Test. Similarly, you cannot change the Test Location once you have submitted the Form.</p>
<div class="ImageContent">
<div class="hddn"><img decoding="async" class="img-responsive  center-block" src="https://cdn.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-next-step-registration.png" alt="TCS Ninja Registration Process Step 4" /></div>
</div>
<div class="read-also">
<h4 id="read-also"><b>Read Also</b></h4>
<ul>
<li style="list-style-type: none;">
<ul></ul>
</li>
</ul>
<p><a href="https://www.wikitechy.com/interview-questions/tcs-digital-interview-questions-and-answers" target="_blank" rel="noopener">1. <u>TCS Digital Interview Questions and Answers</u></a></p>
<ul>
<li style="list-style-type: none;">
<ul></ul>
</li>
</ul>
<p><a href="https://www.wikitechy.com/interview-questions/tcs-ninja-interview-questions-and-answers" target="_blank" rel="noopener">2. <u>TCS Ninja Interview Questions and Answers</u></a></div>
<div class="TextHeading">
<div class="hddn">
<h2 id="step-5" class="color-red">Step 5:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>The generated Reference ID and password are emailed to your registered mail id.</li>
</ul>
</div>
</div>
<div class="ImageContent">
<div class="hddn"><img decoding="async" class="img-responsive  center-block" src="https://cdn.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-next-step-registration-process.png" alt="TCS Ninja Registration Process Step 5" /></div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="step-6" class="color-red">Step 6:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Login to TCS Next step Portal using your <b>Registered email id or Reference ID</b></li>
</ul>
</div>
</div>
<div class="ImageContent">
<div class="hddn"><img decoding="async" class="img-responsive  center-block" src="https://cdn.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-next-step-process-using-your-credentials.png" alt="TCS Ninja Registration Process Step 6" /></div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="step-7" class="color-red">Step 7:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Click on <b>‘Application Form’</b> from the side menu</li>
</ul>
</div>
</div>
<div class="ImageContent">
<div class="hddn"><img decoding="async" class="img-responsive  center-block" src="https://cdn.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-nqt-requirement-process.png" alt="TCS Ninja Registration Process Step 7" /></div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="step-8" class="color-red">Step 8:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Fill up your Personal Details like name, DOB, address etc.,</li>
</ul>
</div>
</div>
<div class="ImageContent">
<div class="hddn"><img decoding="async" class="img-responsive  center-block" src="https://cdn.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-registration-steps.png" alt="TCS Ninja Registration Process Step 8" /></div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="step-9" class="color-red">Step 9:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Make sure that you simply have a green tick over personal details. If you do not have that green tick means you have filled it wrongly. Click on continue button to start fill up your <b>&#8220;Academic and Work Experience Details&#8221;</b></li>
</ul>
</div>
</div>
<div class="ImageContent">
<div class="hddn"><img decoding="async" class="img-responsive  center-block" src="https://cdn.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-registration-process.png" alt="TCS Ninja Registration Process Step 9" /></div>
</div>
<div>
<div id="bsa-zone_1590522394795-6_123456"></div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="step-10" class="color-red">Step 10:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Fill up Your Other Details. Ensure that both <b>Personal details</b> and <b>Academic and work experience</b> is showing green tick mark on top.</li>
</ul>
</div>
</div>
<div class="ImageContent">
<div class="hddn"><img decoding="async" class="img-responsive  center-block" src="https://cdn.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-academic-and-work-experience-details.png" alt="TCS Ninja Registration Process Step 10" /></div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="step-11" class="color-red">Step 11:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Click on <b>Application form Preview &amp; Declaration</b>. Check the application form details once more and approve to the declaration. Once you click on submit the application form, you’ll see a pop asking if you wish to use for the drive.</li>
</ul>
</div>
</div>
<div class="ImageContent">
<div class="hddn"><img decoding="async" class="img-responsive  center-block" src="https://cdn.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-application-form-preview.png" alt="TCS Ninja Registration Process Step 11" /></div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="step-12" class="color-red">Step 12:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Now you can <b>&#8220;Download the application form&#8221;</b> as a pdf.</li>
</ul>
</div>
</div>
<div class="ImageContent">
<div class="hddn"><img decoding="async" class="img-responsive  center-block" src="https://cdn.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-application-form-download.png" alt="TCS Ninja Registration Process Step 12" /></div>
</div>
<p>Now, you can apply for TCS off campus or TCS on campus drives</p>
<div class="TextHeading">
<div class="hddn">
<h2 id="step-13" class="color-red">Step 13:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Once done, Confirm you apply for the drive. This can be the last step to register for TCS National qualifier test. Without this step, your application won&#8217;t be considered.</li>
<li>As soon as your application is completed, log out of TCS NextStep website. Now login again and you’ll find the ‘Apply for drive’ option on the left-hand side menu</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-registration-2021/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>TCS Ninja Off Campus Drive for 2019 Batch Passouts (TCS NQT Off Campus 2019)</title>
		<link>https://www.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-off-campus-drive-for-2019-batch-passouts-tcs-nqt-off-campus-2019/</link>
					<comments>https://www.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-off-campus-drive-for-2019-batch-passouts-tcs-nqt-off-campus-2019/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Sat, 28 Aug 2021 15:15:19 +0000</pubDate>
				<category><![CDATA[TCS Ninja]]></category>
		<category><![CDATA[how to apply for tcs off campus]]></category>
		<category><![CDATA[tcs off campus]]></category>
		<category><![CDATA[tcs off campus 2018 results]]></category>
		<category><![CDATA[tcs off campus 2019]]></category>
		<category><![CDATA[tcs off campus 2019 batch]]></category>
		<category><![CDATA[tcs off campus 2019 registration]]></category>
		<category><![CDATA[tcs off campus 2019 syllabus]]></category>
		<category><![CDATA[tcs off campus drive]]></category>
		<category><![CDATA[tcs off campus drive 2018]]></category>
		<category><![CDATA[tcs off campus drive 2019]]></category>
		<category><![CDATA[tcs off campus drive 2019 syllabus]]></category>
		<category><![CDATA[tcs off campus drive for 2017 batch]]></category>
		<category><![CDATA[tcs off campus drive for 2018 batch]]></category>
		<category><![CDATA[tcs off campus drive for 2019 batch]]></category>
		<category><![CDATA[tcs off campus drive for 2019 batch registration]]></category>
		<category><![CDATA[tcs off campus drive for 2019 batch syllabus]]></category>
		<category><![CDATA[tcs off campus for 2017 batch]]></category>
		<category><![CDATA[tcs off campus interview]]></category>
		<category><![CDATA[tcs off campus interview questions]]></category>
		<category><![CDATA[tcs off campus recruitment]]></category>
		<category><![CDATA[tcs off campus registration]]></category>
		<category><![CDATA[tcs off campus results]]></category>
		<category><![CDATA[tcs off campus selection process]]></category>
		<category><![CDATA[tcs syllabus 2019]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2636</guid>

					<description><![CDATA[Answer : At one time you receive an Offer Letter, you noted to finish courses in TCS]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-off-campus-drive-2019-important-dates" class="color-pink">TCS Ninja Off campus Drive 2019 &#8211; Important Dates</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<p align="justify">TCS Off Campus Drive for 2021 batch Registration Link -&gt; <a href="https://careers.tcs.com/" target="_blank" rel="noopener">Click Here</a>.</p>
</div>
</div>
<div class="table-responsive">
<table class="table-bordered table-striped table table-responsive">
<tbody>
<tr>
<th>Event</th>
<th>Date</th>
</tr>
<tr>
<td>Registration Starts</td>
<td>25th May 2019</td>
</tr>
<tr>
<td>Registration Closes</td>
<td>10th June 2019</td>
</tr>
<tr>
<td>Hall Ticket Issue Date</td>
<td>14th June 2019</td>
</tr>
<tr>
<td>Exam Date</td>
<td>16th June 2019</td>
</tr>
<tr>
<td>TCS Joining Date</td>
<td>At one time you receive an Offer Letter, you noted to finish courses in TCS Xplore , Basis the completion and scores, you will be issued your Joining Letter.<br />
If you are presently working, and have a notice period to serve, then TCS will not expand the DOJ.</td>
</tr>
</tbody>
</table>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-off-campus-drive-2021-eligibility-criteria" class="color-green">TCS Ninja Off Campus Drive 2021 &#8211; Eligibility Criteria</h2>
</div>
</div>
<p class="note"><b>Note : </b>Students who appeared test for last year but couldn’t clear the test are all also qualified.</p>
<div class="table-responsive">
<table class="table-bordered table-striped table table-responsive">
<tbody>
<tr>
<td><b>Year of Passout</b></td>
<td>Batch of 2021</td>
</tr>
<tr>
<td><b>Qualification</b></td>
<td>Full Time Graduates from B.E/B.Tech/M.E/M.Tech/M.Sc/MCA – 2019 YOP</td>
</tr>
<tr>
<td><b>Eligible Streams from UG/PG</b></td>
<td>All Engineering Streams.</td>
</tr>
<tr>
<td><b>Eligible Streams from MCA &amp; M.Sc</b></td>
<td>MCA with BSc/BCA/BCom/BA (with Math /Statistics Background)</p>
<p>M.SC in Information technology/ Computer Science/ Software Engineering</td>
</tr>
<tr>
<td><b>%Criteria</b></td>
<td>60% throughout Academics in X/XII/UG/Diploma/PG</td>
</tr>
<tr>
<td><b>Backlogs</b></td>
<td>1 Active Backlog.(To be cleared within the specified time Period defined)</td>
</tr>
<tr>
<td><b>Gap Criteria</b></td>
<td>Overall Gap in Academic Career not to exceed 2 years</td>
</tr>
</tbody>
</table>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-off-campus-drive-registration-process" class="color-pink">TCS Off Campus Drive &#8211; Registration Process</h2>
</div>
</div>
<p class="note"><strong>Alert</strong><br />
You desire to be very careful while filling your TCS Application form. Once submitted your profile cannot make any changes. The last date to register for TCS off campus chase is 10th June 2021.</p>
<div class="Content">
<div class="hddn">
<p align="justify">Follow these steps to complete <a href="https://www.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-registration" target="_blank" rel="noopener">TCS off campus 2021 registration</a>. The step by step procedure is given below to apply or register for TCS off campus Drive.</p>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="step-1" class="color-purple">Step 1 :</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>To apply for <b>TCS National Qualifier Test(NQT)</b>, Go to <a href="https://careers.tcs.com/#1%40IID%40Home%2FCatalogue%3DredirectTo~%40~%26subAction%3DviewMicrosite%26Link%3D%2Fdotcom%2Ftcsrh%2Flayout%2FMicrosite%2FTCSOffCampus%2FTCSTNQT_24May2019.html%26id%3DTCSTNQT24052019%26name%3DTCS%2BNational%2BQualifier%2BTest" target="_blank" rel="noopener">TCS Careers Official Website</a>. Now You will see on the below page.</li>
</ul>
</div>
</div>
<div class="ImageContent">
<div class="hddn"><img decoding="async" class="img-responsive  center-block" src="https://cdn.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-nqt-process.png" alt=" TCS Ninja Registration Process Step 1" /></div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="step-2" class="color-purple">Step 2 :</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Click on the &#8220;Register Now&#8221; button. You will be redirected to TCS next step website as shown below.</li>
</ul>
</div>
</div>
<div class="ImageContent">
<div class="hddn"><img decoding="async" class="img-responsive  center-block" src="https://cdn.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-off-campus-drive-nextstep-registration.png" alt=" TCS Ninja Registration Process Step 2" /></div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="for-new-candidates" class="color-green">For new candidates:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>If you have not applied for TCS drive already or have never registered on TCS NextStep, then you need to register now. To know about the TCS Ninja registration process, <a href="https://www.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-registration" target="_blank" rel="noopener">Click Here.</a></li>
<li>TCS off campus 2021 results will be sent to your registered email id. So fill in your details correctly.</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="for-old-candidates" class="color-green">For old candidates:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>You can login with your registered email/reference id and password in the NextStep entrance to apply for the drive.</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="step-3" class="color-purple">Step 3 :</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>You will get an SMS from TCS about your successful registration. The text will contain user id and password which are needed to download the hall ticket.</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-off-campus-drive-test-pattern-details" class="color-pink">TCS Ninja Off Campus Drive &#8211; Test Pattern Details</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>The test pattern for TCS enrollment 2021 is given below.</li>
</ul>
</div>
</div>
<div class="table-responsive">
<table class="table-bordered table-striped table table-responsive">
<tbody>
<tr>
<th>Section</th>
<th>Duration</th>
<th>No. of Questions</th>
</tr>
<tr>
<td><a href="https://www.wikitechy.com/interview-questions/verbal-ability/" target="_blank" rel="noopener">English</a></td>
<td>10 mins</td>
<td>10</td>
</tr>
<tr>
<td><a href="https://www.wikitechy.com/interview-questions/aptitude/" target="_blank" rel="noopener">Quantitative Aptitude</a></td>
<td>40 mins</td>
<td>20</td>
</tr>
<tr>
<td><a href="https://www.wikitechy.com/interview-questions/programming/" target="_blank" rel="noopener">Programming Concepts</a></td>
<td>20 mins</td>
<td>10</td>
</tr>
<tr>
<td><a href="https://www.wikitechy.com/interview-questions/programming/" target="_blank" rel="noopener">Coding</a></td>
<td>20 mins</td>
<td>1</td>
</tr>
</tbody>
</table>
</div>
<div class="Content">
<div class="hddn">
<p align="justify">At one time you clear the TCS online test, then students will be called for personal interview. Post the assessment, interview date and location will be communicated to the candidates personally.</p>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-off-campus-drive-syllabus" class="color-red">TCS Ninja Off Campus Drive &#8211; Syllabus</h2>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-quantitative-aptitude-syllabus" class="color-blue">TCS Ninja &#8211; Quantitative Aptitude Syllabus</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<div class="col-sm-6">
<ul>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/numbers/">Number system</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/lcm-and-hcf/">HCF &amp; LCM</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/time-and-distance/">Time, Speed &amp; Distance</a></li>
<li><a href="https://www.wikitechy.com/online-videos/aptitude-shortcuts-and-tricks/alligation-of-mixture-interview-questions-and-answers-part1">Mixtures &amp; Allegations</a></li>
<li><a href="https://www.wikitechy.com/online-videos/aptitude-shortcuts-and-tricks/time-and-work-interview-questions-and-answers-part1">Time &amp; Work, Percentages</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/permutation-and-combination/">Permutation &amp; Combination</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/profit-and-loss/">Profit &amp; Loss</a></li>
</ul>
</div>
<div class="col-sm-6">
<ul>
<li><a href="https://www.wikitechy.com/tutorials/c-programming/library-functions-in-c">Functions</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/logical-reasoning/number-series/16-24-48-120-360-1260">Series &amp; Progression</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/logarithm/the-equation-loga-x-loga">Equations</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/verbal-reasoning/blood-relation/p-q-means-p-is-sister-of-q">Blood Relations</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/">Algebra, Averages</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/geometry/a-polygon-has-77-diagonals-determine-the-number-of-sides">Geometry</a></li>
<li><a href="https://www.wikitechy.com/interview-questions/aptitude/">Clocks &amp; Calendar</a></li>
</ul>
</div>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-verbal-ability-syllabus" class="color-blue">TCS Ninja &#8211; Verbal Ability Syllabus</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>TCS Ninja<a href="https://www.wikitechy.com/interview-questions/verbal-ability/"> Verbal ability questions</a> will be based on Sentence Completion.</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-programming-syllabus" class="color-blue">TCS Ninja Programming Syllabus</h2>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="programming-concepts" class="color-black">Programming Concepts:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li><a href="https://www.wikitechy.com/technology/determine-first-last-iteration-foreach-loop/" target="_blank" rel="noopener">Iteration</a>, <a href="https://www.wikitechy.com/tutorials/r-programming/recursive-function" target="_blank" rel="noopener">recursion</a>, procedural vs<a href="https://www.wikitechy.com/interview-questions/cpp/what-are-the-oops-concepts" target="_blank" rel="noopener"> OOp</a>.</li>
<li><a href="https://www.wikitechy.com/interview-questions/c/" target="_blank" rel="noopener">C Language</a>:
<ul>
<li><a href="https://www.wikitechy.com/technology/tag/c-program-to-swap-two-numbers-using-call-by-value/" target="_blank" rel="noopener">Call by value</a>/<a href="https://www.wikitechy.com/tutorials/c++/call-by-reference-in-c++" target="_blank" rel="noopener">reference</a>, Basic and Derived <a href="https://www.wikitechy.com/tutorials/c-programming/c-data-type" target="_blank" rel="noopener">Data types</a>, Storage class, Scope and Visibility, <a href="https://www.wikitechy.com/tutorials/c-programming/what-is-pointer-in-c" target="_blank" rel="noopener">Basics of Pointers</a>, Basic header files, Library functions, Branching and <a href="https://www.wikitechy.com/tutorials/c-programming/loops-in-c" target="_blank" rel="noopener">Looping</a>, <a href="https://www.wikitechy.com/tutorials/c-programming/command-line-arguments-in-c" target="_blank" rel="noopener">Command line arguments</a>, <a href="https://www.wikitechy.com/tutorials/c-programming/c-library-and-user-define-functions" target="_blank" rel="noopener">User-defined functions</a>.</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="algorithms">Algorithms</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Basic <a href="https://www.wikitechy.com/technology/binary-search-2/" target="_blank" rel="noopener">Search and Sort Algorithms</a> (<a href="https://www.wikitechy.com/technology/c-programming-tree-traversals-inorder-preorder-postorder/" target="_blank" rel="noopener">Tree traversal</a>, <a href="https://www.wikitechy.com/technology/category/algorithm/dynamic-programming/" target="_blank" rel="noopener">Dynamic Programming</a>, etc)</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="data-structures">Data Structures:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li><a href="https://www.wikitechy.com/tutorials/javascript/unique-values-in-an-array" target="_blank" rel="noopener">Array</a>, <a href="https://www.wikitechy.com/technology/queue-data-structure-implement-queue-using-stacks/" target="_blank" rel="noopener">Stack, Queue</a>, <a href="https://www.wikitechy.com/tutorials/c-programming/linked-list-in-c" target="_blank" rel="noopener">List</a> (Tree, <a href="https://www.wikitechy.com/tutorials/java/java-hash-table" target="_blank" rel="noopener">Hash table</a>, etc)</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="coding" class="color-blue">Coding</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>TCS Ninja Coding Question with Solution -&gt; <a href="https://www.wikitechy.com/interview-questions/programming/" target="_blank" rel="noopener">Click Here</a></li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="instructions" class="color-green">Instructions</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Only One question, 20 minutes.</li>
<li>Choice of <a href="https://www.wikitechy.com/engineering-interview-questions-and-answers/computer-science-engineering/c-programming-interview-questions-and-answers-part1">C </a>/<a href="https://www.wikitechy.com/engineering-interview-questions-and-answers/computer-science-engineering/cpp-interview-questions-and-answers-part1"> C++</a> / <a href="https://www.wikitechy.com/technology/java-programming-randomized-algorithms/">Java</a> /<a href="https://www.wikitechy.com/interview-questions/shell-script/what-is-the-difference-between-shell-script-and-perl"> Perl</a> /<a href="https://www.wikitechy.com/tutorials/python/python-coding-interview-questions-and-answers"> Python 2.7</a>.</li>
<li>Provided an IDE to debug.</li>
<li>For Java, the class name should be named Maze.</li>
<li>Input to the program either through STDIN / Command line arguments, as per the instructions.</li>
<li>Program should write the output to STDOUT.</li>
<li>Public and private test cases based evaluation.</li>
</ul>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul class="note">
<li>While printing the output no leading or trailing spaces should be printed.</li>
<li>Other than the required output, no other text should be printed.</li>
<li>If the output is a number, no leading sign must be printed unless it is a negative number.</li>
<li>No scientific notation (3.9265E + 2).</li>
<li>All floating point numbers must contain that many decimal places as mentioned in the question.</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-off-campus-drive-for-2019-batch-passouts-tcs-nqt-off-campus-2019/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>TCS Ninja Recruitment process for TCS NQT 2021</title>
		<link>https://www.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-recruitment-process-for-tcs-nqt-2021/</link>
					<comments>https://www.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-recruitment-process-for-tcs-nqt-2021/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Sat, 28 Aug 2021 12:44:45 +0000</pubDate>
				<category><![CDATA[TCS Ninja]]></category>
		<category><![CDATA[mihan tcs nagpur recruitment]]></category>
		<category><![CDATA[nagpur tcs recruitment]]></category>
		<category><![CDATA[new recruitment in tcs]]></category>
		<category><![CDATA[Recruitment process for TCS ninja]]></category>
		<category><![CDATA[tata consultancy engineering recruitment]]></category>
		<category><![CDATA[tata consultancy recruitment]]></category>
		<category><![CDATA[tata consultancy recruitment 2019]]></category>
		<category><![CDATA[tata consultancy service direct recruitments offer]]></category>
		<category><![CDATA[tata consultancy services gandhinagar recruitment]]></category>
		<category><![CDATA[tata consultancy services hyderabad recruitment]]></category>
		<category><![CDATA[tata consultancy services kolkata recruitment]]></category>
		<category><![CDATA[tata consultancy services ltd recruitment]]></category>
		<category><![CDATA[tata consultancy services lucknow recruitment]]></category>
		<category><![CDATA[tata consultancy services recruitment]]></category>
		<category><![CDATA[tata consultancy services recruitment 2019]]></category>
		<category><![CDATA[tata consultancy services tcs recruitment]]></category>
		<category><![CDATA[tcs bangalore recruitment]]></category>
		<category><![CDATA[tcs bbsr recruitment]]></category>
		<category><![CDATA[tcs bpo recruitment]]></category>
		<category><![CDATA[tcs bpo recruitment process]]></category>
		<category><![CDATA[tcs campus recruitment]]></category>
		<category><![CDATA[tcs campus recruitment process]]></category>
		<category><![CDATA[tcs coimbatore recruitment]]></category>
		<category><![CDATA[tcs company recruitment]]></category>
		<category><![CDATA[tcs company recruitment process]]></category>
		<category><![CDATA[tcs digital syllabus]]></category>
		<category><![CDATA[tcs gandhinagar recruitment]]></category>
		<category><![CDATA[tcs job recruitment]]></category>
		<category><![CDATA[tcs latest recruitment]]></category>
		<category><![CDATA[tcs lucknow recruitment]]></category>
		<category><![CDATA[tcs mihan nagpur recruitment]]></category>
		<category><![CDATA[tcs nagpur recruitment]]></category>
		<category><![CDATA[tcs ninja 2019]]></category>
		<category><![CDATA[tcs ninja 2019 exam date]]></category>
		<category><![CDATA[tcs ninja 2019 registration]]></category>
		<category><![CDATA[tcs ninja 2019 syllabus]]></category>
		<category><![CDATA[tcs ninja 2020]]></category>
		<category><![CDATA[tcs ninja 2020 batch]]></category>
		<category><![CDATA[tcs ninja 2020 registration]]></category>
		<category><![CDATA[tcs ninja 2020 syllabus]]></category>
		<category><![CDATA[tcs ninja exam 2019]]></category>
		<category><![CDATA[tcs ninja exam date 2019]]></category>
		<category><![CDATA[tcs ninja package]]></category>
		<category><![CDATA[tcs ninja recruitment process]]></category>
		<category><![CDATA[TCS Ninja Recruitment process for TCS NQT 2019]]></category>
		<category><![CDATA[tcs ninja registration]]></category>
		<category><![CDATA[tcs ninja syllabus]]></category>
		<category><![CDATA[tcs ninja syllabus 2019]]></category>
		<category><![CDATA[tcs noida recruitment]]></category>
		<category><![CDATA[tcs nqt 2019]]></category>
		<category><![CDATA[tcs nqt 2020 syllabus]]></category>
		<category><![CDATA[tcs nqt question paper]]></category>
		<category><![CDATA[tcs nqt syllabus 2019]]></category>
		<category><![CDATA[tcs nqt syllabus 2020]]></category>
		<category><![CDATA[tcs off campus recruitment]]></category>
		<category><![CDATA[tcs off campus recruitment process]]></category>
		<category><![CDATA[tcs on campus recruitment process]]></category>
		<category><![CDATA[tcs recruitment]]></category>
		<category><![CDATA[tcs recruitment agency]]></category>
		<category><![CDATA[tcs recruitment application form]]></category>
		<category><![CDATA[tcs recruitment chennai]]></category>
		<category><![CDATA[tcs recruitment drive]]></category>
		<category><![CDATA[tcs recruitment for freshers]]></category>
		<category><![CDATA[tcs recruitment for hr fresher]]></category>
		<category><![CDATA[tcs recruitment for mba]]></category>
		<category><![CDATA[tcs recruitment hyderabad]]></category>
		<category><![CDATA[tcs recruitment in bangalore]]></category>
		<category><![CDATA[tcs recruitment in kolkata for freshers]]></category>
		<category><![CDATA[tcs recruitment in lucknow]]></category>
		<category><![CDATA[tcs recruitment in mumbai]]></category>
		<category><![CDATA[tcs recruitment in usa]]></category>
		<category><![CDATA[tcs recruitment kolkata]]></category>
		<category><![CDATA[tcs recruitment ltd]]></category>
		<category><![CDATA[tcs recruitment process]]></category>
		<category><![CDATA[tcs recruitment process for freshers]]></category>
		<category><![CDATA[tcs recruitment pune]]></category>
		<category><![CDATA[tcs syllabus 2019]]></category>
		<category><![CDATA[tcs uk recruitment]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2634</guid>

					<description><![CDATA[Answer : TCS Ninja NQT ( National Qualifier Test ) Online test would happen across the country on 20th July 2021]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-recruitment-process-for-tcs-nqt-2021" class="color-pink">TCS Ninja Recruitment process for TCS NQT 2021</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>TCS Ninja NQT ( National Qualifier Test ) Online test would happen across the country on 20<sup>th</sup> July 2021 and the interviews would start from 25<sup>th</sup> July onwards.</li>
<li>To apply the last date for TCS Ninja NQT is 10<sup>th</sup> July 2021 11:59 PM.</li>
<li>In the event that you haven&#8217;t applied yet, then do it now.</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-recruitment-process" class="color-purple">TCS Ninja Recruitment process</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Online Test &#8211; TCS National Qualifier Test (NQT)</li>
<li>Technical Interview</li>
<li>HR Interview</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-national-qualifier-test-details" class="color-purple">TCS National Qualifier Test Details</h2>
</div>
</div>
<div class="subheading">
<h2 id="online-test-tcs-national-qualifier-test-nqt">Online Test &#8211; TCS National Qualifier Test (NQT)</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>National Qualifier Test (NQT) is a 90 minutes online test that checks your basic aptitude, english, programming and coding knowledge. The competitors who clear the online test are required the interview rounds.</li>
</ul>
</div>
</div>
<div class="Content">
<div class="hddn">
<table class="table-bordered table-striped table table-responsive">
<tbody>
<tr>
<th>Concepts</th>
<th>Number of Questions</th>
<th>Time</th>
</tr>
<tr>
<td class="text-leftalign">Quantitative Aptitude</td>
<td class="text-leftalign">20</td>
<td class="text-leftalign">40 Mins</td>
</tr>
<tr>
<td class="text-leftalign">Verbal Ability (English)</td>
<td class="text-leftalign">10</td>
<td class="text-leftalign">10 Mins</td>
</tr>
<tr>
<td class="text-leftalign">Programming Concepts</td>
<td class="text-leftalign">10</td>
<td class="text-leftalign">20 Mins</td>
</tr>
<tr>
<td class="text-leftalign">Coding</td>
<td class="text-leftalign">1</td>
<td class="text-leftalign">20 Mins</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="read-also">
<h4 id="goto-this-link-prepare-your-online-test"><b>Goto this link prepare your Online Test :</b></h4>
<p><a href="https://www.wikitechy.com/interview-questions/aptitude/" target="_blank" rel="noopener">1. <u>Aptitude interview Questions</u><span style="color: #333333;">     </span><u><br />
</u></a><a href="https://www.wikitechy.com/interview-questions/verbal-reasoning/" target="_blank" rel="noopener">2. <u>Verbal Reasoning</u><span style="color: #333333;">     </span><u><br />
</u></a><a href="https://www.wikitechy.com/interview-questions/logical-reasoning/" target="_blank" rel="noopener">3. <u>Logical Reasoning</u><span style="color: #333333;">     </span><u><br />
</u></a><a href="https://www.wikitechy.com/interview-questions/verbal-ability/" target="_blank" rel="noopener">4. <u>Verbal Ability</u></a></div>
<div class="subheading">
<h2 id="technical-interview">Technical Interview</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>This interview revolves around your profile, stream/specializations and theoretical subjects. You are expected to have a good grasp on the fundamentals of your subjects.</li>
<li>The meeting board also may give you a question to solve or a code to write. Moreover, you are required to know about the applications of your technical subjects.</li>
</ul>
</div>
</div>
<div class="subheading">
<h2 id="hr-interview">HR Interview</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>In this round, you will run over general inquiries concerning your school, accomplishments, work involvement, willingness to relocate, etc. There may be cross inquiries with respect to the data you give in your resume.</li>
<li>And then check your overall personality &#8211; your strengths, weaknesses, hobbies, career plans, family background etc. The board may be available you with certain situations/scenarios, and ask your conclusion/solution for them.</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-job-role" class="color-purple">TCS Ninja Job Role</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>TCS Ninja is hiring freshers in the name of TCS Ninja NQT for Trainee Engineer Role</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-salary-package" class="color-purple">TCS Ninja Salary Package</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>TCS Ninja salary package for freshers is 3.6 LPA.</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-eligibility-criteria" class="color-purple">TCS Ninja Eligibility Criteria</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>The eligibility criteria for TCS Ninja recruitment process is as follows:
<ul>
<li><b>Year of Passing :</b>
<ul>
<li>Batch of 2021</li>
</ul>
</li>
<li><b>Qualification :</b>
<ul>
<li>Full-Time Students from B.E/B.Tech/M.E/M.Tech/M.Sc/MCA-2021 YOP</li>
</ul>
</li>
<li><b>Specialization :</b>
<ul>
<li>B.E/B.Tech/M.E/M.Tech &#8211; All Specializations</li>
<li>M.Sc &#8211; CSE/IT and other.</li>
</ul>
</li>
<li><b>Percentage Criteria :</b>
<ul>
<li>A candidate should have a minimum aggregate of 60% throughout in Class X, XII, Diploma (if applicable), UG &amp; PG (if applicable).</li>
</ul>
</li>
<li><b>Backlogs :</b>
<ul>
<li>A applicant should not have more than 1 pending backlog at the time of appearing for the test.</li>
</ul>
</li>
<li><b>Academic Gap Criteria :</b>
<ul>
<li>The Overall gap in academics should not exceed 2 years.</li>
</ul>
</li>
<li><b>Academic Course Completion :</b>
<ul>
<li>Every courses must be done within the specified course term according to TCS Eligibility Criteria as well as they must be finished within the duration as given by the Board/University.</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="how-to-apply-for-tcs-ninja-2021" class="color-purple">How to apply for TCS Ninja 2021</h2>
<p><a href="https://www.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-registration" target="_blank" rel="noopener">Click here</a> to apply for TCS Ninja National qualifier test (TCS NQT).</p>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<h2 id="tcs-ninja-exam-pattern-and-syllabus" class="color-purple">TCS Ninja Exam Pattern and Syllabus</h2>
<p><a href="https://www.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-off-campus-drive-for-2019-batch-passouts" target="_blank" rel="noopener">Click</a> this link to know about the TCS Ninja Exam Pattern and Syllabus.</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/tcs-ninja/tcs-ninja-recruitment-process-for-tcs-nqt-2021/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is space complexity of the program ?</title>
		<link>https://www.wikitechy.com/interview-questions/programming/what-is-space-complexity-of-the-program/</link>
					<comments>https://www.wikitechy.com/interview-questions/programming/what-is-space-complexity-of-the-program/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Fri, 27 Aug 2021 00:53:28 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Cognizant Interview Questions]]></category>
		<category><![CDATA[Craterzone Interview Questions and Answers]]></category>
		<category><![CDATA[difference between time and space complexity]]></category>
		<category><![CDATA[how to calculate space complexity]]></category>
		<category><![CDATA[Most Asked Sapient Nitro Interview Questions]]></category>
		<category><![CDATA[sapient nitro interview questions and answers]]></category>
		<category><![CDATA[Sapient Nitro Placement Questions and Answers]]></category>
		<category><![CDATA[space complexity]]></category>
		<category><![CDATA[space complexity examples]]></category>
		<category><![CDATA[space complexity in data structure]]></category>
		<category><![CDATA[space complexity notation]]></category>
		<category><![CDATA[space complexity of an algorithm]]></category>
		<category><![CDATA[space complexity of sorting algorithms]]></category>
		<category><![CDATA[Time and Space Complexity]]></category>
		<category><![CDATA[time and space complexity of algorithms]]></category>
		<category><![CDATA[Time and Space Complexity Tutorials]]></category>
		<category><![CDATA[time complexity and space complexity]]></category>
		<category><![CDATA[time space complexity]]></category>
		<category><![CDATA[What does 'Space Complexity' mean]]></category>
		<category><![CDATA[What is O 1 space complexity]]></category>
		<category><![CDATA[What is space and time complexity]]></category>
		<category><![CDATA[What is Space Complexity]]></category>
		<category><![CDATA[what is Space Complexity and Why measuring it]]></category>
		<category><![CDATA[What is space complexity in data structure]]></category>
		<category><![CDATA[What is time complexity C]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2592</guid>

					<description><![CDATA[Answer : C. Amount of memory required by the program to run]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">What is space complexity of the program ?</p>
<div class="row">
<div class="col-sm-12">
<p>A. Amount of hard disk space required to store the program</p>
</div>
<div class="col-sm-12">
<p>B. Amount of hard disk space required to compile the program</p>
</div>
<div class="col-sm-12">
<p>C. Amount of memory required by the program to run</p>
</div>
<div class="col-sm-12">
<p>D. Amount of memory required by the program to compile</p>
</div>
</div>
</div>
</div>
<h3 id="answer-c-amount-of-memory-required-by-the-program-to-run"><b>Answer : </b>C. Amount of memory required by the program to run</h3>
<div class="subheading">
<h2 id="explanation">Explanation :</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Space complexity is a measure of how efficient your code is in terms of memory used.</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/programming/what-is-space-complexity-of-the-program/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>There are 2 buildings and on each’s window, a flower pot is kept. Ravi’s mother tells him to multiply each cell/window to the other and store in a matrix ? What would be time complexity if he writes a code to do so ?</title>
		<link>https://www.wikitechy.com/interview-questions/programming/there-are-2-buildings-and-on-eachs-window-a-flower-pot-is-kept-ravis-mother-tells-him-to-multiply-each-cell-window-to-the-other-and-store-in-a-matrix-what-would-be-time-complexit/</link>
					<comments>https://www.wikitechy.com/interview-questions/programming/there-are-2-buildings-and-on-eachs-window-a-flower-pot-is-kept-ravis-mother-tells-him-to-multiply-each-cell-window-to-the-other-and-store-in-a-matrix-what-would-be-time-complexit/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Fri, 27 Aug 2021 00:51:34 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[a flower pot is kept]]></category>
		<category><![CDATA[c - How do I find the time complexity (Big O)]]></category>
		<category><![CDATA[c - Time complexity analysis in finding index]]></category>
		<category><![CDATA[Finding time complexity of algorithms using big-O]]></category>
		<category><![CDATA[How to analyse time complexity]]></category>
		<category><![CDATA[how to calculate time complexity for a given algorithm]]></category>
		<category><![CDATA[how to calculate time complexity of a program in c]]></category>
		<category><![CDATA[how to calculate time complexity of nested loops]]></category>
		<category><![CDATA[How to find time complexity of an algorithm]]></category>
		<category><![CDATA[how to reduce time complexity of for loop]]></category>
		<category><![CDATA[java - What is time complexity and how to find it]]></category>
		<category><![CDATA[Most Asked Sapient Nitro Interview Questions]]></category>
		<category><![CDATA[There are 2 buildings and on each’s window]]></category>
		<category><![CDATA[Time and Space Complexity]]></category>
		<category><![CDATA[time complexity analysis]]></category>
		<category><![CDATA[time complexity calculation examples]]></category>
		<category><![CDATA[time complexity examples]]></category>
		<category><![CDATA[time complexity of algorithms]]></category>
		<category><![CDATA[time complexity of algorithms examples]]></category>
		<category><![CDATA[time complexity tutorial]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2591</guid>

					<description><![CDATA[Answer : D. Theta(n2)]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">There are 2 buildings and on each’s window, a flower pot is kept. Ravi’s mother tells him to multiply each cell/window to the other and store in a matrix ? What would be time complexity if he writes a code to do so ?</p>
<div class="row">
<div class="col-sm-6">
<p>A. Omega(n)</p>
</div>
<div class="col-sm-6">
<p>B. Omega(n<sup>2</sup>)</p>
</div>
<div class="col-sm-6">
<p>C. Theta (n)</p>
</div>
<div class="col-sm-6">
<p>D. Theta (n<sup>2</sup>)</p>
</div>
</div>
</div>
</div>
<h3 id="answer-d-thetan2"><b>Answer : </b>D. Theta(n<sup>2</sup>)</h3>
<div class="TextHeading">
<div class="hddn">
<h2 id="explanation">Explanation:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>The multiplication involved will use two for loops and hence the complexity will be Theta(n<sup>2</sup>)</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/programming/there-are-2-buildings-and-on-eachs-window-a-flower-pot-is-kept-ravis-mother-tells-him-to-multiply-each-cell-window-to-the-other-and-store-in-a-matrix-what-would-be-time-complexit/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>A code with θ(n) and θ(n2) complexity. Which code will execute faster for a code of size J ?</title>
		<link>https://www.wikitechy.com/interview-questions/programming/a-code-with-%ce%b8n-and-%ce%b8n2-complexity-which-code-will-execute-faster-for-a-code-of-size-j/</link>
					<comments>https://www.wikitechy.com/interview-questions/programming/a-code-with-%ce%b8n-and-%ce%b8n2-complexity-which-code-will-execute-faster-for-a-code-of-size-j/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Fri, 27 Aug 2021 00:49:36 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[A code with θ(n) and θ(n^2)]]></category>
		<category><![CDATA[A code with θ(n) and θ(n^2) complexity]]></category>
		<category><![CDATA[algorithm - Big O]]></category>
		<category><![CDATA[algorithm - Determining the big-O runtimes of these]]></category>
		<category><![CDATA[big theta examples]]></category>
		<category><![CDATA[big theta notation examples]]></category>
		<category><![CDATA[codes a and b have complexities]]></category>
		<category><![CDATA[complexity theory in oops]]></category>
		<category><![CDATA[complexity theory in oops questions]]></category>
		<category><![CDATA[how do you calculate/approximate it]]></category>
		<category><![CDATA[How to find time complexity of an algorithm]]></category>
		<category><![CDATA[Most Asked Sapient Nitro Interview Questions]]></category>
		<category><![CDATA[o(n) always faster than o(n^2)]]></category>
		<category><![CDATA[object oriented programming in java questions and answers]]></category>
		<category><![CDATA[time complexity What does O(log n) mean exactly]]></category>
		<category><![CDATA[Which code will execute faster for a code of size J]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2590</guid>

					<description><![CDATA[Answer : C. Cant be said as size of K is unknown]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">A code with θ(n) and θ(n<sup>2</sup>) complexity . Which code will execute faster for a code of size J ?</p>
<div class="row">
<div class="col-sm-6">
<p>A. θ(n)</p>
</div>
<div class="col-sm-6">
<p>B. θ(n<sup>2</sup>)</p>
</div>
<div class="col-sm-6">
<p>C. Cant be said as size of K is unknown</p>
</div>
<div class="col-sm-6">
<p>D. Both will be equal</p>
</div>
</div>
<h3 id="answer-c-cant-be-said-as-size-of-k-is-unknown"><b>Answer : </b>C. Cant be said as size of K is unknown</h3>
</div>
</div>
<div class="subheading">
<h2 id="explanation">Explanation :</h2>
</div>
<div class="Content">
<div class="hddn">
<p>Cant be determined as the size of K is not known.</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/programming/a-code-with-%ce%b8n-and-%ce%b8n2-complexity-which-code-will-execute-faster-for-a-code-of-size-j/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Which type of inheritance needs a virtual function ?</title>
		<link>https://www.wikitechy.com/interview-questions/programming/which-type-of-inheritance-needs-a-virtual-function/</link>
					<comments>https://www.wikitechy.com/interview-questions/programming/which-type-of-inheritance-needs-a-virtual-function/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Fri, 27 Aug 2021 00:47:53 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[advantages of virtual function in c++]]></category>
		<category><![CDATA[c++ - virtual function in private or protected inheritance]]></category>
		<category><![CDATA[C++ "virtual" keyword for functions in derived classes]]></category>
		<category><![CDATA[Do virtual functions have to be overridden]]></category>
		<category><![CDATA[inheritance - C++ Virtual function implementation]]></category>
		<category><![CDATA[inheritance virtual function]]></category>
		<category><![CDATA[inheritance virtual functionpure virtual function in c++]]></category>
		<category><![CDATA[Most Asked Sapient Nitro Interview Questions]]></category>
		<category><![CDATA[pure virtual function in c++]]></category>
		<category><![CDATA[pure virtual function program in c]]></category>
		<category><![CDATA[Virtual function and inheritance in C++]]></category>
		<category><![CDATA[virtual function c++]]></category>
		<category><![CDATA[virtual function call mechanism in c++]]></category>
		<category><![CDATA[Virtual Function in C++]]></category>
		<category><![CDATA[virtual function in inheritance]]></category>
		<category><![CDATA[virtual function in java]]></category>
		<category><![CDATA[What is need of virtual function]]></category>
		<category><![CDATA[What is virtual function in C]]></category>
		<category><![CDATA[What is virtual inheritance]]></category>
		<category><![CDATA[Which type of inheritance needs a virtual function]]></category>
		<category><![CDATA[Why do we need virtual function]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2589</guid>

					<description><![CDATA[Answer : D. All of the above]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Which type of inheritance needs a virtual function ?</p>
<div class="row">
<div class="col-sm-6">
<p>A. <a href="https://www.wikitechy.com/tutorials/c++/c++-multiple-inheritance" target="_blank" rel="noopener">Multi level inheritance</a></p>
</div>
<div class="col-sm-6">
<p>B. <a href="https://www.wikitechy.com/tutorials/c++/c++-multiple-inheritance" target="_blank" rel="noopener">Multiple inheritance</a></p>
</div>
<div class="col-sm-6">
<p>C. Hybrid inheritance</p>
</div>
<div class="col-sm-6">
<p>D. All of the above</p>
</div>
</div>
</div>
</div>
<h3 id="answer-d-all-of-the-above"><b>Answer : </b>D. All of the above</h3>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/programming/which-type-of-inheritance-needs-a-virtual-function/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Here is an infix notation: ((A+B)*C-(D-E))^(F+G) Choose the correct postfix notation of the above from the given options ?</title>
		<link>https://www.wikitechy.com/interview-questions/programming/here-is-an-infix-notation-abc-d-efg-choose-the-correct-postfix-notation-of-the-above-from-the-given-options/</link>
					<comments>https://www.wikitechy.com/interview-questions/programming/here-is-an-infix-notation-abc-d-efg-choose-the-correct-postfix-notation-of-the-above-from-the-given-options/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Fri, 27 Aug 2021 00:46:02 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[((a+b)*c-(d-e))^(f+g) postfix]]></category>
		<category><![CDATA[a+(b*c-(d/e^f)*g)*h to postfix]]></category>
		<category><![CDATA[AMCAT Previous Papers with Solutions]]></category>
		<category><![CDATA[convert infix to postfix]]></category>
		<category><![CDATA[convert infix to prefix]]></category>
		<category><![CDATA[infix examples]]></category>
		<category><![CDATA[infix expression]]></category>
		<category><![CDATA[infix notation]]></category>
		<category><![CDATA[infix operator]]></category>
		<category><![CDATA[infix postfix prefix conversion examples]]></category>
		<category><![CDATA[infix to postfix]]></category>
		<category><![CDATA[infix to postfix algorithm]]></category>
		<category><![CDATA[infix to postfix c]]></category>
		<category><![CDATA[infix to postfix conversion]]></category>
		<category><![CDATA[infix to postfix converter]]></category>
		<category><![CDATA[infix to postfix converter with steps]]></category>
		<category><![CDATA[infix to postfix examples]]></category>
		<category><![CDATA[infix to postfix program in c]]></category>
		<category><![CDATA[infix to postfix questions]]></category>
		<category><![CDATA[infix to postfix using stack]]></category>
		<category><![CDATA[infix to prefix]]></category>
		<category><![CDATA[infix to prefix algorithm]]></category>
		<category><![CDATA[infix to prefix converter]]></category>
		<category><![CDATA[infix to prefix examples]]></category>
		<category><![CDATA[postfix to infix]]></category>
		<category><![CDATA[postfix to prefix]]></category>
		<category><![CDATA[postfix to prefix conversion]]></category>
		<category><![CDATA[postfix to prefix example]]></category>
		<category><![CDATA[prefix expression evaluation]]></category>
		<category><![CDATA[prefix to infix]]></category>
		<category><![CDATA[prefix to infix converter]]></category>
		<category><![CDATA[prefix to postfix conversion using stack in data structure]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2588</guid>

					<description><![CDATA[Answer : B. AB+C*DE–FG+^]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Here is an infix notation: ((A+B)*C-(D-E))^(F+G)<br />
Choose the correct postfix notation of the above from the given options ?</p>
<div class="row">
<div class="col-sm-6">
<p>A. AB+CD*E–FG+^</p>
</div>
<div class="col-sm-6">
<p>B. AB+C*DE–FG+^</p>
</div>
<div class="col-sm-6">
<p>C. AB+C*DE-FG-+^</p>
</div>
<div class="col-sm-6">
<p>D. A+BC*DE-FG-+^</p>
</div>
</div>
</div>
</div>
<h3 id="answer-b-abcde-fg"><b>Answer : </b>B. AB+C*DE–FG+^</h3>
<div class="subheading">
<h2 id="explanation">Explanation :</h2>
</div>
<div class="Content">
<div class="hddn">
<p><b>Postfix notation</b> is a notation for writing arithmetic expressions in which the operands appear before their operators.</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/programming/here-is-an-infix-notation-abc-d-efg-choose-the-correct-postfix-notation-of-the-above-from-the-given-options/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is the time complexity of adding three matrices of size NXN cell-by-cell ?</title>
		<link>https://www.wikitechy.com/interview-questions/programming/what-is-the-time-complexity-of-adding-three-matrices-of-size-nxn-cell-by-cell/</link>
					<comments>https://www.wikitechy.com/interview-questions/programming/what-is-the-time-complexity-of-adding-three-matrices-of-size-nxn-cell-by-cell/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Fri, 27 Aug 2021 00:44:12 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[adding two nxn matrices]]></category>
		<category><![CDATA[AMCAT Previous Papers with Solutions]]></category>
		<category><![CDATA[complexity of addition of two matrices]]></category>
		<category><![CDATA[complexity of matrix multiplication algorithm]]></category>
		<category><![CDATA[if the depth of a tree is 3 levels]]></category>
		<category><![CDATA[in which area of a class are data and function directly accessible outside the class]]></category>
		<category><![CDATA[then what is the size of the tree?]]></category>
		<category><![CDATA[Time Complexity of Adding Three Matrices]]></category>
		<category><![CDATA[time complexity of adding two matrices]]></category>
		<category><![CDATA[time complexity of adding two numbers]]></category>
		<category><![CDATA[time complexity of addition]]></category>
		<category><![CDATA[What is the complexity of matrix addition?]]></category>
		<category><![CDATA[What is the time complexity of adding three matrices of size NXN]]></category>
		<category><![CDATA[What is the time complexity of adding three matrices of size NXN cell]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2587</guid>

					<description><![CDATA[Answer : B. O(N2)]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">What is the time complexity of adding three matrices of size NXN cell-by-cell ?</p>
<div class="row">
<div class="col-sm-6">
<p>A. O(N)</p>
</div>
<div class="col-sm-6">
<p>B. O(N<sup>2</sup>)</p>
</div>
<div class="col-sm-6">
<p>C. O(N<sup>3</sup>)</p>
</div>
<div class="col-sm-6">
<p>D. None of these</p>
</div>
</div>
</div>
</div>
<h3 id="answer-b-on2"><b>Answer : </b>B. O(N<sup>2</sup>)</h3>
<div class="subheading">
<h2 id="explanation">Explanation :</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Time complexity will be O(n<sup>2</sup>), because if we add all the elements one by one to other matrics we have to traverse the whole matrix at least 1 time and traversion takes O(n<sup>2</sup>) times.</li>
<li>With this traversion we add 3 elements of location [ i, j ] and storing the result on other matrix at [ i, j ] location.</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/programming/what-is-the-time-complexity-of-adding-three-matrices-of-size-nxn-cell-by-cell/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Data and function in which area of a class are directly accessible outside the class ?</title>
		<link>https://www.wikitechy.com/interview-questions/programming/data-and-function-in-which-area-of-a-class-are-directly-accessible-outside-the-class/</link>
					<comments>https://www.wikitechy.com/interview-questions/programming/data-and-function-in-which-area-of-a-class-are-directly-accessible-outside-the-class/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Fri, 27 Aug 2021 00:42:18 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[access specifiers in c++ with example]]></category>
		<category><![CDATA[access specifiers in c++ with example program]]></category>
		<category><![CDATA[access specifiers in c++ with examples]]></category>
		<category><![CDATA[AMCAT Previous Papers with Solutions]]></category>
		<category><![CDATA[c++ protected friend]]></category>
		<category><![CDATA[Data and function in which area of a class are directly accessible]]></category>
		<category><![CDATA[difference between private and protected in c++ with example]]></category>
		<category><![CDATA[difference between private and protected inheritance in c++]]></category>
		<category><![CDATA[difference between private public and protected access specifiers in c++]]></category>
		<category><![CDATA[difference between public and private data members]]></category>
		<category><![CDATA[difference between public private and protected in c++ with example]]></category>
		<category><![CDATA[difference between public private and protected inheritance in c++]]></category>
		<category><![CDATA[Explain public]]></category>
		<category><![CDATA[In which area of a class are data and function directly accessible]]></category>
		<category><![CDATA[inheritance in c++]]></category>
		<category><![CDATA[protected in c++ with example]]></category>
		<category><![CDATA[public private protected c++]]></category>
		<category><![CDATA[public private protected inheritance in c++]]></category>
		<category><![CDATA[public private protected java]]></category>
		<category><![CDATA[sprotected in c++ with example]]></category>
		<category><![CDATA[visibility modes in c++]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2586</guid>

					<description><![CDATA[Answer : A. Public]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Data and function in which area of a class are directly accessible outside the class ?</p>
<div class="row">
<div class="col-sm-6">
<p>A. Public</p>
</div>
<div class="col-sm-6">
<p>B. Private</p>
</div>
<div class="col-sm-6">
<p>C. Protected</p>
</div>
<div class="col-sm-6">
<p>D. None of these</p>
</div>
</div>
</div>
</div>
<h3 id="answer-a-public"><b>Answer : </b>A. Public</h3>
<div class="subheading">
<h2 id="explanation">Explanation :</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li><b>Public</b> &#8211; The members declared as Public are accessible from outside the Class through an object of the class.</li>
<li><b>Protected</b> &#8211; The members declared as Protected are accessible from outside the class but only in a class derived from it.</li>
<li><b>Private</b> &#8211; These members are only accessible from within the class. No outside Access is allowed</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/programming/data-and-function-in-which-area-of-a-class-are-directly-accessible-outside-the-class/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Given : integer x = 40, y = 35, z = 20, w = 10. Comment about the output of the following two statements ? print x * y / z &#8211; w print x * y / (z &#8211; w)</title>
		<link>https://www.wikitechy.com/interview-questions/programming/given-integer-x-40-y-35-z-20-w-10-comment-about-the-output-of-the-following-two-statements-print-x-y-z-w-print-x-y-z-w/</link>
					<comments>https://www.wikitechy.com/interview-questions/programming/given-integer-x-40-y-35-z-20-w-10-comment-about-the-output-of-the-following-two-statements-print-x-y-z-w-print-x-y-z-w/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Fri, 27 Aug 2021 00:33:02 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[basic c programming interview questionsc programming viva questions and answers]]></category>
		<category><![CDATA[basic c programming questions]]></category>
		<category><![CDATA[c language programming questions]]></category>
		<category><![CDATA[c programming interview programs]]></category>
		<category><![CDATA[c programming interview questions and answers]]></category>
		<category><![CDATA[c programming mcq with answers]]></category>
		<category><![CDATA[c programming multiple choice questions and answers]]></category>
		<category><![CDATA[c programming practice questions]]></category>
		<category><![CDATA[c programming problems and solutions]]></category>
		<category><![CDATA[c programming questions and answers]]></category>
		<category><![CDATA[c programming questions and answers objective type]]></category>
		<category><![CDATA[Computer Programming o No error the program is correctGiven: integer x = 40]]></category>
		<category><![CDATA[Given integer x 40 y 35 z 20 w 10 Comment about the output]]></category>
		<category><![CDATA[google programming interview questions]]></category>
		<category><![CDATA[programming aptitude questions]]></category>
		<category><![CDATA[programming interview problems]]></category>
		<category><![CDATA[programming technical interview questions]]></category>
		<category><![CDATA[simple programming questions]]></category>
		<category><![CDATA[string programming interview questions]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2575</guid>

					<description><![CDATA[Answer : A. Differ by 80]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Given : integer x = 40, y = 35, z = 20, w = 10. Comment about the output of the following two statements:<br />
print x * y / z – w<br />
print x * y / (z – w) ?</p>
<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>
<div class="subheading">
<h2 id="explanation">Explanation :</h2>
</div>
<div class="Content">
<div class="hddn">
<p align="justify">print x * y / z – w = 40 * 35 / 20 &#8211; 10 = 60<br />
print x * y / (z – w) = 40 * 35 / ( 20 &#8211; 10 ) = 140<br />
Difference is 80</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/programming/given-integer-x-40-y-35-z-20-w-10-comment-about-the-output-of-the-following-two-statements-print-x-y-z-w-print-x-y-z-w/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
