<?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>AMCAT Previous Papers with Solutions - Wikitechy</title>
	<atom:link href="https://www.wikitechy.com/interview-questions/tag/amcat-previous-papers-with-solutions/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.wikitechy.com/interview-questions/tag/amcat-previous-papers-with-solutions/</link>
	<description>Interview Questions</description>
	<lastBuildDate>Mon, 20 Sep 2021 10:57:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://www.wikitechy.com/interview-questions/wp-content/uploads/2025/10/cropped-wikitechy-icon-32x32.png</url>
	<title>AMCAT Previous Papers with Solutions - Wikitechy</title>
	<link>https://www.wikitechy.com/interview-questions/tag/amcat-previous-papers-with-solutions/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<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> – The members declared as Public are accessible from outside the Class through an object of the class.</li>
<li><b>Protected</b> – The members declared as Protected are accessible from outside the class but only in a class derived from it.</li>
<li><b>Private</b> – 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>One of the following options is a form of access used to add and remove nodes from a queue ?</title>
		<link>https://www.wikitechy.com/interview-questions/data-structure/one-of-the-following-options-is-a-form-of-access-used-to-add-and-remove-nodes-from-a-queue/</link>
					<comments>https://www.wikitechy.com/interview-questions/data-structure/one-of-the-following-options-is-a-form-of-access-used-to-add-and-remove-nodes-from-a-queue/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Tue, 13 Jul 2021 10:48:27 +0000</pubDate>
				<category><![CDATA[Data Structure]]></category>
		<category><![CDATA[Accenture interview questions and answers]]></category>
		<category><![CDATA[Adding Nodes to a Queue]]></category>
		<category><![CDATA[Altimetrik India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[AMCAT Previous Papers with Solutions]]></category>
		<category><![CDATA[Applied Materials interview questions and answers]]></category>
		<category><![CDATA[Bharti Airtel interview questions and answers]]></category>
		<category><![CDATA[BMC Software interview questions and answers]]></category>
		<category><![CDATA[Capgemini interview questions and answers]]></category>
		<category><![CDATA[CASTING NETWORKS INDIA PVT LIMITED interview questions and answers]]></category>
		<category><![CDATA[CGI Group Inc interview questions and answers]]></category>
		<category><![CDATA[Chetu interview questions and answers]]></category>
		<category><![CDATA[Ciena Corporation interview questions and answers]]></category>
		<category><![CDATA[Collabera Te interview questions and answers]]></category>
		<category><![CDATA[Delete a given node in Linked List under given constraints]]></category>
		<category><![CDATA[Deleting a node from a Queue]]></category>
		<category><![CDATA[Dell International Services India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Flipkart interview questions and answers]]></category>
		<category><![CDATA[Genpact interview questions and answers]]></category>
		<category><![CDATA[Globallogic India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[How to remove a middle element from queue ?]]></category>
		<category><![CDATA[How to remove a set node from a queue]]></category>
		<category><![CDATA[IBM interview questions and answers]]></category>
		<category><![CDATA[in linked representation of stack the null pointer of the last node in the list signals]]></category>
		<category><![CDATA[Indecomm Global Services interview questions and answers]]></category>
		<category><![CDATA[mcq on stack and queue with answers]]></category>
		<category><![CDATA[Mphasis interview questions and answers]]></category>
		<category><![CDATA[NetApp interview questions and answers]]></category>
		<category><![CDATA[Oracle Corporation interview questions and answers]]></category>
		<category><![CDATA[programming questions on stacks and queues]]></category>
		<category><![CDATA[questions on queue data structure]]></category>
		<category><![CDATA[queue]]></category>
		<category><![CDATA[Queue - Linked-List Implementation]]></category>
		<category><![CDATA[Removing nodes from queue]]></category>
		<category><![CDATA[SAP Labs India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Sapient Consulting Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[stack data structure]]></category>
		<category><![CDATA[stack- questions and answers]]></category>
		<category><![CDATA[Stacks and Queues]]></category>
		<category><![CDATA[Tech Mahindra interview questions and answers]]></category>
		<category><![CDATA[the common method used by both stack and queue is mcq]]></category>
		<category><![CDATA[the elements are removal from a stack in order.]]></category>
		<category><![CDATA[Tracxn Technologies Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[UnitedHealth Group interview questions and answers]]></category>
		<category><![CDATA[what is the result of the following operation top (push (s]]></category>
		<category><![CDATA[which is the pointer associated with the stack?]]></category>
		<category><![CDATA[which of the following name does not relate to stacks]]></category>
		<category><![CDATA[Wipro Infotech interview questions and answers]]></category>
		<category><![CDATA[WM Global Technology Services India Pvt.Ltd Limited (WMGTS) interview questions and answers]]></category>
		<category><![CDATA[Xoriant Solutions Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Yodlee Infotech Pvt Ltd interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=462</guid>

					<description><![CDATA[Answer : B. FIFO
]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<h3 id="one-of-the-following-options-is-a-form-of-access-used-to-add-and-remove-nodes-from-a-queue" class="color-pink" style="text-align: justify;">One of the following options is a form of access used to add and remove nodes from a queue ?</h3>
<div class="row" style="text-align: justify;">
<div class="col-sm-6">
<p>A. LIFO</p>
</div>
<div class="col-sm-6">
<p>B. FIFO</p>
</div>
<div class="col-sm-6">
<p>C. Both LIFO and FIFO</p>
</div>
<div class="col-sm-6">
<p>D. Recursion</p>
</div>
</div>
</div>
</div>
<h3 id="answer-b-fifo" style="text-align: justify;"><b>Answer : </b>B. FIFO</h3>
<div class="subheading" style="text-align: justify;">
<h2 id="explanation">Explanation</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li style="text-align: justify;">Queues are first in first out.</li>
<li style="text-align: justify;">In a FIFO data structure, the first element added to the queue will be the first one to be removed.</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/data-structure/one-of-the-following-options-is-a-form-of-access-used-to-add-and-remove-nodes-from-a-queue/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>If the depth of a tree is 3 levels, then what is the size of the Tree ?</title>
		<link>https://www.wikitechy.com/interview-questions/data-structure/if-the-depth-of-a-tree-is-3-levels-then-what-is-the-size-of-the-tree/</link>
					<comments>https://www.wikitechy.com/interview-questions/data-structure/if-the-depth-of-a-tree-is-3-levels-then-what-is-the-size-of-the-tree/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Tue, 13 Jul 2021 10:44:37 +0000</pubDate>
				<category><![CDATA[Data Structure]]></category>
		<category><![CDATA[Accenture interview questions and answers]]></category>
		<category><![CDATA[Altimetrik India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[AMCAT Previous Papers with Solutions]]></category>
		<category><![CDATA[Applied Materials interview questions and answers]]></category>
		<category><![CDATA[Bharti Airtel interview questions and answers]]></category>
		<category><![CDATA[binary tree height]]></category>
		<category><![CDATA[BMC Software interview questions and answers]]></category>
		<category><![CDATA[calculate depth of a full binary tree from preorder]]></category>
		<category><![CDATA[Capgemini interview questions and answers]]></category>
		<category><![CDATA[CASTING NETWORKS INDIA PVT LIMITED interview questions and answers]]></category>
		<category><![CDATA[CGI Group Inc interview questions and answers]]></category>
		<category><![CDATA[Chetu interview questions and answers]]></category>
		<category><![CDATA[Ciena Corporation interview questions and answers]]></category>
		<category><![CDATA[Collabera Te interview questions and answers]]></category>
		<category><![CDATA[complete binary tree height 4]]></category>
		<category><![CDATA[define height of a binary tree]]></category>
		<category><![CDATA[degree of tree in data structure]]></category>
		<category><![CDATA[Dell International Services India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[depth of binary tree]]></category>
		<category><![CDATA[depth of binary tree formula]]></category>
		<category><![CDATA[depth of binary tree with n nodes]]></category>
		<category><![CDATA[depth of complete binary tree]]></category>
		<category><![CDATA[depth of complete binary tree in log]]></category>
		<category><![CDATA[depth of complete binary tree is given by]]></category>
		<category><![CDATA[depth of complete binary tree with n nodes in log]]></category>
		<category><![CDATA[find depth of binary tree java]]></category>
		<category><![CDATA[find height of binary tree c++]]></category>
		<category><![CDATA[Flipkart interview questions and answers]]></category>
		<category><![CDATA[Genpact interview questions and answers]]></category>
		<category><![CDATA[Globallogic India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[height of a binary tree formula]]></category>
		<category><![CDATA[height of a tree]]></category>
		<category><![CDATA[height of a tree formula]]></category>
		<category><![CDATA[height of complete binary tree]]></category>
		<category><![CDATA[how to calculate depth of complete binary tree with n nodes]]></category>
		<category><![CDATA[how to find depth of binary tree]]></category>
		<category><![CDATA[how to find height of binary tree]]></category>
		<category><![CDATA[IBM interview questions and answers]]></category>
		<category><![CDATA[if a binary tree has 10 nodes then what is the height of the tree]]></category>
		<category><![CDATA[Indecomm Global Services interview questions and answers]]></category>
		<category><![CDATA[maximum depth of binary tree python]]></category>
		<category><![CDATA[maximum height of binary tree]]></category>
		<category><![CDATA[minimum depth of binary tree]]></category>
		<category><![CDATA[Mphasis interview questions and answers]]></category>
		<category><![CDATA[NetApp interview questions and answers]]></category>
		<category><![CDATA[Oracle Corporation interview questions and answers]]></category>
		<category><![CDATA[SAP Labs India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Sapient Consulting Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Tech Mahindra interview questions and answers]]></category>
		<category><![CDATA[Tracxn Technologies Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[UnitedHealth Group interview questions and answers]]></category>
		<category><![CDATA[Wipro Infotech interview questions and answers]]></category>
		<category><![CDATA[WM Global Technology Services India Pvt.Ltd Limited (WMGTS) interview questions and answers]]></category>
		<category><![CDATA[Xoriant Solutions Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Yodlee Infotech Pvt Ltd interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=460</guid>

					<description><![CDATA[Answer : D. 8
]]></description>
										<content:encoded><![CDATA[<div class="row">
<div class="col-sm-12">
<div class="TextHeading">
<div class="hddn">
<h3 id="if-the-depth-of-a-tree-is-3-levels-then-what-is-the-size-of-the-tree" class="color-pink" style="text-align: justify;">If the depth of a tree is 3 levels, then what is the size of the Tree ?</h3>
<div class="row" style="text-align: justify;">
<div class="col-sm-6">
<p>A. 2</p>
</div>
<div class="col-sm-6">
<p>B. 4</p>
</div>
<div class="col-sm-6">
<p>C. 6</p>
</div>
<div class="col-sm-6">
<p>D. 8</p>
</div>
</div>
</div>
</div>
<h3 id="answer-d-8" style="text-align: justify;"><b>Answer : </b>D. 8</h3>
<div class="subheading" style="text-align: justify;">
<h2 id="explanation">Explanation :</h2>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>You calculate the size of a tree by using the following formula: size = 2 <sup>depth</sup></li>
<li>If the depth is 3 levels, then the size of tree is 2 <sup>3</sup> = 8</li>
</ul>
</div>
</div>
<div class="text-center row">
<div class="col-sm-12">
<div id="bsa-zone_1590522538159-8_123456" style="text-align: justify;"></div>
</div>
</div>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/data-structure/if-the-depth-of-a-tree-is-3-levels-then-what-is-the-size-of-the-tree/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
