<?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 Question Papers with Answers - Wikitechy</title>
	<atom:link href="https://www.wikitechy.com/interview-questions/tag/amcat-question-papers-with-answers/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.wikitechy.com/interview-questions/tag/amcat-question-papers-with-answers/</link>
	<description>Interview Questions</description>
	<lastBuildDate>Thu, 21 Apr 2022 07:47:23 +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 Question Papers with Answers - Wikitechy</title>
	<link>https://www.wikitechy.com/interview-questions/tag/amcat-question-papers-with-answers/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<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 – 10 = 60<br />
print x * y / (z – w) = 40 * 35 / ( 20 – 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>
		<item>
		<title>I have a problem to solve that takes n as an input number. The problem has a property that given the solution for (n-1) ? I can easily solve the problem for n. Which programming technique will I use to solve such a problem ?</title>
		<link>https://www.wikitechy.com/interview-questions/programming/i-have-a-problem-to-solve-that-takes-n-as-an-input-number-the-problem-has-a-property-that-given-the-solution-for-n-1-i-can-easily-solve-the-problem-for-n-which-programming-technique-will-i-use-t/</link>
					<comments>https://www.wikitechy.com/interview-questions/programming/i-have-a-problem-to-solve-that-takes-n-as-an-input-number-the-problem-has-a-property-that-given-the-solution-for-n-1-i-can-easily-solve-the-problem-for-n-which-programming-technique-will-i-use-t/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Fri, 27 Aug 2021 00:29:47 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[basic programming interview questions]]></category>
		<category><![CDATA[basic programming questions]]></category>
		<category><![CDATA[c programming basic questions and answers]]></category>
		<category><![CDATA[c programming interview questions]]></category>
		<category><![CDATA[c programming questions and answers]]></category>
		<category><![CDATA[C++ Programming Questions]]></category>
		<category><![CDATA[computer programming questions]]></category>
		<category><![CDATA[how to practice programming]]></category>
		<category><![CDATA[object oriented programming interview questions]]></category>
		<category><![CDATA[programming interview]]></category>
		<category><![CDATA[programming interview questions]]></category>
		<category><![CDATA[programming interview questions and answers]]></category>
		<category><![CDATA[programming interview questions and answers for experienced]]></category>
		<category><![CDATA[programming interview questions and answers for freshers]]></category>
		<category><![CDATA[programming interviews exposed]]></category>
		<category><![CDATA[programming mcq questions with answers]]></category>
		<category><![CDATA[programming practice]]></category>
		<category><![CDATA[programming practice questions]]></category>
		<category><![CDATA[programming problems]]></category>
		<category><![CDATA[programming questions]]></category>
		<category><![CDATA[programming quiz]]></category>
		<category><![CDATA[programming tests for interviews]]></category>
		<category><![CDATA[programming topics]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2574</guid>

					<description><![CDATA[Answer : D. Recursion]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">I have a problem to solve that takes n as an input number. The problem has a property that given the solution for (n-1), I can easily solve the problem for n. Which programming technique will I use to solve such a problem ?</p>
<div class="row">
<div class="col-sm-6">
<p>A. Iteration</p>
</div>
<div class="col-sm-6">
<p>B. Decision-making</p>
</div>
<div class="col-sm-6">
<p>C. Object Oriented Programming</p>
</div>
<div class="col-sm-6">
<p>D. Recursion</p>
</div>
</div>
</div>
</div>
<h3 id="answer-d-recursion"><b>Answer : </b>D. Recursion</h3>
<div class="subheading">
<h2 id="explanation">Explanation</h2>
</div>
<div class="Content">
<div class="hddn">
<p align="justify">Recursion(the repeated application of a recursive procedure) solve the problem has a property that given the solution for (n-1).</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/programming/i-have-a-problem-to-solve-that-takes-n-as-an-input-number-the-problem-has-a-property-that-given-the-solution-for-n-1-i-can-easily-solve-the-problem-for-n-which-programming-technique-will-i-use-t/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What will the output of the following code statements be ? Integer x = 34.54, y = 20, z = -5 print (y &gt; 50 AND z &gt; 10 or x &gt; 30)</title>
		<link>https://www.wikitechy.com/interview-questions/programming/what-will-the-output-of-the-following-code-statements-be-integer-x-34-54-y-20-z-5-print-y-50-and-z-10-or-x-30/</link>
					<comments>https://www.wikitechy.com/interview-questions/programming/what-will-the-output-of-the-following-code-statements-be-integer-x-34-54-y-20-z-5-print-y-50-and-z-10-or-x-30/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Fri, 27 Aug 2021 00:27:57 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[amcat computer programming questions and answers]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[basic computer science interview questions]]></category>
		<category><![CDATA[computer programming exam questions]]></category>
		<category><![CDATA[computer programming questions and answers]]></category>
		<category><![CDATA[computer science multiple choice questions with answers]]></category>
		<category><![CDATA[computer science multiple choice questions with answers doc]]></category>
		<category><![CDATA[computer science objective questions for competitive exams]]></category>
		<category><![CDATA[computer science quiz questions with answers]]></category>
		<category><![CDATA[general programming quiz]]></category>
		<category><![CDATA[interview questions to ask a computer programmer]]></category>
		<category><![CDATA[multiple choice questions in computer science]]></category>
		<category><![CDATA[programming languages quiz questions and answers]]></category>
		<category><![CDATA[programming quiz java]]></category>
		<category><![CDATA[technical aptitude questions with answers for computer science]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2573</guid>

					<description><![CDATA[Answer : B. 1]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">What will the output of the following code statements be ?<br />
Integer x = 34.54, y = 20, z = -5 print (y > 50 AND z > 10 or x > 30) ?</p>
<div class="row">
<div class="col-sm-6">
<p>A. 0</p>
</div>
<div class="col-sm-6">
<p>B. 1</p>
</div>
<div class="col-sm-6">
<p>C. -1</p>
</div>
<div class="col-sm-6">
<p>D. 10</p>
</div>
</div>
</div>
</div>
<h3 id="answer-b-1"><b>Answer : </b>B. 1</h3>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/programming/what-will-the-output-of-the-following-code-statements-be-integer-x-34-54-y-20-z-5-print-y-50-and-z-10-or-x-30/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>A 8-bit signed integer has the following range ?</title>
		<link>https://www.wikitechy.com/interview-questions/programming/a-8-bit-signed-integer-has-the-following-range/</link>
					<comments>https://www.wikitechy.com/interview-questions/programming/a-8-bit-signed-integer-has-the-following-range/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Fri, 27 Aug 2021 00:26:13 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[10 bit value range]]></category>
		<category><![CDATA[128 bit integer limit]]></category>
		<category><![CDATA[16 bit integer]]></category>
		<category><![CDATA[16 bit integer max value]]></category>
		<category><![CDATA[16 bit integer range]]></category>
		<category><![CDATA[32 bit integer range]]></category>
		<category><![CDATA[32 bit signed integer range]]></category>
		<category><![CDATA[32 bit signed integer range java]]></category>
		<category><![CDATA[32 bit signed integer range python]]></category>
		<category><![CDATA[32-bit signed integer range c++]]></category>
		<category><![CDATA[32-bit signed integer range javascript]]></category>
		<category><![CDATA[6 bit signed integer range]]></category>
		<category><![CDATA[64 bit integer range]]></category>
		<category><![CDATA[64 bit signed integer]]></category>
		<category><![CDATA[8 bit integer]]></category>
		<category><![CDATA[8 bit integer c++]]></category>
		<category><![CDATA[8 bit integer limit]]></category>
		<category><![CDATA[8 bit integer max value]]></category>
		<category><![CDATA[8 bit integer range]]></category>
		<category><![CDATA[8 bit signed integer range]]></category>
		<category><![CDATA[a 10 bit unsigned integer has the following range]]></category>
		<category><![CDATA[a 8-bit signed integer has the following range]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[an 8 bit signed integer has the range]]></category>
		<category><![CDATA[how many numbers can be represented with 10 bits]]></category>
		<category><![CDATA[integer range]]></category>
		<category><![CDATA[range of 10 bit signed integer]]></category>
		<category><![CDATA[unsigned integer range]]></category>
		<category><![CDATA[what is the largest number that can be represented by 10 bits]]></category>
		<category><![CDATA[what is the size of an integer on a 32-bit system]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2572</guid>

					<description><![CDATA[Answer : B. -128 to 127]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">A 8-bit signed integer has the following range ?</p>
<div class="row">
<div class="col-sm-6">
<p>A. 0 to 255</p>
</div>
<div class="col-sm-6">
<p>B. -128 to 127</p>
</div>
<div class="col-sm-6">
<p>C. -255 to 254</p>
</div>
<div class="col-sm-6">
<p>D. 0 to 509</p>
</div>
</div>
</div>
</div>
<h3 id="answer-b-128-to-127"><b>Answer : </b>B. -128 to 127</h3>
<div class="subheading">
<h2 id="explanation">Explanation :</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>There are 2<sup>8</sup> (256) different possible values for 8 bits.
<ul>
<li>When <b>unsigned integer,</b> it has possible values ranging from 0 to 255.</li>
<li>When <b>signed integer,</b> it has -128 to 127</li>
</ul>
</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/programming/a-8-bit-signed-integer-has-the-following-range/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Four options are given below. Three of these options are similar to each other because they follow the same pattern. Identify the option that is dissimilar to the other three ?</title>
		<link>https://www.wikitechy.com/interview-questions/analogy-and-pattern/four-options-are-given-below-three-of-these-options-are-similar-to-each-other-because-they-follow-the-same-pattern-identify-the-option-that-is-dissimilar-to-the-other-three/</link>
					<comments>https://www.wikitechy.com/interview-questions/analogy-and-pattern/four-options-are-given-below-three-of-these-options-are-similar-to-each-other-because-they-follow-the-same-pattern-identify-the-option-that-is-dissimilar-to-the-other-three/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Wed, 18 Aug 2021 19:10:57 +0000</pubDate>
				<category><![CDATA[Analogy and Pattern]]></category>
		<category><![CDATA[adani enterpris interview questions and answers]]></category>
		<category><![CDATA[adani green energy ltd interview questions and answers]]></category>
		<category><![CDATA[adani ports ltd interview questions and answers]]></category>
		<category><![CDATA[adani total gas ltd interview questions and answers]]></category>
		<category><![CDATA[adani transmission ltd interview questions and answers]]></category>
		<category><![CDATA[ambuja cements interview questions and answers]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[apollo hospital interview questions and answers]]></category>
		<category><![CDATA[aurobindo pharm interview questions and answers]]></category>
		<category><![CDATA[avenue supermarts ltd interview questions and answers]]></category>
		<category><![CDATA[axis bank interview questions and answers]]></category>
		<category><![CDATA[bajaj auto interview questions and answers]]></category>
		<category><![CDATA[bajaj finance interview questions and answers]]></category>
		<category><![CDATA[bajaj finserv ltd interview questions and answers]]></category>
		<category><![CDATA[balkrishna industries interview questions and answers]]></category>
		<category><![CDATA[bandhan bank interview questions and answers]]></category>
		<category><![CDATA[berger paints interview questions and answers]]></category>
		<category><![CDATA[Bharat Petroleum Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[biocon interview questions and answers]]></category>
		<category><![CDATA[britannia industries ltd interview questions and answers]]></category>
		<category><![CDATA[cadila health interview questions and answers]]></category>
		<category><![CDATA[classification chapter in reasoning]]></category>
		<category><![CDATA[classification questions and answers]]></category>
		<category><![CDATA[classification questions examples]]></category>
		<category><![CDATA[classification reasoning]]></category>
		<category><![CDATA[classification reasoning question]]></category>
		<category><![CDATA[classification reasoning questions]]></category>
		<category><![CDATA[classification reasoning tricks]]></category>
		<category><![CDATA[coal india Ltd interview questions and answers]]></category>
		<category><![CDATA[colgate interview questions and answers]]></category>
		<category><![CDATA[dabur india ltd interview questions and answers]]></category>
		<category><![CDATA[divis labs interview questions and answers]]></category>
		<category><![CDATA[dlf interview questions and answers]]></category>
		<category><![CDATA[Dr. Reddys Labs interview questions and answers]]></category>
		<category><![CDATA[eicher motors ltd interview questions and answers]]></category>
		<category><![CDATA[essential machine learning questions & answers]]></category>
		<category><![CDATA[figural classification questions and answers]]></category>
		<category><![CDATA[figure classification]]></category>
		<category><![CDATA[figure classification questions and answers]]></category>
		<category><![CDATA[gail (India) Ltd interview questions and answers]]></category>
		<category><![CDATA[gland pharma ltd interview questions and answers]]></category>
		<category><![CDATA[godrej consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[godrej properties interview questions and answers]]></category>
		<category><![CDATA[grasim Industries ltd interview questions and answers]]></category>
		<category><![CDATA[gujarat gas ltd interview questions and answers]]></category>
		<category><![CDATA[havells india ltd interview questions and answers]]></category>
		<category><![CDATA[hdfc life insurance company ltd interview questions and answers]]></category>
		<category><![CDATA[hero motocorp interview questions and answers]]></category>
		<category><![CDATA[hindalco industries ltd interview questions and answers]]></category>
		<category><![CDATA[Hindustan Unilever Ltd interview questions and answers]]></category>
		<category><![CDATA[hindustan zinc ltd interview questions and answers]]></category>
		<category><![CDATA[ICICI Lombard interview questions and answers]]></category>
		<category><![CDATA[icici prudential Life Insurance interview questions and answers]]></category>
		<category><![CDATA[Indian Oil Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[indus towers ltd interview questions and answers]]></category>
		<category><![CDATA[indusind bank interview questions and answers]]></category>
		<category><![CDATA[interglobe aviation interview questions and answers]]></category>
		<category><![CDATA[jsw steel interview questions and answers]]></category>
		<category><![CDATA[jubilant foodworks ltd interview questions and answers]]></category>
		<category><![CDATA[kotak mahindra bank interview questions and answers]]></category>
		<category><![CDATA[L&T Infotech interview questions and answers]]></category>
		<category><![CDATA[larsen & toubro Ltd interview questions and answers]]></category>
		<category><![CDATA[Lupin interview questions and answers]]></category>
		<category><![CDATA[m&m interview questions and answers]]></category>
		<category><![CDATA[machine learning interview questions and answers]]></category>
		<category><![CDATA[machine learning interview questions for freshers]]></category>
		<category><![CDATA[marico interview questions and answers]]></category>
		<category><![CDATA[maruti suzuki interview questions and answers]]></category>
		<category><![CDATA[motherson sumi systems interview questions and answers]]></category>
		<category><![CDATA[muthoot finance hdfc amc interview questions and answers]]></category>
		<category><![CDATA[Nestle interview questions and answers]]></category>
		<category><![CDATA[nmdc ltd interview questions and answers]]></category>
		<category><![CDATA[non verbal reasoning classification]]></category>
		<category><![CDATA[ntpc ltd interview questions and answers]]></category>
		<category><![CDATA[odd one out questions]]></category>
		<category><![CDATA[Oil and Natural Gas Corporation (ONGC) interview questions and answers]]></category>
		<category><![CDATA[pi industries ltd interview questions and answers]]></category>
		<category><![CDATA[pidilite industries interview questions and answers]]></category>
		<category><![CDATA[power grid corporation of India interview questions and answers]]></category>
		<category><![CDATA[reasoning classification questions and answers]]></category>
		<category><![CDATA[ril partly paid interview questions and answers]]></category>
		<category><![CDATA[sbi card interview questions and answers]]></category>
		<category><![CDATA[sbi life insura interview questions and answers]]></category>
		<category><![CDATA[shree cements ltd interview questions and answers]]></category>
		<category><![CDATA[siemens interview questions and answers]]></category>
		<category><![CDATA[similarities and differences reasoning questions]]></category>
		<category><![CDATA[srf limited interview questions and answers]]></category>
		<category><![CDATA[state bank of India (SBI) interview questions and answers]]></category>
		<category><![CDATA[Steel Authority of India Ltd (SAIL) interview questions and answers]]></category>
		<category><![CDATA[sun pharma interview questions and answers]]></category>
		<category><![CDATA[tata consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[tata motors interview questions and answers]]></category>
		<category><![CDATA[tata steel interview questions and answers]]></category>
		<category><![CDATA[titan company interview questions and answers]]></category>
		<category><![CDATA[torrent pharma interview questions and answers]]></category>
		<category><![CDATA[ultratech cement interview questions and answers]]></category>
		<category><![CDATA[United Phosphorus Ltd (UPL) interview questions and answers]]></category>
		<category><![CDATA[united spirits interview questions and answers]]></category>
		<category><![CDATA[vedanta ltd interview questions and answers]]></category>
		<category><![CDATA[verbal classification]]></category>
		<category><![CDATA[verbal classification meaning]]></category>
		<category><![CDATA[Verbal Reasoning]]></category>
		<category><![CDATA[zomato interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2453</guid>

					<description><![CDATA[Answer : C. AD6]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Four options are given below. Three of these options are similar to each other because they follow the same pattern. Identify the option that is dissimilar to the other three ?</p>
<div class="row">
<div class="col-sm-6">
<p>A. AE6</p>
</div>
<div class="col-sm-6">
<p>B. FD10</p>
</div>
<div class="col-sm-6">
<p>C. AD6</p>
</div>
<div class="col-sm-6">
<p>D. DE9</p>
</div>
</div>
</div>
</div>
<h3 id="answer-c-ad6"><b>Answer : </b>C. AD6</h3>
<div class="subheading">
<h2 id="explanation">Explanation</h2>
</div>
<div class="Content">
<div class="hddn">
<p align="justify">The general sequence is :<br />
Position of the first letter in the alphabet sequence + Position of the second letter in the alphabet sequence = the number at the end of each term.</p>
<p>Thus, AE6 => 1 + 5 = 6<br />
FD10 => 6 + 4 = 10<br />
DE9 => 4 + 5 = 9<br />
Going by this logic, AD6 does not fit the sequence. It should have been AD5 (1 + 4 = 5).<br />
Therefore, the option that is dissimilar to the other three is <b>AD6</b>.</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/analogy-and-pattern/four-options-are-given-below-three-of-these-options-are-similar-to-each-other-because-they-follow-the-same-pattern-identify-the-option-that-is-dissimilar-to-the-other-three/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>If FEATURES is written as GCDPZLLK in a code, what will be the fourth letter from the left, if ADVANTAGE is written in that code ?</title>
		<link>https://www.wikitechy.com/interview-questions/coding-decoding/if-features-is-written-as-gcdpzllk-in-a-code-what-will-be-the-fourth-letter-from-the-left-if-advantage-is-written-in-that-code/</link>
					<comments>https://www.wikitechy.com/interview-questions/coding-decoding/if-features-is-written-as-gcdpzllk-in-a-code-what-will-be-the-fourth-letter-from-the-left-if-advantage-is-written-in-that-code/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Wed, 18 Aug 2021 18:45:11 +0000</pubDate>
				<category><![CDATA[Coding Decoding]]></category>
		<category><![CDATA[adani enterpris interview questions and answers]]></category>
		<category><![CDATA[adani green energy ltd interview questions and answers]]></category>
		<category><![CDATA[adani ports ltd interview questions and answers]]></category>
		<category><![CDATA[adani total gas ltd interview questions and answers]]></category>
		<category><![CDATA[adani transmission ltd interview questions and answers]]></category>
		<category><![CDATA[ambuja cements interview questions and answers]]></category>
		<category><![CDATA[amcat Logical Reasoning Sample Question with Solutions]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[apollo hospital interview questions and answers]]></category>
		<category><![CDATA[aurobindo pharm interview questions and answers]]></category>
		<category><![CDATA[avenue supermarts ltd interview questions and answers]]></category>
		<category><![CDATA[axis bank interview questions and answers]]></category>
		<category><![CDATA[bajaj auto interview questions and answers]]></category>
		<category><![CDATA[bajaj finance interview questions and answers]]></category>
		<category><![CDATA[bajaj finserv ltd interview questions and answers]]></category>
		<category><![CDATA[balkrishna industries interview questions and answers]]></category>
		<category><![CDATA[bandhan bank interview questions and answers]]></category>
		<category><![CDATA[berger paints interview questions and answers]]></category>
		<category><![CDATA[Bharat Petroleum Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[biocon interview questions and answers]]></category>
		<category><![CDATA[britannia industries ltd interview questions and answers]]></category>
		<category><![CDATA[cadila health interview questions and answers]]></category>
		<category><![CDATA[coal india Ltd interview questions and answers]]></category>
		<category><![CDATA[coding and decoding questions for bank exams]]></category>
		<category><![CDATA[coding decoding new pattern]]></category>
		<category><![CDATA[coding decoding new pattern questions]]></category>
		<category><![CDATA[coding decoding new pattern tricks]]></category>
		<category><![CDATA[coding decoding pattern]]></category>
		<category><![CDATA[coding decoding questions]]></category>
		<category><![CDATA[coding decoding questions and answers]]></category>
		<category><![CDATA[coding decoding questions bank po]]></category>
		<category><![CDATA[coding decoding questions for bank po]]></category>
		<category><![CDATA[coding decoding questions for sbi po]]></category>
		<category><![CDATA[coding decoding questions for ssc]]></category>
		<category><![CDATA[coding decoding questions new pattern]]></category>
		<category><![CDATA[coding decoding reasoning – tricks]]></category>
		<category><![CDATA[Coding Decoding Sample Question]]></category>
		<category><![CDATA[colgate interview questions and answers]]></category>
		<category><![CDATA[dabur india ltd interview questions and answers]]></category>
		<category><![CDATA[divis labs interview questions and answers]]></category>
		<category><![CDATA[dlf interview questions and answers]]></category>
		<category><![CDATA[Dr. Reddys Labs interview questions and answers]]></category>
		<category><![CDATA[eicher motors ltd interview questions and answers]]></category>
		<category><![CDATA[gail (India) Ltd interview questions and answers]]></category>
		<category><![CDATA[gland pharma ltd interview questions and answers]]></category>
		<category><![CDATA[godrej consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[godrej properties interview questions and answers]]></category>
		<category><![CDATA[grasim Industries ltd interview questions and answers]]></category>
		<category><![CDATA[gujarat gas ltd interview questions and answers]]></category>
		<category><![CDATA[havells india ltd interview questions and answers]]></category>
		<category><![CDATA[hdfc life insurance company ltd interview questions and answers]]></category>
		<category><![CDATA[hero motocorp interview questions and answers]]></category>
		<category><![CDATA[hindalco industries ltd interview questions and answers]]></category>
		<category><![CDATA[Hindustan Unilever Ltd interview questions and answers]]></category>
		<category><![CDATA[hindustan zinc ltd interview questions and answers]]></category>
		<category><![CDATA[ICICI Lombard interview questions and answers]]></category>
		<category><![CDATA[icici prudential Life Insurance interview questions and answers]]></category>
		<category><![CDATA[If features is written as gcdpzllk in a code]]></category>
		<category><![CDATA[If FEATURES is written as GCDPZLLK in a codeIf FEATURES is written as GCDPZLLK in a code]]></category>
		<category><![CDATA[Indian Oil Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[indus towers ltd interview questions and answers]]></category>
		<category><![CDATA[indusind bank interview questions and answers]]></category>
		<category><![CDATA[interglobe aviation interview questions and answers]]></category>
		<category><![CDATA[jsw steel interview questions and answers]]></category>
		<category><![CDATA[jubilant foodworks ltd interview questions and answers]]></category>
		<category><![CDATA[kotak mahindra bank interview questions and answers]]></category>
		<category><![CDATA[L&T Infotech interview questions and answers]]></category>
		<category><![CDATA[larsen & toubro Ltd interview questions and answers]]></category>
		<category><![CDATA[Lupin interview questions and answers]]></category>
		<category><![CDATA[m&m interview questions and answers]]></category>
		<category><![CDATA[marico interview questions and answers]]></category>
		<category><![CDATA[maruti suzuki interview questions and answers]]></category>
		<category><![CDATA[motherson sumi systems interview questions and answers]]></category>
		<category><![CDATA[muthoot finance hdfc amc interview questions and answers]]></category>
		<category><![CDATA[Nestle interview questions and answers]]></category>
		<category><![CDATA[new pattern coding and decoding questions and answers]]></category>
		<category><![CDATA[new pattern coding decoding]]></category>
		<category><![CDATA[new pattern coding decoding questions]]></category>
		<category><![CDATA[nmdc ltd interview questions and answers]]></category>
		<category><![CDATA[ntpc ltd interview questions and answers]]></category>
		<category><![CDATA[Oil and Natural Gas Corporation (ONGC) interview questions and answers]]></category>
		<category><![CDATA[pi industries ltd interview questions and answers]]></category>
		<category><![CDATA[pidilite industries interview questions and answers]]></category>
		<category><![CDATA[power grid corporation of India interview questions and answers]]></category>
		<category><![CDATA[ril partly paid interview questions and answers]]></category>
		<category><![CDATA[sbi card interview questions and answers]]></category>
		<category><![CDATA[sbi life insura interview questions and answers]]></category>
		<category><![CDATA[shree cements ltd interview questions and answers]]></category>
		<category><![CDATA[siemens interview questions and answers]]></category>
		<category><![CDATA[srf limited interview questions and answers]]></category>
		<category><![CDATA[state bank of India (SBI) interview questions and answers]]></category>
		<category><![CDATA[Steel Authority of India Ltd (SAIL) interview questions and answers]]></category>
		<category><![CDATA[sun pharma interview questions and answers]]></category>
		<category><![CDATA[tata consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[tata motors interview questions and answers]]></category>
		<category><![CDATA[tata steel interview questions and answers]]></category>
		<category><![CDATA[titan company interview questions and answers]]></category>
		<category><![CDATA[torrent pharma interview questions and answers]]></category>
		<category><![CDATA[ultratech cement interview questions and answers]]></category>
		<category><![CDATA[United Phosphorus Ltd (UPL) interview questions and answers]]></category>
		<category><![CDATA[united spirits interview questions and answers]]></category>
		<category><![CDATA[vedanta ltd interview questions and answers]]></category>
		<category><![CDATA[Verbal Reasoning Questions and Answer]]></category>
		<category><![CDATA[what will be the fourth]]></category>
		<category><![CDATA[what will be theamcat Logical Reasoning]]></category>
		<category><![CDATA[zomato interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2434</guid>

					<description><![CDATA[Answer : C. W]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">If FEATURES is written as GCDPZLLK in a code, what will be the fourth letter from the left, if ADVANTAGE is written in that code ?</p>
<div class="row">
<div class="col-sm-6">
<p>A. E</p>
</div>
<div class="col-sm-6">
<p>B. F</p>
</div>
<div class="col-sm-6">
<p>C. W</p>
</div>
<div class="col-sm-6">
<p>D. X</p>
</div>
</div>
</div>
</div>
<h3 id="answer-c-w"><b>Answer : </b>C. W</h3>
<div class="subheading">
<h2 id="explanation">Explanation</h2>
</div>
<div class="Content">
<div class="hddn">
<p align="justify">FEATURES – GCDPZLLK is given.<br />
G – G is one letter after F<br />
C – C is 2 letter before E<br />
D – D is 3 letter after A<br />
P – P is 4 letter before T<br />
Z – Z is 5 letter after U<br />
L – L is 6 letter before R<br />
L – L is 7 letter after E<br />
K – K is 8 letter before S</p>
<p>Similarly, ADVANTAGE – BBYWSNHYN<br />
A – A is 4 letter before W<br />
D – D is 4 letter before Z<br />
V – V is 4 letter before R<br />
A – A is 4 letter before W.</p>
<p>Fourth letter from left in <b>ADVANTAGES</b> is <b>W</b></p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/coding-decoding/if-features-is-written-as-gcdpzllk-in-a-code-what-will-be-the-fourth-letter-from-the-left-if-advantage-is-written-in-that-code/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Refer to the symbols below and their corresponding meanings. The given signs denote the following operations/relationships: X ? Y means X is less than or equal to Y. X/Y means X is equal to Y. X = Y means X is greater than Y. X + Y means X is half of Y. Which of the two conclusions I and II is/are definitely true based on the information provided ?</title>
		<link>https://www.wikitechy.com/interview-questions/statement-and-conclusion/refer-to-the-symbols-below-and-their-corresponding-meanings-the-given-signs-denote-the-following-operations-relationships-x-y-means-x-is-less-than-or-equal-to-y-x-y-means-x-is-equal-to-y-x-y-m/</link>
					<comments>https://www.wikitechy.com/interview-questions/statement-and-conclusion/refer-to-the-symbols-below-and-their-corresponding-meanings-the-given-signs-denote-the-following-operations-relationships-x-y-means-x-is-less-than-or-equal-to-y-x-y-means-x-is-equal-to-y-x-y-m/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Wed, 18 Aug 2021 18:10:41 +0000</pubDate>
				<category><![CDATA[Statement and Conclusion]]></category>
		<category><![CDATA[adani enterpris interview questions and answers]]></category>
		<category><![CDATA[adani green energy ltd interview questions and answers]]></category>
		<category><![CDATA[adani ports ltd interview questions and answers]]></category>
		<category><![CDATA[adani total gas ltd interview questions and answers]]></category>
		<category><![CDATA[adani transmission ltd interview questions and answers]]></category>
		<category><![CDATA[ambuja cements interview questions and answers]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[apollo hospital interview questions and answers]]></category>
		<category><![CDATA[aurobindo pharm interview questions and answers]]></category>
		<category><![CDATA[avenue supermarts ltd interview questions and answers]]></category>
		<category><![CDATA[axis bank interview questions and answers]]></category>
		<category><![CDATA[bajaj auto interview questions and answers]]></category>
		<category><![CDATA[bajaj finance interview questions and answers]]></category>
		<category><![CDATA[bajaj finserv ltd interview questions and answers]]></category>
		<category><![CDATA[balkrishna industries interview questions and answers]]></category>
		<category><![CDATA[bandhan bank interview questions and answers]]></category>
		<category><![CDATA[berger paints interview questions and answers]]></category>
		<category><![CDATA[Bharat Petroleum Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[biocon interview questions and answers]]></category>
		<category><![CDATA[britannia industries ltd interview questions and answers]]></category>
		<category><![CDATA[cadila health interview questions and answers]]></category>
		<category><![CDATA[coal india Ltd interview questions and answers]]></category>
		<category><![CDATA[colgate interview questions and answers]]></category>
		<category><![CDATA[dabur india ltd interview questions and answers]]></category>
		<category><![CDATA[divis labs interview questions and answers]]></category>
		<category><![CDATA[dlf interview questions and answers]]></category>
		<category><![CDATA[Dr. Reddys Labs interview questions and answers]]></category>
		<category><![CDATA[eicher motors ltd interview questions and answers]]></category>
		<category><![CDATA[gail (India) Ltd interview questions and answers]]></category>
		<category><![CDATA[gland pharma ltd interview questions and answers]]></category>
		<category><![CDATA[godrej consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[godrej properties interview questions and answers]]></category>
		<category><![CDATA[grasim Industries ltd interview questions and answers]]></category>
		<category><![CDATA[gujarat gas ltd interview questions and answers]]></category>
		<category><![CDATA[havells india ltd interview questions and answers]]></category>
		<category><![CDATA[hdfc life insurance company ltd interview questions and answers]]></category>
		<category><![CDATA[hero motocorp interview questions and answers]]></category>
		<category><![CDATA[hindalco industries ltd interview questions and answers]]></category>
		<category><![CDATA[Hindustan Unilever Ltd interview questions and answers]]></category>
		<category><![CDATA[hindustan zinc ltd interview questions and answers]]></category>
		<category><![CDATA[ICICI Lombard interview questions and answers]]></category>
		<category><![CDATA[icici prudential Life Insurance interview questions and answers]]></category>
		<category><![CDATA[Indian Oil Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[indus towers ltd interview questions and answers]]></category>
		<category><![CDATA[indusind bank interview questions and answers]]></category>
		<category><![CDATA[interglobe aviation interview questions and answers]]></category>
		<category><![CDATA[jsw steel interview questions and answers]]></category>
		<category><![CDATA[jubilant foodworks ltd interview questions and answers]]></category>
		<category><![CDATA[kotak mahindra bank interview questions and answers]]></category>
		<category><![CDATA[L&T Infotech interview questions and answers]]></category>
		<category><![CDATA[larsen & toubro Ltd interview questions and answers]]></category>
		<category><![CDATA[Lupin interview questions and answers]]></category>
		<category><![CDATA[m&m interview questions and answers]]></category>
		<category><![CDATA[marico interview questions and answers]]></category>
		<category><![CDATA[maruti suzuki interview questions and answers]]></category>
		<category><![CDATA[motherson sumi systems interview questions and answers]]></category>
		<category><![CDATA[muthoot finance hdfc amc interview questions and answers]]></category>
		<category><![CDATA[Nestle interview questions and answers]]></category>
		<category><![CDATA[nmdc ltd interview questions and answers]]></category>
		<category><![CDATA[ntpc ltd interview questions and answers]]></category>
		<category><![CDATA[Oil and Natural Gas Corporation (ONGC) interview questions and answers]]></category>
		<category><![CDATA[pi industries ltd interview questions and answers]]></category>
		<category><![CDATA[pidilite industries interview questions and answers]]></category>
		<category><![CDATA[power grid corporation of India interview questions and answers]]></category>
		<category><![CDATA[ril partly paid interview questions and answers]]></category>
		<category><![CDATA[sbi card interview questions and answers]]></category>
		<category><![CDATA[sbi life insura interview questions and answers]]></category>
		<category><![CDATA[shree cements ltd interview questions and answers]]></category>
		<category><![CDATA[siemens interview questions and answers]]></category>
		<category><![CDATA[srf limited interview questions and answers]]></category>
		<category><![CDATA[state bank of India (SBI) interview questions and answers]]></category>
		<category><![CDATA[statement and conclusion]]></category>
		<category><![CDATA[statement and conclusion questions]]></category>
		<category><![CDATA[statement and conclusion reasoning]]></category>
		<category><![CDATA[statement and conclusion reasoning logic tricks]]></category>
		<category><![CDATA[statement and conclusion reasoning questions with answers]]></category>
		<category><![CDATA[statement and conclusion rules]]></category>
		<category><![CDATA[statement and conclusion tricks]]></category>
		<category><![CDATA[statement and conclusion using venn diagram]]></category>
		<category><![CDATA[statement and inference questions]]></category>
		<category><![CDATA[statement reasoning tricks]]></category>
		<category><![CDATA[statements and conclusions]]></category>
		<category><![CDATA[statements and conclusions tricks]]></category>
		<category><![CDATA[Steel Authority of India Ltd (SAIL) interview questions and answers]]></category>
		<category><![CDATA[sun pharma interview questions and answers]]></category>
		<category><![CDATA[tata consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[tata motors interview questions and answers]]></category>
		<category><![CDATA[tata steel interview questions and answers]]></category>
		<category><![CDATA[titan company interview questions and answers]]></category>
		<category><![CDATA[torrent pharma interview questions and answers]]></category>
		<category><![CDATA[ultratech cement interview questions and answers]]></category>
		<category><![CDATA[United Phosphorus Ltd (UPL) interview questions and answers]]></category>
		<category><![CDATA[united spirits interview questions and answers]]></category>
		<category><![CDATA[vedanta ltd interview questions and answers]]></category>
		<category><![CDATA[zomato interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2414</guid>

					<description><![CDATA[Answer : D. Neither conclusion I nor II is true]]></description>
										<content:encoded><![CDATA[<p>In the below question given a statement followed by two conclusions numbered I and II. You have to assume everything in the statement to be true, then consider the two conclusions together and decide which of them logically follows beyond a reasonable doubt from the information given in the statement.</p>
<div class="Content">
<div class="hddn">
<ol type="A">
<li>If only conclusion I follows</li>
<li>If only conclusion II follows</li>
<li>If either I or II follows</li>
<li>If neither I nor II follows and</li>
<li>If both I and II follow.</li>
</ol>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<p class="color-pink" align="justify">Refer to the symbols below and their corresponding meanings. The given signs denote the following operations/relationships:<br />
X ? Y means X is less than or equal to Y.<br />
X/Y means X is equal to Y.<br />
X = Y means X is greater than Y.<br />
X + Y means X is half of Y.<br />
Which of the two conclusions I and II is/are definitely true based on the information provided ?<br />
<b>Statements:</b><br />
R ? A, B = A and B/C<br />
<b>Conclusions:</b><br />
I. R ? C<br />
II. A + C</p>
<div class="row">
<div class="col-sm-6">
<p>A. Only conclusion I is true</p>
</div>
<div class="col-sm-6">
<p>B. Only conclusion II is true</p>
</div>
<div class="col-sm-6">
<p>C. Both the conclusions are true</p>
</div>
<div class="col-sm-6">
<p>D. Neither conclusion I nor II is true</p>
</div>
</div>
</div>
</div>
<h3 id="answer-d-neither-conclusion-i-nor-ii-is-true"><b>Answer : </b>D. Neither conclusion I nor II is true</h3>
<div class="subheading">
<h2 id="explanation">Explanation</h2>
</div>
<div class="Content">
<div class="hddn">
<p>Let’s decode the statements first:<br />
<b>R ? A :</b> R ≤ A<br />
<b>B = A :</b> B > A<br />
<b>B / C :</b> B = C<br />
This can be deduced as:<br />
R ≤ A < B = C</p>
<p>Let’s decode the conclusions now:<br />
1. <b>R ? C :</b> R ≤ C<br />
2. <b>A + C :</b> A = C / 2<br />
None of the statements can be concluded to be definitely true.</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/statement-and-conclusion/refer-to-the-symbols-below-and-their-corresponding-meanings-the-given-signs-denote-the-following-operations-relationships-x-y-means-x-is-less-than-or-equal-to-y-x-y-means-x-is-equal-to-y-x-y-m/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Identify the pattern/relationship between the numbers and find the missing number. 11, 12, 16, 25, 41, 66, ___ ?</title>
		<link>https://www.wikitechy.com/interview-questions/number-series/identify-the-pattern-relationship-between-the-numbers-and-find-the-missing-number-11-12-16-25-41-66-___/</link>
					<comments>https://www.wikitechy.com/interview-questions/number-series/identify-the-pattern-relationship-between-the-numbers-and-find-the-missing-number-11-12-16-25-41-66-___/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Wed, 18 Aug 2021 17:27:46 +0000</pubDate>
				<category><![CDATA[Number Series]]></category>
		<category><![CDATA[adani enterpris interview questions and answers]]></category>
		<category><![CDATA[adani green energy ltd interview questions and answers]]></category>
		<category><![CDATA[adani ports ltd interview questions and answers]]></category>
		<category><![CDATA[adani total gas ltd interview questions and answers]]></category>
		<category><![CDATA[adani transmission ltd interview questions and answers]]></category>
		<category><![CDATA[ambuja cements interview questions and answers]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[apollo hospital interview questions and answers]]></category>
		<category><![CDATA[aurobindo pharm interview questions and answers]]></category>
		<category><![CDATA[avenue supermarts ltd interview questions and answers]]></category>
		<category><![CDATA[axis bank interview questions and answers]]></category>
		<category><![CDATA[bajaj auto interview questions and answers]]></category>
		<category><![CDATA[bajaj finance interview questions and answers]]></category>
		<category><![CDATA[bajaj finserv ltd interview questions and answers]]></category>
		<category><![CDATA[balkrishna industries interview questions and answers]]></category>
		<category><![CDATA[bandhan bank interview questions and answers]]></category>
		<category><![CDATA[berger paints interview questions and answers]]></category>
		<category><![CDATA[Bharat Petroleum Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[biocon interview questions and answers]]></category>
		<category><![CDATA[britannia industries ltd interview questions and answers]]></category>
		<category><![CDATA[cadila health interview questions and answers]]></category>
		<category><![CDATA[coal india Ltd interview questions and answers]]></category>
		<category><![CDATA[colgate interview questions and answers]]></category>
		<category><![CDATA[dabur india ltd interview questions and answers]]></category>
		<category><![CDATA[difficult number series questions and answers]]></category>
		<category><![CDATA[difficult problems on sequences and series]]></category>
		<category><![CDATA[divis labs interview questions and answers]]></category>
		<category><![CDATA[dlf interview questions and answers]]></category>
		<category><![CDATA[Dr. Reddys Labs interview questions and answers]]></category>
		<category><![CDATA[eicher motors ltd interview questions and answers]]></category>
		<category><![CDATA[gail (India) Ltd interview questions and answers]]></category>
		<category><![CDATA[gland pharma ltd interview questions and answers]]></category>
		<category><![CDATA[godrej consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[godrej properties interview questions and answers]]></category>
		<category><![CDATA[grasim Industries ltd interview questions and answers]]></category>
		<category><![CDATA[gujarat gas ltd interview questions and answers]]></category>
		<category><![CDATA[havells india ltd interview questions and answers]]></category>
		<category><![CDATA[hdfc life insurance company ltd interview questions and answers]]></category>
		<category><![CDATA[hero motocorp interview questions and answers]]></category>
		<category><![CDATA[hindalco industries ltd interview questions and answers]]></category>
		<category><![CDATA[Hindustan Unilever Ltd interview questions and answers]]></category>
		<category><![CDATA[hindustan zinc ltd interview questions and answers]]></category>
		<category><![CDATA[how to solve number series problems quickly]]></category>
		<category><![CDATA[ICICI Lombard interview questions and answers]]></category>
		<category><![CDATA[icici prudential Life Insurance interview questions and answers]]></category>
		<category><![CDATA[Indian Oil Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[indus towers ltd interview questions and answers]]></category>
		<category><![CDATA[indusind bank interview questions and answers]]></category>
		<category><![CDATA[interglobe aviation interview questions and answers]]></category>
		<category><![CDATA[jsw steel interview questions and answers]]></category>
		<category><![CDATA[jubilant foodworks ltd interview questions and answers]]></category>
		<category><![CDATA[kotak mahindra bank interview questions and answers]]></category>
		<category><![CDATA[L&T Infotech interview questions and answers]]></category>
		<category><![CDATA[larsen & toubro Ltd interview questions and answers]]></category>
		<category><![CDATA[Lupin interview questions and answers]]></category>
		<category><![CDATA[m&m interview questions and answers]]></category>
		<category><![CDATA[marico interview questions and answers]]></category>
		<category><![CDATA[maruti suzuki interview questions and answers]]></category>
		<category><![CDATA[missing number series questions]]></category>
		<category><![CDATA[motherson sumi systems interview questions and answers]]></category>
		<category><![CDATA[muthoot finance hdfc amc interview questions and answers]]></category>
		<category><![CDATA[Nestle interview questions and answers]]></category>
		<category><![CDATA[nmdc ltd interview questions and answers]]></category>
		<category><![CDATA[ntpc ltd interview questions and answers]]></category>
		<category><![CDATA[number series]]></category>
		<category><![CDATA[number series examples]]></category>
		<category><![CDATA[number series formula]]></category>
		<category><![CDATA[number series puzzles questions answers]]></category>
		<category><![CDATA[number series questions]]></category>
		<category><![CDATA[number series questions and answers]]></category>
		<category><![CDATA[number series questions and answers with explanation]]></category>
		<category><![CDATA[number series questions for bank exams]]></category>
		<category><![CDATA[number series questions for ibps clerk]]></category>
		<category><![CDATA[number series questions with solutions]]></category>
		<category><![CDATA[number series quiz]]></category>
		<category><![CDATA[number series reasoning tricks]]></category>
		<category><![CDATA[number series solving tricks]]></category>
		<category><![CDATA[number series test]]></category>
		<category><![CDATA[number series tricks]]></category>
		<category><![CDATA[number series with solution]]></category>
		<category><![CDATA[Oil and Natural Gas Corporation (ONGC) interview questions and answers]]></category>
		<category><![CDATA[pi industries ltd interview questions and answers]]></category>
		<category><![CDATA[pidilite industries interview questions and answers]]></category>
		<category><![CDATA[power grid corporation of India interview questions and answers]]></category>
		<category><![CDATA[ril partly paid interview questions and answers]]></category>
		<category><![CDATA[sbi card interview questions and answers]]></category>
		<category><![CDATA[sbi life insura interview questions and answers]]></category>
		<category><![CDATA[shree cements ltd interview questions and answers]]></category>
		<category><![CDATA[siemens interview questions and answers]]></category>
		<category><![CDATA[srf limited interview questions and answers]]></category>
		<category><![CDATA[state bank of India (SBI) interview questions and answers]]></category>
		<category><![CDATA[Steel Authority of India Ltd (SAIL) interview questions and answers]]></category>
		<category><![CDATA[sun pharma interview questions and answers]]></category>
		<category><![CDATA[tata consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[tata motors interview questions and answers]]></category>
		<category><![CDATA[tata steel interview questions and answers]]></category>
		<category><![CDATA[titan company interview questions and answers]]></category>
		<category><![CDATA[torrent pharma interview questions and answers]]></category>
		<category><![CDATA[tough number series questions]]></category>
		<category><![CDATA[toughest number series questions and answers]]></category>
		<category><![CDATA[tricky number series]]></category>
		<category><![CDATA[types of number series]]></category>
		<category><![CDATA[ultratech cement interview questions and answers]]></category>
		<category><![CDATA[United Phosphorus Ltd (UPL) interview questions and answers]]></category>
		<category><![CDATA[united spirits interview questions and answers]]></category>
		<category><![CDATA[vedanta ltd interview questions and answers]]></category>
		<category><![CDATA[zomato interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2395</guid>

					<description><![CDATA[Answer : B. 102]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Refer to the number series given below. Identify the pattern/relationship between the numbers and find the missing number.<br />
11, 12, 16, 25, 41, 66, ___ ?</p>
<div class="row">
<div class="col-sm-6">
<p>A. 101</p>
</div>
<div class="col-sm-6">
<p>B. 102</p>
</div>
<div class="col-sm-6">
<p>C. 103</p>
</div>
<div class="col-sm-6">
<p>D. 104</p>
</div>
</div>
</div>
</div>
<h3 id="answer-b-102"><b>Answer : </b>B. 102</h3>
<div class="subheading">
<h2 id="explanation">Explanation</h2>
</div>
<div class="Content">
<div class="hddn">
<p>Each number is previous number plus square of number in sequence.<br />
Where , 11 + 1 * 1 = 12;<br />
12 + 2 * 2 = 16;<br />
16 + 3 * 3 = 25;<br />
25 + 4 * 4 = 41;<br />
41 + 5 * 5 = 66;<br />
66 + 6 * 6 = <b>102</b>.</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/number-series/identify-the-pattern-relationship-between-the-numbers-and-find-the-missing-number-11-12-16-25-41-66-___/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>QDXM : SFYN :: UIOZ : ?</title>
		<link>https://www.wikitechy.com/interview-questions/analogy/qdxm-sfyn-uioz/</link>
					<comments>https://www.wikitechy.com/interview-questions/analogy/qdxm-sfyn-uioz/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Wed, 18 Aug 2021 14:44:00 +0000</pubDate>
				<category><![CDATA[Analogy]]></category>
		<category><![CDATA[adani enterpris interview questions and answers]]></category>
		<category><![CDATA[adani green energy ltd interview questions and answers]]></category>
		<category><![CDATA[adani ports ltd interview questions and answers]]></category>
		<category><![CDATA[adani total gas ltd interview questions and answers]]></category>
		<category><![CDATA[adani transmission ltd interview questions and answers]]></category>
		<category><![CDATA[ambuja cements interview questions and answers]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[Analogy - Verbal Reasoning Questions and Answers]]></category>
		<category><![CDATA[analogy questions]]></category>
		<category><![CDATA[analogy questions and answers]]></category>
		<category><![CDATA[analogy questions for bank examsAna]]></category>
		<category><![CDATA[analogy reasoning questions and answers]]></category>
		<category><![CDATA[analogy reasoning tricks]]></category>
		<category><![CDATA[apollo hospital interview questions and answers]]></category>
		<category><![CDATA[aurobindo pharm interview questions and answers]]></category>
		<category><![CDATA[avenue supermarts ltd interview questions and answers]]></category>
		<category><![CDATA[axis bank interview questions and answers]]></category>
		<category><![CDATA[bajaj auto interview questions and answers]]></category>
		<category><![CDATA[bajaj finance interview questions and answers]]></category>
		<category><![CDATA[bajaj finserv ltd interview questions and answers]]></category>
		<category><![CDATA[balkrishna industries interview questions and answers]]></category>
		<category><![CDATA[bandhan bank interview questions and answers]]></category>
		<category><![CDATA[berger paints interview questions and answers]]></category>
		<category><![CDATA[Bharat Petroleum Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[biocon interview questions and answers]]></category>
		<category><![CDATA[britannia industries ltd interview questions and answers]]></category>
		<category><![CDATA[cadila health interview questions and answers]]></category>
		<category><![CDATA[coal india Ltd interview questions and answers]]></category>
		<category><![CDATA[colgate interview questions and answers]]></category>
		<category><![CDATA[dabur india ltd interview questions and answers]]></category>
		<category><![CDATA[divis labs interview questions and answers]]></category>
		<category><![CDATA[dlf interview questions and answers]]></category>
		<category><![CDATA[Dr. Reddys Labs interview questions and answers]]></category>
		<category><![CDATA[eicher motors ltd interview questions and answers]]></category>
		<category><![CDATA[english analogy test with answers]]></category>
		<category><![CDATA[gail (India) Ltd interview questions and answers]]></category>
		<category><![CDATA[gland pharma ltd interview questions and answers]]></category>
		<category><![CDATA[godrej consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[godrej properties interview questions and answers]]></category>
		<category><![CDATA[grasim Industries ltd interview questions and answers]]></category>
		<category><![CDATA[gujarat gas ltd interview questions and answers]]></category>
		<category><![CDATA[havells india ltd interview questions and answers]]></category>
		<category><![CDATA[hdfc life insurance company ltd interview questions and answers]]></category>
		<category><![CDATA[hero motocorp interview questions and answers]]></category>
		<category><![CDATA[hindalco industries ltd interview questions and answers]]></category>
		<category><![CDATA[Hindustan Unilever Ltd interview questions and answers]]></category>
		<category><![CDATA[hindustan zinc ltd interview questions and answers]]></category>
		<category><![CDATA[ICICI Lombard interview questions and answers]]></category>
		<category><![CDATA[icici prudential Life Insurance interview questions and answers]]></category>
		<category><![CDATA[Indian Oil Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[indus towers ltd interview questions and answers]]></category>
		<category><![CDATA[indusind bank interview questions and answers]]></category>
		<category><![CDATA[interglobe aviation interview questions and answers]]></category>
		<category><![CDATA[jsw steel interview questions and answers]]></category>
		<category><![CDATA[jubilant foodworks ltd interview questions and answers]]></category>
		<category><![CDATA[kotak mahindra bank interview questions and answers]]></category>
		<category><![CDATA[L&T Infotech interview questions and answers]]></category>
		<category><![CDATA[larsen & toubro Ltd interview questions and answers]]></category>
		<category><![CDATA[logies - Logical Reasoning Questions and Answers]]></category>
		<category><![CDATA[Lupin interview questions and answers]]></category>
		<category><![CDATA[m&m interview questions and answers]]></category>
		<category><![CDATA[marico interview questions and answers]]></category>
		<category><![CDATA[maruti suzuki interview questions and answers]]></category>
		<category><![CDATA[motherson sumi systems interview questions and answers]]></category>
		<category><![CDATA[muthoot finance hdfc amc interview questions and answers]]></category>
		<category><![CDATA[Nestle interview questions and answers]]></category>
		<category><![CDATA[nmdc ltd interview questions and answers]]></category>
		<category><![CDATA[ntpc ltd interview questions and answers]]></category>
		<category><![CDATA[number analogy questions]]></category>
		<category><![CDATA[number analogy questions and answers]]></category>
		<category><![CDATA[Oil and Natural Gas Corporation (ONGC) interview questions and answers]]></category>
		<category><![CDATA[pi industries ltd interview questions and answers]]></category>
		<category><![CDATA[pidilite industries interview questions and answers]]></category>
		<category><![CDATA[power grid corporation of India interview questions and answers]]></category>
		<category><![CDATA[QDXM : SFYN : : UIOZ : ?analogy reasoning questions and answers]]></category>
		<category><![CDATA[QDXM : SFYN :: UIOZ : ?]]></category>
		<category><![CDATA[ril partly paid interview questions and answers]]></category>
		<category><![CDATA[sbi card interview questions and answers]]></category>
		<category><![CDATA[sbi life insura interview questions and answers]]></category>
		<category><![CDATA[shree cements ltd interview questions and answers]]></category>
		<category><![CDATA[siemens interview questions and answers]]></category>
		<category><![CDATA[srf limited interview questions and answers]]></category>
		<category><![CDATA[state bank of India (SBI) interview questions and answers]]></category>
		<category><![CDATA[Steel Authority of India Ltd (SAIL) interview questions and answers]]></category>
		<category><![CDATA[sun pharma interview questions and answers]]></category>
		<category><![CDATA[tata consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[tata motors interview questions and answers]]></category>
		<category><![CDATA[tata steel interview questions and answers]]></category>
		<category><![CDATA[titan company interview questions and answers]]></category>
		<category><![CDATA[torrent pharma interview questions and answers]]></category>
		<category><![CDATA[ultratech cement interview questions and answers]]></category>
		<category><![CDATA[United Phosphorus Ltd (UPL) interview questions and answers]]></category>
		<category><![CDATA[united spirits interview questions and answers]]></category>
		<category><![CDATA[vedanta ltd interview questions and answers]]></category>
		<category><![CDATA[word analogy test with answers]]></category>
		<category><![CDATA[zomato interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2387</guid>

					<description><![CDATA[Answer : D. WKPA]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Refer to the terms given below. There is a pattern that defines the relationship between the first two terms. Determine this relationship and then identify the missing term of the second pair, such that both the pairs are analogous.<br />
<b>QDXM : SFYN :: UIOZ : ?</b></p>
<div class="row">
<div class="col-sm-6">
<p>A. PAQM</p>
</div>
<div class="col-sm-6">
<p>B. LPWA</p>
</div>
<div class="col-sm-6">
<p>C. QNLA</p>
</div>
<div class="col-sm-6">
<p>D. WKPA</p>
</div>
</div>
</div>
</div>
<h3 id="answer-d-wkpa"><b>Answer : </b>D. WKPA</h3>
<div class="subheading">
<h2 id="explanation">Explanation</h2>
</div>
<div class="Content">
<div class="hddn">
<p>For first two terms S is 1 letter before Q,<br />
F is 1 letter before D,<br />
Y is next to X ,<br />
N is next M.</p>
<p>Similarly, <b>UIOZ : WKPA</b>.<br />
Where W is 1 letter before U,<br />
K is 1 letter before I,<br />
O is next to P ,<br />
Z is next A.</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/analogy/qdxm-sfyn-uioz/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Arrange the words given below in a meaningful sequence : 1. Cotton 2. Plough 3. Mill 4. Seed 5. Cloth</title>
		<link>https://www.wikitechy.com/interview-questions/logical-sequence-of-words/arrange-the-words-given-below-in-a-meaningful-sequence-1-cotton-2-plough-3-mill-4-seed-5-cloth/</link>
					<comments>https://www.wikitechy.com/interview-questions/logical-sequence-of-words/arrange-the-words-given-below-in-a-meaningful-sequence-1-cotton-2-plough-3-mill-4-seed-5-cloth/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Wed, 18 Aug 2021 14:40:26 +0000</pubDate>
				<category><![CDATA[Logical Sequence of Words]]></category>
		<category><![CDATA[adani enterpris interview questions and answers]]></category>
		<category><![CDATA[adani green energy ltd interview questions and answers]]></category>
		<category><![CDATA[adani ports ltd interview questions and answers]]></category>
		<category><![CDATA[adani total gas ltd interview questions and answers]]></category>
		<category><![CDATA[adani transmission ltd interview questions and answers]]></category>
		<category><![CDATA[ambuja cements interview questions and answers]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[apollo hospital interview questions and answers]]></category>
		<category><![CDATA[aurobindo pharm interview questions and answers]]></category>
		<category><![CDATA[avenue supermarts ltd interview questions and answers]]></category>
		<category><![CDATA[axis bank interview questions and answers]]></category>
		<category><![CDATA[bajaj auto interview questions and answers]]></category>
		<category><![CDATA[bajaj finance interview questions and answers]]></category>
		<category><![CDATA[bajaj finserv ltd interview questions and answers]]></category>
		<category><![CDATA[balkrishna industries interview questions and answers]]></category>
		<category><![CDATA[bandhan bank interview questions and answers]]></category>
		<category><![CDATA[berger paints interview questions and answers]]></category>
		<category><![CDATA[Bharat Petroleum Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[biocon interview questions and answers]]></category>
		<category><![CDATA[britannia industries ltd interview questions and answers]]></category>
		<category><![CDATA[cadila health interview questions and answers]]></category>
		<category><![CDATA[coal india Ltd interview questions and answers]]></category>
		<category><![CDATA[colgate interview questions and answers]]></category>
		<category><![CDATA[dabur india ltd interview questions and answers]]></category>
		<category><![CDATA[divis labs interview questions and answers]]></category>
		<category><![CDATA[dlf interview questions and answers]]></category>
		<category><![CDATA[Dr. Reddys Labs interview questions and answers]]></category>
		<category><![CDATA[eicher motors ltd interview questions and answers]]></category>
		<category><![CDATA[gail (India) Ltd interview questions and answers]]></category>
		<category><![CDATA[gland pharma ltd interview questions and answers]]></category>
		<category><![CDATA[godrej consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[godrej properties interview questions and answers]]></category>
		<category><![CDATA[grasim Industries ltd interview questions and answers]]></category>
		<category><![CDATA[gujarat gas ltd interview questions and answers]]></category>
		<category><![CDATA[havells india ltd interview questions and answers]]></category>
		<category><![CDATA[hdfc life insurance company ltd interview questions and answers]]></category>
		<category><![CDATA[hero motocorp interview questions and answers]]></category>
		<category><![CDATA[hindalco industries ltd interview questions and answers]]></category>
		<category><![CDATA[Hindustan Unilever Ltd interview questions and answers]]></category>
		<category><![CDATA[hindustan zinc ltd interview questions and answers]]></category>
		<category><![CDATA[ICICI Lombard interview questions and answers]]></category>
		<category><![CDATA[icici prudential Life Insurance interview questions and answers]]></category>
		<category><![CDATA[Indian Oil Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[indus towers ltd interview questions and answers]]></category>
		<category><![CDATA[indusind bank interview questions and answers]]></category>
		<category><![CDATA[interglobe aviation interview questions and answers]]></category>
		<category><![CDATA[jsw steel interview questions and answers]]></category>
		<category><![CDATA[jubilant foodworks ltd interview questions and answers]]></category>
		<category><![CDATA[kotak mahindra bank interview questions and answers]]></category>
		<category><![CDATA[L&T Infotech interview questions and answers]]></category>
		<category><![CDATA[larsen & toubro Ltd interview questions and answers]]></category>
		<category><![CDATA[logical sequence of words]]></category>
		<category><![CDATA[Logical Sequence of Words - Reasoning Questions]]></category>
		<category><![CDATA[Logical Sequence Of Words - Reasoning Tricks]]></category>
		<category><![CDATA[Logical Sequence of Words - Verbal Reasoning Questions and Answers]]></category>
		<category><![CDATA[Logical Sequence of Words Introduction - Verbal Reasoning]]></category>
		<category><![CDATA[Logical Sequence of Words on Verbal Reasoning related Questions]]></category>
		<category><![CDATA[logical sequence of words questions and answers]]></category>
		<category><![CDATA[Logical Sequence Of Words Verbal Reasoning Questions]]></category>
		<category><![CDATA[Lupin interview questions and answers]]></category>
		<category><![CDATA[m&m interview questions and answers]]></category>
		<category><![CDATA[marico interview questions and answers]]></category>
		<category><![CDATA[maruti suzuki interview questions and answers]]></category>
		<category><![CDATA[motherson sumi systems interview questions and answers]]></category>
		<category><![CDATA[muthoot finance hdfc amc interview questions and answers]]></category>
		<category><![CDATA[Nestle interview questions and answers]]></category>
		<category><![CDATA[nmdc ltd interview questions and answers]]></category>
		<category><![CDATA[ntpc ltd interview questions and answers]]></category>
		<category><![CDATA[Oil and Natural Gas Corporation (ONGC) interview questions and answers]]></category>
		<category><![CDATA[Ordering of Sentences - Verbal Ability Questions and Answers]]></category>
		<category><![CDATA[pi industries ltd interview questions and answers]]></category>
		<category><![CDATA[pidilite industries interview questions and answers]]></category>
		<category><![CDATA[power grid corporation of India interview questions and answers]]></category>
		<category><![CDATA[ril partly paid interview questions and answers]]></category>
		<category><![CDATA[sbi card interview questions and answers]]></category>
		<category><![CDATA[sbi life insura interview questions and answers]]></category>
		<category><![CDATA[shree cements ltd interview questions and answers]]></category>
		<category><![CDATA[siemens interview questions and answers]]></category>
		<category><![CDATA[srf limited interview questions and answers]]></category>
		<category><![CDATA[state bank of India (SBI) interview questions and answers]]></category>
		<category><![CDATA[Steel Authority of India Ltd (SAIL) interview questions and answers]]></category>
		<category><![CDATA[sun pharma interview questions and answers]]></category>
		<category><![CDATA[tata consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[tata motors interview questions and answers]]></category>
		<category><![CDATA[tata steel interview questions and answers]]></category>
		<category><![CDATA[titan company interview questions and answers]]></category>
		<category><![CDATA[torrent pharma interview questions and answers]]></category>
		<category><![CDATA[ultratech cement interview questions and answers]]></category>
		<category><![CDATA[United Phosphorus Ltd (UPL) interview questions and answers]]></category>
		<category><![CDATA[united spirits interview questions and answers]]></category>
		<category><![CDATA[vedanta ltd interview questions and answers]]></category>
		<category><![CDATA[Verbal Reasoning Logical Sequence Of Words]]></category>
		<category><![CDATA[zomato interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2381</guid>

					<description><![CDATA[Answer : D. 2, 4, 1, 3, 5]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Arrange the words given below in a meaningful sequence :</p>
<div class="row">
<div class="col-sm-2">
<p class="color-pink">1. Cotton</p>
</div>
<div class="col-sm-2">
<p class="color-pink">2. Plough</p>
</div>
<div class="col-sm-2">
<p class="color-pink">3. Mill</p>
</div>
<div class="col-sm-2">
<p class="color-pink">4. Seed</p>
</div>
<div class="col-sm-2">
<p class="color-pink">5. Cloth</p>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<p>A. 3, 1, 2, 4, 5</p>
</div>
<div class="col-sm-6">
<p>B. 1, 5, 4, 3, 2</p>
</div>
<div class="col-sm-6">
<p>C. 3, 4, 5, 2, 1</p>
</div>
<div class="col-sm-6">
<p>D. 2, 4, 1, 3, 5</p>
</div>
</div>
</div>
</div>
<h3 id="answer-d-2-4-1-3-5"><b>Answer : </b>D. 2, 4, 1, 3, 5</h3>
<div class="subheading">
<h2 id="explanation">Explanation:</h2>
</div>
<div class="Content">
<div class="hddn">
<p>2. Plough<br />
4. Seed<br />
1. Cotton<br />
3. Mill<br />
5. Cloth</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/logical-sequence-of-words/arrange-the-words-given-below-in-a-meaningful-sequence-1-cotton-2-plough-3-mill-4-seed-5-cloth/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Is Brock taller than Smith ? (I) Rafael is of the same height as Brock and Smith. (II) Smith is shorter than Rafael.</title>
		<link>https://www.wikitechy.com/interview-questions/data-sufficiency/is-brock-taller-than-smith-i-rafael-is-of-the-same-height-as-brock-and-smith-ii-smith-is-shorter-than-rafael/</link>
					<comments>https://www.wikitechy.com/interview-questions/data-sufficiency/is-brock-taller-than-smith-i-rafael-is-of-the-same-height-as-brock-and-smith-ii-smith-is-shorter-than-rafael/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Wed, 18 Aug 2021 13:59:24 +0000</pubDate>
				<category><![CDATA[Data Sufficiency]]></category>
		<category><![CDATA[adani enterpris interview questions and answers]]></category>
		<category><![CDATA[adani green energy ltd interview questions and answers]]></category>
		<category><![CDATA[adani ports ltd interview questions and answers]]></category>
		<category><![CDATA[adani total gas ltd interview questions and answers]]></category>
		<category><![CDATA[adani transmission ltd interview questions and answers]]></category>
		<category><![CDATA[ambuja cements interview questions and answers]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[apollo hospital interview questions and answers]]></category>
		<category><![CDATA[aurobindo pharm interview questions and answers]]></category>
		<category><![CDATA[avenue supermarts ltd interview questions and answers]]></category>
		<category><![CDATA[axis bank interview questions and answers]]></category>
		<category><![CDATA[bajaj auto interview questions and answers]]></category>
		<category><![CDATA[bajaj finance interview questions and answers]]></category>
		<category><![CDATA[bajaj finserv ltd interview questions and answers]]></category>
		<category><![CDATA[balkrishna industries interview questions and answers]]></category>
		<category><![CDATA[bandhan bank interview questions and answers]]></category>
		<category><![CDATA[berger paints interview questions and answers]]></category>
		<category><![CDATA[Bharat Petroleum Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[biocon interview questions and answers]]></category>
		<category><![CDATA[britannia industries ltd interview questions and answers]]></category>
		<category><![CDATA[cadila health interview questions and answers]]></category>
		<category><![CDATA[coal india Ltd interview questions and answers]]></category>
		<category><![CDATA[colgate interview questions and answers]]></category>
		<category><![CDATA[dabur india ltd interview questions and answers]]></category>
		<category><![CDATA[data interpretation & data sufficiency]]></category>
		<category><![CDATA[data interpretation in quantitative aptitude]]></category>
		<category><![CDATA[Data Sufficiency - Reasoning Questions and Answers]]></category>
		<category><![CDATA[data sufficiency aptitude questions and answers]]></category>
		<category><![CDATA[data sufficiency aptitude tricks]]></category>
		<category><![CDATA[data sufficiency in quantitative aptitude]]></category>
		<category><![CDATA[data sufficiency questions]]></category>
		<category><![CDATA[data sufficiency questions and answers]]></category>
		<category><![CDATA[data sufficiency reasoning]]></category>
		<category><![CDATA[data sufficiency reasoning bankers]]></category>
		<category><![CDATA[data sufficiency tricks]]></category>
		<category><![CDATA[data sufficiency tricks for sbi clerk]]></category>
		<category><![CDATA[data sufficiency tricks gmat]]></category>
		<category><![CDATA[divis labs interview questions and answers]]></category>
		<category><![CDATA[dlf interview questions and answers]]></category>
		<category><![CDATA[Dr. Reddys Labs interview questions and answers]]></category>
		<category><![CDATA[eicher motors ltd interview questions and answers]]></category>
		<category><![CDATA[gail (India) Ltd interview questions and answers]]></category>
		<category><![CDATA[gland pharma ltd interview questions and answers]]></category>
		<category><![CDATA[godrej consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[godrej properties interview questions and answers]]></category>
		<category><![CDATA[grasim Industries ltd interview questions and answers]]></category>
		<category><![CDATA[gujarat gas ltd interview questions and answers]]></category>
		<category><![CDATA[havells india ltd interview questions and answers]]></category>
		<category><![CDATA[hdfc life insurance company ltd interview questions and answers]]></category>
		<category><![CDATA[hero motocorp interview questions and answers]]></category>
		<category><![CDATA[hindalco industries ltd interview questions and answers]]></category>
		<category><![CDATA[Hindustan Unilever Ltd interview questions and answers]]></category>
		<category><![CDATA[hindustan zinc ltd interview questions and answers]]></category>
		<category><![CDATA[ICICI Lombard interview questions and answers]]></category>
		<category><![CDATA[icici prudential Life Insurance interview questions and answers]]></category>
		<category><![CDATA[Indian Oil Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[indus towers ltd interview questions and answers]]></category>
		<category><![CDATA[indusind bank interview questions and answers]]></category>
		<category><![CDATA[interglobe aviation interview questions and answers]]></category>
		<category><![CDATA[jsw steel interview questions and answers]]></category>
		<category><![CDATA[jubilant foodworks ltd interview questions and answers]]></category>
		<category><![CDATA[kotak mahindra bank interview questions and answers]]></category>
		<category><![CDATA[L&T Infotech interview questions and answers]]></category>
		<category><![CDATA[larsen & toubro Ltd interview questions and answers]]></category>
		<category><![CDATA[Lupin interview questions and answers]]></category>
		<category><![CDATA[m&m interview questions and answers]]></category>
		<category><![CDATA[marico interview questions and answers]]></category>
		<category><![CDATA[maruti suzuki interview questions and answers]]></category>
		<category><![CDATA[motherson sumi systems interview questions and answers]]></category>
		<category><![CDATA[muthoot finance hdfc amc interview questions and answers]]></category>
		<category><![CDATA[Nestle interview questions and answers]]></category>
		<category><![CDATA[nmdc ltd interview questions and answers]]></category>
		<category><![CDATA[ntpc ltd interview questions and answers]]></category>
		<category><![CDATA[Oil and Natural Gas Corporation (ONGC) interview questions and answers]]></category>
		<category><![CDATA[pi industries ltd interview questions and answers]]></category>
		<category><![CDATA[pidilite industries interview questions and answers]]></category>
		<category><![CDATA[power grid corporation of India interview questions and answers]]></category>
		<category><![CDATA[ril partly paid interview questions and answers]]></category>
		<category><![CDATA[sbi card interview questions and answers]]></category>
		<category><![CDATA[sbi life insura interview questions and answers]]></category>
		<category><![CDATA[shree cements ltd interview questions and answers]]></category>
		<category><![CDATA[siemens interview questions and answers]]></category>
		<category><![CDATA[srf limited interview questions and answers]]></category>
		<category><![CDATA[state bank of India (SBI) interview questions and answers]]></category>
		<category><![CDATA[Steel Authority of India Ltd (SAIL) interview questions and answers]]></category>
		<category><![CDATA[sun pharma interview questions and answers]]></category>
		<category><![CDATA[tata consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[tata motors interview questions and answers]]></category>
		<category><![CDATA[tata steel interview questions and answers]]></category>
		<category><![CDATA[titan company interview questions and answers]]></category>
		<category><![CDATA[torrent pharma interview questions and answers]]></category>
		<category><![CDATA[ultratech cement interview questions and answers]]></category>
		<category><![CDATA[United Phosphorus Ltd (UPL) interview questions and answers]]></category>
		<category><![CDATA[united spirits interview questions and answers]]></category>
		<category><![CDATA[vedanta ltd interview questions and answers]]></category>
		<category><![CDATA[zomato interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2349</guid>

					<description><![CDATA[Answer : A. Statement I alone is sufficient to answer the question.]]></description>
										<content:encoded><![CDATA[<p>Here we have two statements numbered I and II given below. You have to decide whether the data provided in the statements are sufficient to answer the question. Read both the statements.</p>
<div class="Content">
<div class="hddn">
<ol type="A">
<li>If the data in statement I alone are sufficient to answer the question, while the data in statement II alone are not sufficient to answer the question</li>
<li>If the data in statement II alone are sufficient to answer the question, while the data in statement I alone are not sufficient to answer the question</li>
<li>If the data either in statement I alone or in statement II alone are sufficient to answer the question</li>
<li>If the data given in both statements I and II together are not sufficient to answer the question</li>
<li>If the data in both statements I and II together are necessary to answer the question.</li>
</ol>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Is Brock taller than Smith ?<br />
<b>Statements:</b><br />
I. Rafael is of the same height as Brock and Smith.<br />
II. Smith is shorter than Rafael.</p>
<div class="row">
<div class="col-sm-12">
<p>A. Statement I alone is sufficient to answer the question.</p>
</div>
<div class="col-sm-12">
<p>B. Statement II alone is sufficient to answer the question.</p>
</div>
<div class="col-sm-12">
<p>C. Both statements put together are sufficient to answer the question.</p>
</div>
<div class="col-sm-12">
<p>D. Even both the statements put together are not sufficient to answer the question.</p>
</div>
<div class="col-sm-12">
<p>E. Either of the statements is sufficient to answer the question.</p>
</div>
</div>
</div>
</div>
<h3 id="answer-a-statement-i-alone-is-sufficient-to-answer-the-question"><b>Answer : </b>A. Statement I alone is sufficient to answer the question.</h3>
<div class="subheading">
<h2 id="explanation">Explanation</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>Statement 1 says that Rafael, Brock and Smith are of the same height.</li>
<li>Statement 2 says that Rafael is taller than Smith. This is contradictory to statement 1. Also, this statement does not talk about Brock’s height in comparison with the others.</li>
<li>So, only statement 1 is independently able to answer the question. The answer as per statement 1 is – No, Brock is not taller than Smith. They are of the same height.</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/data-sufficiency/is-brock-taller-than-smith-i-rafael-is-of-the-same-height-as-brock-and-smith-ii-smith-is-shorter-than-rafael/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>The success that he has gained, though striking enough, does not, however, commensurate ______ the efforts made by him ?</title>
		<link>https://www.wikitechy.com/interview-questions/tenses-and-articles/the-success-that-he-has-gained-though-striking-enough-does-not-however-commensurate-______-the-efforts-made-by-him/</link>
					<comments>https://www.wikitechy.com/interview-questions/tenses-and-articles/the-success-that-he-has-gained-though-striking-enough-does-not-however-commensurate-______-the-efforts-made-by-him/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Wed, 18 Aug 2021 10:42:14 +0000</pubDate>
				<category><![CDATA[Tenses and Articles]]></category>
		<category><![CDATA[adani enterpris interview questions and answers]]></category>
		<category><![CDATA[adani green energy ltd interview questions and answers]]></category>
		<category><![CDATA[adani ports ltd interview questions and answers]]></category>
		<category><![CDATA[adani total gas ltd interview questions and answers]]></category>
		<category><![CDATA[adani transmission ltd interview questions and answers]]></category>
		<category><![CDATA[ambuja cements interview questions and answers]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[apollo hospital interview questions and answers]]></category>
		<category><![CDATA[articles exercises]]></category>
		<category><![CDATA[articles in english]]></category>
		<category><![CDATA[aurobindo pharm interview questions and answers]]></category>
		<category><![CDATA[avenue supermarts ltd interview questions and answers]]></category>
		<category><![CDATA[axis bank interview questions and answers]]></category>
		<category><![CDATA[bajaj auto interview questions and answers]]></category>
		<category><![CDATA[bajaj finance interview questions and answers]]></category>
		<category><![CDATA[bajaj finserv ltd interview questions and answers]]></category>
		<category><![CDATA[balkrishna industries interview questions and answers]]></category>
		<category><![CDATA[bandhan bank interview questions and answers]]></category>
		<category><![CDATA[berger paints interview questions and answers]]></category>
		<category><![CDATA[Bharat Petroleum Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[biocon interview questions and answers]]></category>
		<category><![CDATA[britannia industries ltd interview questions and answers]]></category>
		<category><![CDATA[cadila health interview questions and answers]]></category>
		<category><![CDATA[coal india Ltd interview questions and answers]]></category>
		<category><![CDATA[colgate interview questions and answers]]></category>
		<category><![CDATA[dabur india ltd interview questions and answers]]></category>
		<category><![CDATA[divis labs interview questions and answers]]></category>
		<category><![CDATA[dlf interview questions and answers]]></category>
		<category><![CDATA[Dr. Reddys Labs interview questions and answers]]></category>
		<category><![CDATA[eicher motors ltd interview questions and answers]]></category>
		<category><![CDATA[gail (India) Ltd interview questions and answers]]></category>
		<category><![CDATA[gland pharma ltd interview questions and answers]]></category>
		<category><![CDATA[godrej consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[godrej properties interview questions and answers]]></category>
		<category><![CDATA[grasim Industries ltd interview questions and answers]]></category>
		<category><![CDATA[gujarat gas ltd interview questions and answers]]></category>
		<category><![CDATA[havells india ltd interview questions and answers]]></category>
		<category><![CDATA[hdfc life insurance company ltd interview questions and answers]]></category>
		<category><![CDATA[hero motocorp interview questions and answers]]></category>
		<category><![CDATA[hindalco industries ltd interview questions and answers]]></category>
		<category><![CDATA[Hindustan Unilever Ltd interview questions and answers]]></category>
		<category><![CDATA[hindustan zinc ltd interview questions and answers]]></category>
		<category><![CDATA[ICICI Lombard interview questions and answers]]></category>
		<category><![CDATA[icici prudential Life Insurance interview questions and answers]]></category>
		<category><![CDATA[Indian Oil Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[indus towers ltd interview questions and answers]]></category>
		<category><![CDATA[indusind bank interview questions and answers]]></category>
		<category><![CDATA[interglobe aviation interview questions and answers]]></category>
		<category><![CDATA[jsw steel interview questions and answers]]></category>
		<category><![CDATA[jubilant foodworks ltd interview questions and answers]]></category>
		<category><![CDATA[kotak mahindra bank interview questions and answers]]></category>
		<category><![CDATA[L&T Infotech interview questions and answers]]></category>
		<category><![CDATA[larsen & toubro Ltd interview questions and answers]]></category>
		<category><![CDATA[Lupin interview questions and answers]]></category>
		<category><![CDATA[m&m interview questions and answers]]></category>
		<category><![CDATA[marico interview questions and answers]]></category>
		<category><![CDATA[maruti suzuki interview questions and answers]]></category>
		<category><![CDATA[motherson sumi systems interview questions and answers]]></category>
		<category><![CDATA[muthoot finance hdfc amc interview questions and answers]]></category>
		<category><![CDATA[Nestle interview questions and answers]]></category>
		<category><![CDATA[nmdc ltd interview questions and answers]]></category>
		<category><![CDATA[ntpc ltd interview questions and answers]]></category>
		<category><![CDATA[Oil and Natural Gas Corporation (ONGC) interview questions and answers]]></category>
		<category><![CDATA[past tense article]]></category>
		<category><![CDATA[pi industries ltd interview questions and answers]]></category>
		<category><![CDATA[pidilite industries interview questions and answers]]></category>
		<category><![CDATA[power grid corporation of India interview questions and answers]]></category>
		<category><![CDATA[ril partly paid interview questions and answers]]></category>
		<category><![CDATA[sbi card interview questions and answers]]></category>
		<category><![CDATA[sbi life insura interview questions and answers]]></category>
		<category><![CDATA[shree cements ltd interview questions and answers]]></category>
		<category><![CDATA[siemens interview questions and answers]]></category>
		<category><![CDATA[srf limited interview questions and answers]]></category>
		<category><![CDATA[state bank of India (SBI) interview questions and answers]]></category>
		<category><![CDATA[Steel Authority of India Ltd (SAIL) interview questions and answers]]></category>
		<category><![CDATA[sun pharma interview questions and answers]]></category>
		<category><![CDATA[tata consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[tata motors interview questions and answers]]></category>
		<category><![CDATA[tata steel interview questions and answers]]></category>
		<category><![CDATA[tenses and articles]]></category>
		<category><![CDATA[tenses and articles exercises]]></category>
		<category><![CDATA[tenses exercise with answers]]></category>
		<category><![CDATA[tenses exercises]]></category>
		<category><![CDATA[tenses in newspaper articles]]></category>
		<category><![CDATA[titan company interview questions and answers]]></category>
		<category><![CDATA[torrent pharma interview questions and answers]]></category>
		<category><![CDATA[ultratech cement interview questions and answers]]></category>
		<category><![CDATA[United Phosphorus Ltd (UPL) interview questions and answers]]></category>
		<category><![CDATA[united spirits interview questions and answers]]></category>
		<category><![CDATA[vedanta ltd interview questions and answers]]></category>
		<category><![CDATA[which tense is used in article writing]]></category>
		<category><![CDATA[zomato interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2258</guid>

					<description><![CDATA[Answer : C. With]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Select the correct option that fills the blank(s) to make the sentence grammatically correct.<br />
The success that he has gained, though striking enough, does not, however, commensurate ______ the efforts made by him ?</p>
<div class="row">
<div class="col-sm-6">
<p>A. About</p>
</div>
<div class="col-sm-6">
<p>B. From</p>
</div>
<div class="col-sm-6">
<p>C. With</p>
</div>
<div class="col-sm-6">
<p>D. Beside</p>
</div>
</div>
</div>
</div>
<h3 id="answer-c-with"><b>Answer : </b>C. With</h3>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/tenses-and-articles/the-success-that-he-has-gained-though-striking-enough-does-not-however-commensurate-______-the-efforts-made-by-him/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>She ____ most of her time to music</title>
		<link>https://www.wikitechy.com/interview-questions/tenses-and-articles/she-____-most-of-her-time-to-music/</link>
					<comments>https://www.wikitechy.com/interview-questions/tenses-and-articles/she-____-most-of-her-time-to-music/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Wed, 18 Aug 2021 10:41:33 +0000</pubDate>
				<category><![CDATA[Tenses and Articles]]></category>
		<category><![CDATA[adani enterpris interview questions and answers]]></category>
		<category><![CDATA[adani green energy ltd interview questions and answers]]></category>
		<category><![CDATA[adani ports ltd interview questions and answers]]></category>
		<category><![CDATA[adani total gas ltd interview questions and answers]]></category>
		<category><![CDATA[adani transmission ltd interview questions and answers]]></category>
		<category><![CDATA[ambuja cements interview questions and answers]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[apollo hospital interview questions and answers]]></category>
		<category><![CDATA[aurobindo pharm interview questions and answers]]></category>
		<category><![CDATA[avenue supermarts ltd interview questions and answers]]></category>
		<category><![CDATA[axis bank interview questions and answers]]></category>
		<category><![CDATA[bajaj auto interview questions and answers]]></category>
		<category><![CDATA[bajaj finance interview questions and answers]]></category>
		<category><![CDATA[bajaj finserv ltd interview questions and answers]]></category>
		<category><![CDATA[balkrishna industries interview questions and answers]]></category>
		<category><![CDATA[bandhan bank interview questions and answers]]></category>
		<category><![CDATA[berger paints interview questions and answers]]></category>
		<category><![CDATA[Bharat Petroleum Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[biocon interview questions and answers]]></category>
		<category><![CDATA[britannia industries ltd interview questions and answers]]></category>
		<category><![CDATA[cadila health interview questions and answers]]></category>
		<category><![CDATA[coal india Ltd interview questions and answers]]></category>
		<category><![CDATA[colgate interview questions and answers]]></category>
		<category><![CDATA[dabur india ltd interview questions and answers]]></category>
		<category><![CDATA[divis labs interview questions and answers]]></category>
		<category><![CDATA[dlf interview questions and answers]]></category>
		<category><![CDATA[Dr. Reddys Labs interview questions and answers]]></category>
		<category><![CDATA[eicher motors ltd interview questions and answers]]></category>
		<category><![CDATA[exercises on tenses]]></category>
		<category><![CDATA[gail (India) Ltd interview questions and answers]]></category>
		<category><![CDATA[gland pharma ltd interview questions and answers]]></category>
		<category><![CDATA[godrej consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[godrej properties interview questions and answers]]></category>
		<category><![CDATA[grasim Industries ltd interview questions and answers]]></category>
		<category><![CDATA[gujarat gas ltd interview questions and answers]]></category>
		<category><![CDATA[havells india ltd interview questions and answers]]></category>
		<category><![CDATA[hdfc life insurance company ltd interview questions and answers]]></category>
		<category><![CDATA[hero motocorp interview questions and answers]]></category>
		<category><![CDATA[hindalco industries ltd interview questions and answers]]></category>
		<category><![CDATA[Hindustan Unilever Ltd interview questions and answers]]></category>
		<category><![CDATA[hindustan zinc ltd interview questions and answers]]></category>
		<category><![CDATA[ICICI Lombard interview questions and answers]]></category>
		<category><![CDATA[icici prudential Life Insurance interview questions and answers]]></category>
		<category><![CDATA[Indian Oil Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[indus towers ltd interview questions and answers]]></category>
		<category><![CDATA[indusind bank interview questions and answers]]></category>
		<category><![CDATA[interglobe aviation interview questions and answers]]></category>
		<category><![CDATA[jsw steel interview questions and answers]]></category>
		<category><![CDATA[jubilant foodworks ltd interview questions and answers]]></category>
		<category><![CDATA[kotak mahindra bank interview questions and answers]]></category>
		<category><![CDATA[L&T Infotech interview questions and answers]]></category>
		<category><![CDATA[larsen & toubro Ltd interview questions and answers]]></category>
		<category><![CDATA[Lupin interview questions and answers]]></category>
		<category><![CDATA[m&m interview questions and answers]]></category>
		<category><![CDATA[marico interview questions and answers]]></category>
		<category><![CDATA[maruti suzuki interview questions and answers]]></category>
		<category><![CDATA[motherson sumi systems interview questions and answers]]></category>
		<category><![CDATA[muthoot finance hdfc amc interview questions and answers]]></category>
		<category><![CDATA[Nestle interview questions and answers]]></category>
		<category><![CDATA[news headlines in simple present tense examples]]></category>
		<category><![CDATA[news in present perfect tense]]></category>
		<category><![CDATA[nmdc ltd interview questions and answers]]></category>
		<category><![CDATA[ntpc ltd interview questions and answers]]></category>
		<category><![CDATA[Oil and Natural Gas Corporation (ONGC) interview questions and answers]]></category>
		<category><![CDATA[pi industries ltd interview questions and answers]]></category>
		<category><![CDATA[pidilite industries interview questions and answers]]></category>
		<category><![CDATA[power grid corporation of India interview questions and answers]]></category>
		<category><![CDATA[ril partly paid interview questions and answers]]></category>
		<category><![CDATA[sbi card interview questions and answers]]></category>
		<category><![CDATA[sbi life insura interview questions and answers]]></category>
		<category><![CDATA[shree cements ltd interview questions and answers]]></category>
		<category><![CDATA[siemens interview questions and answers]]></category>
		<category><![CDATA[simple present tense news]]></category>
		<category><![CDATA[simple tenses exercises]]></category>
		<category><![CDATA[srf limited interview questions and answers]]></category>
		<category><![CDATA[state bank of India (SBI) interview questions and answers]]></category>
		<category><![CDATA[Steel Authority of India Ltd (SAIL) interview questions and answers]]></category>
		<category><![CDATA[sun pharma interview questions and answers]]></category>
		<category><![CDATA[tata consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[tata motors interview questions and answers]]></category>
		<category><![CDATA[tata steel interview questions and answers]]></category>
		<category><![CDATA[tense used in news writing]]></category>
		<category><![CDATA[tenses exercise with answers]]></category>
		<category><![CDATA[tenses exercises]]></category>
		<category><![CDATA[tenses paragraph exercises with answers]]></category>
		<category><![CDATA[tenses question paper]]></category>
		<category><![CDATA[titan company interview questions and answers]]></category>
		<category><![CDATA[torrent pharma interview questions and answers]]></category>
		<category><![CDATA[ultratech cement interview questions and answers]]></category>
		<category><![CDATA[United Phosphorus Ltd (UPL) interview questions and answers]]></category>
		<category><![CDATA[united spirits interview questions and answers]]></category>
		<category><![CDATA[vedanta ltd interview questions and answers]]></category>
		<category><![CDATA[zomato interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2257</guid>

					<description><![CDATA[Answer : C. devoted]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Select the correct option that fills the blank(s) to make the sentence meaningfully complete.<br />
She ____ most of her time to music.</p>
<div class="row">
<div class="col-sm-6">
<p>A. spent</p>
</div>
<div class="col-sm-6">
<p>B. lent</p>
</div>
<div class="col-sm-6">
<p>C. devoted</p>
</div>
<div class="col-sm-6">
<p>D. made</p>
</div>
</div>
</div>
</div>
<h3 id="answer-c-devoted"><b>Answer : </b>C. devoted</h3>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/tenses-and-articles/she-____-most-of-her-time-to-music/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Ignore errors of punctuation, if any ? (A) The meeting adjourned abruptly (B) by the CEO after (C) about three hours of deliberation. (D) No error</title>
		<link>https://www.wikitechy.com/interview-questions/spotting-errors/ignore-errors-of-punctuation-if-any-a-the-meeting-adjourned-abruptly-b-by-the-ceo-after-c-about-three-hours-of-deliberation-d-no-error/</link>
					<comments>https://www.wikitechy.com/interview-questions/spotting-errors/ignore-errors-of-punctuation-if-any-a-the-meeting-adjourned-abruptly-b-by-the-ceo-after-c-about-three-hours-of-deliberation-d-no-error/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Wed, 18 Aug 2021 09:47:28 +0000</pubDate>
				<category><![CDATA[Spotting Errors]]></category>
		<category><![CDATA[adani enterpris interview questions and answers]]></category>
		<category><![CDATA[adani green energy ltd interview questions and answers]]></category>
		<category><![CDATA[adani ports ltd interview questions and answers]]></category>
		<category><![CDATA[adani total gas ltd interview questions and answers]]></category>
		<category><![CDATA[adani transmission ltd interview questions and answers]]></category>
		<category><![CDATA[ambuja cements interview questions and answers]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[apollo hospital interview questions and answers]]></category>
		<category><![CDATA[aurobindo pharm interview questions and answers]]></category>
		<category><![CDATA[avenue supermarts ltd interview questions and answers]]></category>
		<category><![CDATA[axis bank interview questions and answers]]></category>
		<category><![CDATA[bajaj auto interview questions and answers]]></category>
		<category><![CDATA[bajaj finance interview questions and answers]]></category>
		<category><![CDATA[bajaj finserv ltd interview questions and answers]]></category>
		<category><![CDATA[balkrishna industries interview questions and answers]]></category>
		<category><![CDATA[bandhan bank interview questions and answers]]></category>
		<category><![CDATA[berger paints interview questions and answers]]></category>
		<category><![CDATA[best book for spotting errors in english]]></category>
		<category><![CDATA[Bharat Petroleum Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[biocon interview questions and answers]]></category>
		<category><![CDATA[britannia industries ltd interview questions and answers]]></category>
		<category><![CDATA[cadila health interview questions and answers]]></category>
		<category><![CDATA[coal india Ltd interview questions and answers]]></category>
		<category><![CDATA[colgate interview questions and answers]]></category>
		<category><![CDATA[common errors questions]]></category>
		<category><![CDATA[dabur india ltd interview questions and answers]]></category>
		<category><![CDATA[divis labs interview questions and answers]]></category>
		<category><![CDATA[dlf interview questions and answers]]></category>
		<category><![CDATA[Dr. Reddys Labs interview questions and answers]]></category>
		<category><![CDATA[eicher motors ltd interview questions and answers]]></category>
		<category><![CDATA[english quiz on spotting errors]]></category>
		<category><![CDATA[english spotting errors for bank exams]]></category>
		<category><![CDATA[english spotting errors quiz]]></category>
		<category><![CDATA[error spotting exercises with answers]]></category>
		<category><![CDATA[error spotting quiz]]></category>
		<category><![CDATA[error spotting rules and tricks]]></category>
		<category><![CDATA[gail (India) Ltd interview questions and answers]]></category>
		<category><![CDATA[gland pharma ltd interview questions and answers]]></category>
		<category><![CDATA[godrej consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[godrej properties interview questions and answers]]></category>
		<category><![CDATA[golden rules for spotting errors]]></category>
		<category><![CDATA[grasim Industries ltd interview questions and answers]]></category>
		<category><![CDATA[gujarat gas ltd interview questions and answers]]></category>
		<category><![CDATA[havells india ltd interview questions and answers]]></category>
		<category><![CDATA[hdfc life insurance company ltd interview questions and answers]]></category>
		<category><![CDATA[hero motocorp interview questions and answers]]></category>
		<category><![CDATA[hindalco industries ltd interview questions and answers]]></category>
		<category><![CDATA[Hindustan Unilever Ltd interview questions and answers]]></category>
		<category><![CDATA[hindustan zinc ltd interview questions and answers]]></category>
		<category><![CDATA[ICICI Lombard interview questions and answers]]></category>
		<category><![CDATA[icici prudential Life Insurance interview questions and answers]]></category>
		<category><![CDATA[Indian Oil Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[indus towers ltd interview questions and answers]]></category>
		<category><![CDATA[indusind bank interview questions and answers]]></category>
		<category><![CDATA[interglobe aviation interview questions and answers]]></category>
		<category><![CDATA[jsw steel interview questions and answers]]></category>
		<category><![CDATA[jubilant foodworks ltd interview questions and answers]]></category>
		<category><![CDATA[kotak mahindra bank interview questions and answers]]></category>
		<category><![CDATA[L&T Infotech interview questions and answers]]></category>
		<category><![CDATA[larsen & toubro Ltd interview questions and answers]]></category>
		<category><![CDATA[Lupin interview questions and answers]]></category>
		<category><![CDATA[m&m interview questions and answers]]></category>
		<category><![CDATA[marico interview questions and answers]]></category>
		<category><![CDATA[maruti suzuki interview questions and answers]]></category>
		<category><![CDATA[motherson sumi systems interview questions and answers]]></category>
		<category><![CDATA[muthoot finance hdfc amc interview questions and answers]]></category>
		<category><![CDATA[Nestle interview questions and answers]]></category>
		<category><![CDATA[nmdc ltd interview questions and answers]]></category>
		<category><![CDATA[ntpc ltd interview questions and answers]]></category>
		<category><![CDATA[Oil and Natural Gas Corporation (ONGC) interview questions and answers]]></category>
		<category><![CDATA[pi industries ltd interview questions and answers]]></category>
		<category><![CDATA[pidilite industries interview questions and answers]]></category>
		<category><![CDATA[power grid corporation of India interview questions and answers]]></category>
		<category><![CDATA[ril partly paid interview questions and answers]]></category>
		<category><![CDATA[sbi card interview questions and answers]]></category>
		<category><![CDATA[sbi life insura interview questions and answers]]></category>
		<category><![CDATA[shree cements ltd interview questions and answers]]></category>
		<category><![CDATA[siemens interview questions and answers]]></category>
		<category><![CDATA[spot the error grammar exercises]]></category>
		<category><![CDATA[spot the errors in english with answers]]></category>
		<category><![CDATA[spotting error in english for bank exams]]></category>
		<category><![CDATA[spotting errors for competitive examinations]]></category>
		<category><![CDATA[spotting errors in english]]></category>
		<category><![CDATA[spotting errors in english exercises]]></category>
		<category><![CDATA[spotting errors in english for bank exams]]></category>
		<category><![CDATA[spotting errors in english for bank po]]></category>
		<category><![CDATA[spotting errors in english for competitive exams]]></category>
		<category><![CDATA[spotting errors in english grammar]]></category>
		<category><![CDATA[spotting errors in english quiz]]></category>
		<category><![CDATA[spotting errors in english sentences exercises]]></category>
		<category><![CDATA[spotting errors in english sentences exercises with answers]]></category>
		<category><![CDATA[spotting errors in english tricks for bank po]]></category>
		<category><![CDATA[spotting errors questions and answers]]></category>
		<category><![CDATA[spotting errors quiz]]></category>
		<category><![CDATA[spotting errors tricks]]></category>
		<category><![CDATA[srf limited interview questions and answers]]></category>
		<category><![CDATA[state bank of India (SBI) interview questions and answers]]></category>
		<category><![CDATA[Steel Authority of India Ltd (SAIL) interview questions and answers]]></category>
		<category><![CDATA[sun pharma interview questions and answers]]></category>
		<category><![CDATA[tata consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[tata motors interview questions and answers]]></category>
		<category><![CDATA[tata steel interview questions and answers]]></category>
		<category><![CDATA[titan company interview questions and answers]]></category>
		<category><![CDATA[torrent pharma interview questions and answers]]></category>
		<category><![CDATA[ultratech cement interview questions and answers]]></category>
		<category><![CDATA[United Phosphorus Ltd (UPL) interview questions and answers]]></category>
		<category><![CDATA[united spirits interview questions and answers]]></category>
		<category><![CDATA[vedanta ltd interview questions and answers]]></category>
		<category><![CDATA[zomato interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2240</guid>

					<description><![CDATA[Answer : A. The meeting adjourned abruptly]]></description>
										<content:encoded><![CDATA[<div class="Content">
<div class="hddn">
<p class="color-pink">Read the sentence to determine if there is any grammatical error in it. Choose the letter corresponding to the part that contains the error. Ignore errors of punctuation, if any ?</p>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<p>A. The meeting adjourned abruptly</p>
</div>
<div class="col-sm-6">
<p>B. by the CEO after</p>
</div>
<div class="col-sm-6">
<p>C. about three hours of deliberation</p>
</div>
<div class="col-sm-6">
<p>D. No error</p>
</div>
</div>
<h3 id="answer-a-the-meeting-adjourned-abruptly"><b>Answer : </b>A. The meeting adjourned abruptly</h3>
<div class="subheading">
<h2 id="explanation">Explanation</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li>The meeting <b>was </b>adjourned abruptly</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/spotting-errors/ignore-errors-of-punctuation-if-any-a-the-meeting-adjourned-abruptly-b-by-the-ceo-after-c-about-three-hours-of-deliberation-d-no-error/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Economical Antonyms &#124; Select the option that is most nearly opposite in meaning to the given word: Economical ?</title>
		<link>https://www.wikitechy.com/interview-questions/antonyms/economical-antonyms-select-the-option-that-is-most-nearly-opposite-in-meaning-to-the-given-word-economical/</link>
					<comments>https://www.wikitechy.com/interview-questions/antonyms/economical-antonyms-select-the-option-that-is-most-nearly-opposite-in-meaning-to-the-given-word-economical/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Wed, 18 Aug 2021 08:45:43 +0000</pubDate>
				<category><![CDATA[Antonyms]]></category>
		<category><![CDATA[adani enterpris interview questions and answers]]></category>
		<category><![CDATA[adani green energy ltd interview questions and answers]]></category>
		<category><![CDATA[adani ports ltd interview questions and answers]]></category>
		<category><![CDATA[adani total gas ltd interview questions and answers]]></category>
		<category><![CDATA[adani transmission ltd interview questions and answers]]></category>
		<category><![CDATA[ambuja cements interview questions and answers]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[antonyms and synonyms]]></category>
		<category><![CDATA[antonyms examples]]></category>
		<category><![CDATA[apollo hospital interview questions and answers]]></category>
		<category><![CDATA[aurobindo pharm interview questions and answers]]></category>
		<category><![CDATA[avenue supermarts ltd interview questions and answers]]></category>
		<category><![CDATA[axis bank interview questions and answers]]></category>
		<category><![CDATA[bajaj auto interview questions and answers]]></category>
		<category><![CDATA[bajaj finance interview questions and answers]]></category>
		<category><![CDATA[bajaj finserv ltd interview questions and answers]]></category>
		<category><![CDATA[balkrishna industries interview questions and answers]]></category>
		<category><![CDATA[bandhan bank interview questions and answers]]></category>
		<category><![CDATA[berger paints interview questions and answers]]></category>
		<category><![CDATA[Bharat Petroleum Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[biocon interview questions and answers]]></category>
		<category><![CDATA[britannia industries ltd interview questions and answers]]></category>
		<category><![CDATA[cadila health interview questions and answers]]></category>
		<category><![CDATA[coal india Ltd interview questions and answers]]></category>
		<category><![CDATA[colgate interview questions and answers]]></category>
		<category><![CDATA[dabur india ltd interview questions and answers]]></category>
		<category><![CDATA[different antonym]]></category>
		<category><![CDATA[divis labs interview questions and answers]]></category>
		<category><![CDATA[dlf interview questions and answers]]></category>
		<category><![CDATA[Dr. Reddys Labs interview questions and answers]]></category>
		<category><![CDATA[economical in a sentence]]></category>
		<category><![CDATA[economical opposite word]]></category>
		<category><![CDATA[economical synonym]]></category>
		<category><![CDATA[economy synonym]]></category>
		<category><![CDATA[efficient synonym]]></category>
		<category><![CDATA[eicher motors ltd interview questions and answers]]></category>
		<category><![CDATA[expand antonym]]></category>
		<category><![CDATA[gail (India) Ltd interview questions and answers]]></category>
		<category><![CDATA[gland pharma ltd interview questions and answers]]></category>
		<category><![CDATA[godrej consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[godrej properties interview questions and answers]]></category>
		<category><![CDATA[grasim Industries ltd interview questions and answers]]></category>
		<category><![CDATA[gujarat gas ltd interview questions and answers]]></category>
		<category><![CDATA[havells india ltd interview questions and answers]]></category>
		<category><![CDATA[hdfc life insurance company ltd interview questions and answers]]></category>
		<category><![CDATA[hero motocorp interview questions and answers]]></category>
		<category><![CDATA[hindalco industries ltd interview questions and answers]]></category>
		<category><![CDATA[Hindustan Unilever Ltd interview questions and answers]]></category>
		<category><![CDATA[hindustan zinc ltd interview questions and answers]]></category>
		<category><![CDATA[ICICI Lombard interview questions and answers]]></category>
		<category><![CDATA[icici prudential Life Insurance interview questions and answers]]></category>
		<category><![CDATA[Indian Oil Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[indus towers ltd interview questions and answers]]></category>
		<category><![CDATA[indusind bank interview questions and answers]]></category>
		<category><![CDATA[interglobe aviation interview questions and answers]]></category>
		<category><![CDATA[jsw steel interview questions and answers]]></category>
		<category><![CDATA[jubilant foodworks ltd interview questions and answers]]></category>
		<category><![CDATA[kotak mahindra bank interview questions and answers]]></category>
		<category><![CDATA[L&T Infotech interview questions and answers]]></category>
		<category><![CDATA[larsen & toubro Ltd interview questions and answers]]></category>
		<category><![CDATA[logical antonym]]></category>
		<category><![CDATA[Lupin interview questions and answers]]></category>
		<category><![CDATA[m&m interview questions and answers]]></category>
		<category><![CDATA[marico interview questions and answers]]></category>
		<category><![CDATA[maruti suzuki interview questions and answers]]></category>
		<category><![CDATA[more economical meaning]]></category>
		<category><![CDATA[motherson sumi systems interview questions and answers]]></category>
		<category><![CDATA[muthoot finance hdfc amc interview questions and answers]]></category>
		<category><![CDATA[Nestle interview questions and answers]]></category>
		<category><![CDATA[nmdc ltd interview questions and answers]]></category>
		<category><![CDATA[ntpc ltd interview questions and answers]]></category>
		<category><![CDATA[Oil and Natural Gas Corporation (ONGC) interview questions and answers]]></category>
		<category><![CDATA[opposite antonym]]></category>
		<category><![CDATA[pi industries ltd interview questions and answers]]></category>
		<category><![CDATA[pidilite industries interview questions and answers]]></category>
		<category><![CDATA[power grid corporation of India interview questions and answers]]></category>
		<category><![CDATA[related words for economically]]></category>
		<category><![CDATA[ril partly paid interview questions and answers]]></category>
		<category><![CDATA[sbi card interview questions and answers]]></category>
		<category><![CDATA[sbi life insura interview questions and answers]]></category>
		<category><![CDATA[shree cements ltd interview questions and answers]]></category>
		<category><![CDATA[siemens interview questions and answers]]></category>
		<category><![CDATA[srf limited interview questions and answers]]></category>
		<category><![CDATA[state bank of India (SBI) interview questions and answers]]></category>
		<category><![CDATA[Steel Authority of India Ltd (SAIL) interview questions and answers]]></category>
		<category><![CDATA[sun pharma interview questions and answers]]></category>
		<category><![CDATA[tata consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[tata motors interview questions and answers]]></category>
		<category><![CDATA[tata steel interview questions and answers]]></category>
		<category><![CDATA[titan company interview questions and answers]]></category>
		<category><![CDATA[torrent pharma interview questions and answers]]></category>
		<category><![CDATA[ultratech cement interview questions and answers]]></category>
		<category><![CDATA[United Phosphorus Ltd (UPL) interview questions and answers]]></category>
		<category><![CDATA[united spirits interview questions and answers]]></category>
		<category><![CDATA[use antonym]]></category>
		<category><![CDATA[vedanta ltd interview questions and answers]]></category>
		<category><![CDATA[zomato interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2203</guid>

					<description><![CDATA[Answer : B. Wasteful]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Select the option that is most nearly opposite in meaning to the given word ?<br />
<b>Economical</b></p>
<div class="row">
<div class="col-sm-6">
<p>A. Frugal</p>
</div>
<div class="col-sm-6">
<p>B. Wasteful</p>
</div>
<div class="col-sm-6">
<p>C. Efficient</p>
</div>
<div class="col-sm-6">
<p>D. Plain</p>
</div>
</div>
</div>
</div>
<h3 id="answer-b-wasteful"><b>Answer : </b>B. Wasteful</h3>
<div class="subheading">
<h2 id="explanation">Explanation</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li><b>Frugal :</b> Frugality has been defined as the tendency to acquire goods and services in a restrained manner.</li>
<li><b>Wasteful :</b> Expending something of value carelessly.</li>
<li><b>Efficient :</b> Achieving maximum productivity with minimum wasted effort or expense.</li>
<li><b>Begin :</b> Not decorated or elaborate.</li>
<li><b>Economical :</b> Using no more of something than is necessary.</li>
</ul>
</div>
</div>
<p>Antonym of Economical is Wasteful.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/antonyms/economical-antonyms-select-the-option-that-is-most-nearly-opposite-in-meaning-to-the-given-word-economical/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Vanity Antonyms &#124; Select the option that is most nearly opposite in meaning to the given word: Vanity ?</title>
		<link>https://www.wikitechy.com/interview-questions/antonyms/vanity-antonyms-select-the-option-that-is-most-nearly-opposite-in-meaning-to-the-given-word-vanity/</link>
					<comments>https://www.wikitechy.com/interview-questions/antonyms/vanity-antonyms-select-the-option-that-is-most-nearly-opposite-in-meaning-to-the-given-word-vanity/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Wed, 18 Aug 2021 08:45:04 +0000</pubDate>
				<category><![CDATA[Antonyms]]></category>
		<category><![CDATA[adani enterpris interview questions and answers]]></category>
		<category><![CDATA[adani green energy ltd interview questions and answers]]></category>
		<category><![CDATA[adani ports ltd interview questions and answers]]></category>
		<category><![CDATA[adani total gas ltd interview questions and answers]]></category>
		<category><![CDATA[adani transmission ltd interview questions and answers]]></category>
		<category><![CDATA[ambuja cements interview questions and answers]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[another word for vanity table]]></category>
		<category><![CDATA[antonym examples]]></category>
		<category><![CDATA[antonyms]]></category>
		<category><![CDATA[apollo hospital interview questions and answers]]></category>
		<category><![CDATA[aurobindo pharm interview questions and answers]]></category>
		<category><![CDATA[avenue supermarts ltd interview questions and answers]]></category>
		<category><![CDATA[axis bank interview questions and answers]]></category>
		<category><![CDATA[bajaj auto interview questions and answers]]></category>
		<category><![CDATA[bajaj finance interview questions and answers]]></category>
		<category><![CDATA[bajaj finserv ltd interview questions and answers]]></category>
		<category><![CDATA[balkrishna industries interview questions and answers]]></category>
		<category><![CDATA[bandhan bank interview questions and answers]]></category>
		<category><![CDATA[berger paints interview questions and answers]]></category>
		<category><![CDATA[Bharat Petroleum Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[biocon interview questions and answers]]></category>
		<category><![CDATA[britannia industries ltd interview questions and answers]]></category>
		<category><![CDATA[cadila health interview questions and answers]]></category>
		<category><![CDATA[coal india Ltd interview questions and answers]]></category>
		<category><![CDATA[colgate interview questions and answers]]></category>
		<category><![CDATA[dabur india ltd interview questions and answers]]></category>
		<category><![CDATA[difficult antonym]]></category>
		<category><![CDATA[divis labs interview questions and answers]]></category>
		<category><![CDATA[dlf interview questions and answers]]></category>
		<category><![CDATA[Dr. Reddys Labs interview questions and answers]]></category>
		<category><![CDATA[eicher motors ltd interview questions and answers]]></category>
		<category><![CDATA[gail (India) Ltd interview questions and answers]]></category>
		<category><![CDATA[gland pharma ltd interview questions and answers]]></category>
		<category><![CDATA[godrej consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[godrej properties interview questions and answers]]></category>
		<category><![CDATA[grasim Industries ltd interview questions and answers]]></category>
		<category><![CDATA[gujarat gas ltd interview questions and answers]]></category>
		<category><![CDATA[havells india ltd interview questions and answers]]></category>
		<category><![CDATA[hdfc life insurance company ltd interview questions and answers]]></category>
		<category><![CDATA[hero motocorp interview questions and answers]]></category>
		<category><![CDATA[hindalco industries ltd interview questions and answers]]></category>
		<category><![CDATA[Hindustan Unilever Ltd interview questions and answers]]></category>
		<category><![CDATA[hindustan zinc ltd interview questions and answers]]></category>
		<category><![CDATA[ICICI Lombard interview questions and answers]]></category>
		<category><![CDATA[icici prudential Life Insurance interview questions and answers]]></category>
		<category><![CDATA[Indian Oil Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[indus towers ltd interview questions and answers]]></category>
		<category><![CDATA[indusind bank interview questions and answers]]></category>
		<category><![CDATA[interglobe aviation interview questions and answers]]></category>
		<category><![CDATA[jsw steel interview questions and answers]]></category>
		<category><![CDATA[jubilant foodworks ltd interview questions and answers]]></category>
		<category><![CDATA[kotak mahindra bank interview questions and answers]]></category>
		<category><![CDATA[L&T Infotech interview questions and answers]]></category>
		<category><![CDATA[larsen & toubro Ltd interview questions and answers]]></category>
		<category><![CDATA[Lupin interview questions and answers]]></category>
		<category><![CDATA[m&m interview questions and answers]]></category>
		<category><![CDATA[marico interview questions and answers]]></category>
		<category><![CDATA[maruti suzuki interview questions and answers]]></category>
		<category><![CDATA[motherson sumi systems interview questions and answers]]></category>
		<category><![CDATA[muthoot finance hdfc amc interview questions and answers]]></category>
		<category><![CDATA[Nestle interview questions and answers]]></category>
		<category><![CDATA[nmdc ltd interview questions and answers]]></category>
		<category><![CDATA[ntpc ltd interview questions and answers]]></category>
		<category><![CDATA[Oil and Natural Gas Corporation (ONGC) interview questions and answers]]></category>
		<category><![CDATA[pi industries ltd interview questions and answers]]></category>
		<category><![CDATA[pidilite industries interview questions and answers]]></category>
		<category><![CDATA[power grid corporation of India interview questions and answers]]></category>
		<category><![CDATA[related words for vanity]]></category>
		<category><![CDATA[ril partly paid interview questions and answers]]></category>
		<category><![CDATA[sbi card interview questions and answers]]></category>
		<category><![CDATA[sbi life insura interview questions and answers]]></category>
		<category><![CDATA[shree cements ltd interview questions and answers]]></category>
		<category><![CDATA[siemens interview questions and answers]]></category>
		<category><![CDATA[simple antonym]]></category>
		<category><![CDATA[srf limited interview questions and answers]]></category>
		<category><![CDATA[state bank of India (SBI) interview questions and answers]]></category>
		<category><![CDATA[Steel Authority of India Ltd (SAIL) interview questions and answers]]></category>
		<category><![CDATA[sun pharma interview questions and answers]]></category>
		<category><![CDATA[synonym and antonym word list]]></category>
		<category><![CDATA[synonym antonym dictionary]]></category>
		<category><![CDATA[tata consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[tata motors interview questions and answers]]></category>
		<category><![CDATA[tata steel interview questions and answers]]></category>
		<category><![CDATA[titan company interview questions and answers]]></category>
		<category><![CDATA[torrent pharma interview questions and answers]]></category>
		<category><![CDATA[ultratech cement interview questions and answers]]></category>
		<category><![CDATA[United Phosphorus Ltd (UPL) interview questions and answers]]></category>
		<category><![CDATA[united spirits interview questions and answers]]></category>
		<category><![CDATA[vanity antonyms]]></category>
		<category><![CDATA[vanity in a sentence]]></category>
		<category><![CDATA[vanity meaning in english]]></category>
		<category><![CDATA[vanity opposite humility]]></category>
		<category><![CDATA[vanity opposite word]]></category>
		<category><![CDATA[vedanta ltd interview questions and answers]]></category>
		<category><![CDATA[zomato interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2202</guid>

					<description><![CDATA[Answer : B. Humility]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Select the option that is most nearly opposite in meaning to the given word ?<br />
<b>Vanity</b></p>
<div class="row">
<div class="col-sm-6">
<p>A. Pride</p>
</div>
<div class="col-sm-6">
<p>B. Humility</p>
</div>
<div class="col-sm-6">
<p>C. Conceit</p>
</div>
<div class="col-sm-6">
<p>D. Indifference</p>
</div>
</div>
</div>
</div>
<h3 id="answer-b-humility"><b>Answer : </b>B. Humility</h3>
<div class="subheading">
<h2 id="explanation">Explanation</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li><b>Pride :</b> Pride is a sense of the respect that other people have for you, and that you have for yourself.</li>
<li><b>Humility :</b> Humility is the quality of being humble.</li>
<li><b>Conceit :</b> Conceit is very great pride in your abilities.</li>
<li><b>Indifference :</b> Indifferent attitude toward the suffering of others.</li>
</ul>
</div>
</div>
<p>Antonym of Vanity is Humility.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/antonyms/vanity-antonyms-select-the-option-that-is-most-nearly-opposite-in-meaning-to-the-given-word-vanity/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Management is a set of processes that can keep a complicated system of people and technology to run smoothly.</title>
		<link>https://www.wikitechy.com/interview-questions/comprehension/management-is-a-set-of-processes-that-can-keep-a-complicated-system-of-people-and-technology-to-run-smoothly/</link>
					<comments>https://www.wikitechy.com/interview-questions/comprehension/management-is-a-set-of-processes-that-can-keep-a-complicated-system-of-people-and-technology-to-run-smoothly/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Wed, 18 Aug 2021 06:18:32 +0000</pubDate>
				<category><![CDATA[Comprehension]]></category>
		<category><![CDATA[adani enterpris interview questions and answers]]></category>
		<category><![CDATA[adani green energy ltd interview questions and answers]]></category>
		<category><![CDATA[adani ports ltd interview questions and answers]]></category>
		<category><![CDATA[adani total gas ltd interview questions and answers]]></category>
		<category><![CDATA[adani transmission ltd interview questions and answers]]></category>
		<category><![CDATA[ambuja cements interview questions and answers]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[apollo hospital interview questions and answers]]></category>
		<category><![CDATA[aurobindo pharm interview questions and answers]]></category>
		<category><![CDATA[avenue supermarts ltd interview questions and answers]]></category>
		<category><![CDATA[axis bank interview questions and answers]]></category>
		<category><![CDATA[bajaj auto interview questions and answers]]></category>
		<category><![CDATA[bajaj finance interview questions and answers]]></category>
		<category><![CDATA[bajaj finserv ltd interview questions and answers]]></category>
		<category><![CDATA[balkrishna industries interview questions and answers]]></category>
		<category><![CDATA[bandhan bank interview questions and answers]]></category>
		<category><![CDATA[berger paints interview questions and answers]]></category>
		<category><![CDATA[Bharat Petroleum Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[biocon interview questions and answers]]></category>
		<category><![CDATA[britannia industries ltd interview questions and answers]]></category>
		<category><![CDATA[cadila health interview questions and answers]]></category>
		<category><![CDATA[coal india Ltd interview questions and answers]]></category>
		<category><![CDATA[colgate interview questions and answers]]></category>
		<category><![CDATA[comprehension passages with questions and answers for college students]]></category>
		<category><![CDATA[comprehension questions examples]]></category>
		<category><![CDATA[dabur india ltd interview questions and answers]]></category>
		<category><![CDATA[divis labs interview questions and answers]]></category>
		<category><![CDATA[dlf interview questions and answers]]></category>
		<category><![CDATA[Dr. Reddys Labs interview questions and answers]]></category>
		<category><![CDATA[eicher motors ltd interview questions and answers]]></category>
		<category><![CDATA[english reading comprehension]]></category>
		<category><![CDATA[exercises on reading comprehension with answers]]></category>
		<category><![CDATA[free reading comprehension worksheets]]></category>
		<category><![CDATA[gail (India) Ltd interview questions and answers]]></category>
		<category><![CDATA[gland pharma ltd interview questions and answers]]></category>
		<category><![CDATA[godrej consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[godrej properties interview questions and answers]]></category>
		<category><![CDATA[grasim Industries ltd interview questions and answers]]></category>
		<category><![CDATA[gujarat gas ltd interview questions and answers]]></category>
		<category><![CDATA[havells india ltd interview questions and answers]]></category>
		<category><![CDATA[hdfc life insurance company ltd interview questions and answers]]></category>
		<category><![CDATA[hero motocorp interview questions and answers]]></category>
		<category><![CDATA[hindalco industries ltd interview questions and answers]]></category>
		<category><![CDATA[Hindustan Unilever Ltd interview questions and answers]]></category>
		<category><![CDATA[hindustan zinc ltd interview questions and answers]]></category>
		<category><![CDATA[how to improve reading comprehension skills]]></category>
		<category><![CDATA[ICICI Lombard interview questions and answers]]></category>
		<category><![CDATA[icici prudential Life Insurance interview questions and answers]]></category>
		<category><![CDATA[improve reading comprehension]]></category>
		<category><![CDATA[Indian Oil Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[indus towers ltd interview questions and answers]]></category>
		<category><![CDATA[indusind bank interview questions and answers]]></category>
		<category><![CDATA[interglobe aviation interview questions and answers]]></category>
		<category><![CDATA[jsw steel interview questions and answers]]></category>
		<category><![CDATA[jubilant foodworks ltd interview questions and answers]]></category>
		<category><![CDATA[kotak mahindra bank interview questions and answers]]></category>
		<category><![CDATA[L&T Infotech interview questions and answers]]></category>
		<category><![CDATA[larsen & toubro Ltd interview questions and answers]]></category>
		<category><![CDATA[Lupin interview questions and answers]]></category>
		<category><![CDATA[m&m interview questions and answers]]></category>
		<category><![CDATA[marico interview questions and answers]]></category>
		<category><![CDATA[maruti suzuki interview questions and answers]]></category>
		<category><![CDATA[motherson sumi systems interview questions and answers]]></category>
		<category><![CDATA[muthoot finance hdfc amc interview questions and answers]]></category>
		<category><![CDATA[Nestle interview questions and answers]]></category>
		<category><![CDATA[nmdc ltd interview questions and answers]]></category>
		<category><![CDATA[ntpc ltd interview questions and answers]]></category>
		<category><![CDATA[Oil and Natural Gas Corporation (ONGC) interview questions and answers]]></category>
		<category><![CDATA[pi industries ltd interview questions and answers]]></category>
		<category><![CDATA[pidilite industries interview questions and answers]]></category>
		<category><![CDATA[power grid corporation of India interview questions and answers]]></category>
		<category><![CDATA[reading comprehension]]></category>
		<category><![CDATA[reading comprehension activities]]></category>
		<category><![CDATA[reading comprehension examples]]></category>
		<category><![CDATA[reading comprehension exercises]]></category>
		<category><![CDATA[reading comprehension exercises with answers]]></category>
		<category><![CDATA[reading comprehension for beginners]]></category>
		<category><![CDATA[reading comprehension intermediate]]></category>
		<category><![CDATA[reading comprehension multiple choice]]></category>
		<category><![CDATA[reading comprehension passages]]></category>
		<category><![CDATA[reading comprehension passages with questions and answers]]></category>
		<category><![CDATA[reading comprehension practice]]></category>
		<category><![CDATA[reading comprehension questions]]></category>
		<category><![CDATA[reading comprehension questions and answers]]></category>
		<category><![CDATA[reading comprehension skills]]></category>
		<category><![CDATA[reading comprehension strategies]]></category>
		<category><![CDATA[reading comprehension test with answer key]]></category>
		<category><![CDATA[reading comprehension test with answers]]></category>
		<category><![CDATA[reading comprehension texts]]></category>
		<category><![CDATA[reading comprehension worksheets]]></category>
		<category><![CDATA[ril partly paid interview questions and answers]]></category>
		<category><![CDATA[sbi card interview questions and answers]]></category>
		<category><![CDATA[sbi life insura interview questions and answers]]></category>
		<category><![CDATA[shree cements ltd interview questions and answers]]></category>
		<category><![CDATA[siemens interview questions and answers]]></category>
		<category><![CDATA[simple comprehension passages with questions and answers]]></category>
		<category><![CDATA[srf limited interview questions and answers]]></category>
		<category><![CDATA[state bank of India (SBI) interview questions and answers]]></category>
		<category><![CDATA[Steel Authority of India Ltd (SAIL) interview questions and answers]]></category>
		<category><![CDATA[sun pharma interview questions and answers]]></category>
		<category><![CDATA[tata consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[tata motors interview questions and answers]]></category>
		<category><![CDATA[tata steel interview questions and answers]]></category>
		<category><![CDATA[titan company interview questions and answers]]></category>
		<category><![CDATA[torrent pharma interview questions and answers]]></category>
		<category><![CDATA[ultratech cement interview questions and answers]]></category>
		<category><![CDATA[United Phosphorus Ltd (UPL) interview questions and answers]]></category>
		<category><![CDATA[united spirits interview questions and answers]]></category>
		<category><![CDATA[vedanta ltd interview questions and answers]]></category>
		<category><![CDATA[what is reading comprehension]]></category>
		<category><![CDATA[Zoho Interview Questions]]></category>
		<category><![CDATA[zomato interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2166</guid>

					<description><![CDATA[Answer: B. A. A]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p align="justify"><b>Directions (Q. 1 to 3) :</b><br />
Read the passage and answer the questions.</p>
<p align="justify">Management is a set of processes that can keep a complicated system of people and technology to run smoothly. The most important aspects of management include planning, budgeting, organizing, staffing, controlling and problem-solving. Leadership is a set of processes that creates organizations in the first place or adapts them to significantly changing circumstances. Leadership defines what the future should look like, aligns people with that vision and inspires them to make it happen despite the obstacles. This distinction is absolutely crucial for our purposes here: Successful transformation is 70 to 90 per cent leadership and only 10 to 30 percent management. Yet for historical reasons, many organizations today don’t have much leadership. And almost everyone thinks about the problem here as one of managing change. For most of this country, as we created thousands and thousands of large organizations for the first time in human history, we didn’t have enough good managers to keep all those bureaucracies functioning. Many companies and universities developed management programs and hundreds and thousands of people were encouraged to learn management on the job. And they did. But, people were taught little about leadership. To some degree, management was emphasized because it’s easier to preach than leadership. But even more so, management was the main item on the twentieth century agenda because that’s what was needed. For every entrepreneur or business builder who was a leader, we needed hundreds of managers to run their ever-growing enterprises. Unfortunately for us today, this emphasis on management has often been institutionalized in corporate cultures that discourage employees from learning how to lead. Ironically, past success is usually the key ingredient in producing this outcome. The syndrome, as I have observed it on many occasions, goes like this: Success creates some degree of marked dominance which in turn produces much growth. After a while keeping the ever-larger organization under control becomes the primary challenge. So, attention turns inward and managerial competencies are nurtured. With a strong emphasis on management but not leadership, bureaucracy and an inward focus takeover. But with continued success, the result mostly of market dominance, the problem often goes unaddressed and an unhealthy arrogance begins to evolve. All of these characteristics then make any transformation effort much more difficult. Arrogant managers can over-evaluate their current performance and competitive position, listen poorly and learn slowly. Inwardly focused employees can have difficulty seeing the very forces that present threats and opportunities. Bureaucratic cultures can smother those who want to respond to shifting conditions. And the lack of leadership leaves no force inside these organizations to break out of the morass.</p>
</div>
</div>
<div class="TextHeading">
<div class="hddn">
<p class="color-pink">1. Why did companies and universities develop programs to prepare managers in such large numbers</p>
<div class="row">
<div class="col-sm-12">
<p>A. Companies and universities wanted to generate funds through these programs.</p>
</div>
<div class="col-sm-12">
<p>B. The large number of organizations were created as they needed managers in good number.</p>
</div>
<div class="col-sm-12">
<p>C. Organizations did not want to spend their scarce resources in training managers.</p>
</div>
<div class="col-sm-12">
<p>D. Organizations wanted to create communication network through trained managers.</p>
</div>
</div>
</div>
</div>
<h3 id="answer-b-the-large-number-of-organizations-were-created-as-they-needed-managers-in-good-number"><b>Answer : </b>B. The large number of organizations were created as they needed managers in good number.</h3>
<div class="TextHeading">
<div class="hddn">
<p class="color-pink">2. Which of the following characteristics helps an organization in its efforts to transform ?</p>
<div class="row">
<div class="col-sm-12">
<p>A. Emphasis on leadership and not management</p>
</div>
<div class="col-sm-12">
<p>B. Strong and dogmatic culture</p>
</div>
<div class="col-sm-12">
<p>C. Bureaucratic and inward-looking approach</p>
</div>
<div class="col-sm-12">
<p>D. Failing to acknowledge the value of customers and shareholders</p>
</div>
</div>
</div>
</div>
<h3 id="answer-a-emphasis-on-leadership-and-not-management"><b>Answer : </b>A. Emphasis on leadership and not management</h3>
<div class="TextHeading">
<div class="hddn">
<p class="color-pink">3. Find the word that most closely means the same as the word ‘smother’ ?</p>
<div class="row">
<div class="col-sm-6">
<p>A. Suppress</p>
</div>
<div class="col-sm-6">
<p>B. Encourage</p>
</div>
<div class="col-sm-6">
<p>C. Instigate</p>
</div>
<div class="col-sm-6">
<p>D. Criticize</p>
</div>
</div>
</div>
</div>
<h3 id="answer-a-suppress"><b>Answer : </b>A. Suppress</h3>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/comprehension/management-is-a-set-of-processes-that-can-keep-a-complicated-system-of-people-and-technology-to-run-smoothly/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Please remind me of posting these letters to my relatives ?</title>
		<link>https://www.wikitechy.com/interview-questions/sentence-improvement/please-remind-me-of-posting-these-letters-to-my-relatives/</link>
					<comments>https://www.wikitechy.com/interview-questions/sentence-improvement/please-remind-me-of-posting-these-letters-to-my-relatives/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Wed, 18 Aug 2021 06:11:41 +0000</pubDate>
				<category><![CDATA[Sentence Improvement]]></category>
		<category><![CDATA[adani enterpris interview questions and answers]]></category>
		<category><![CDATA[adani green energy ltd interview questions and answers]]></category>
		<category><![CDATA[adani ports ltd interview questions and answers]]></category>
		<category><![CDATA[adani total gas ltd interview questions and answers]]></category>
		<category><![CDATA[adani transmission ltd interview questions and answers]]></category>
		<category><![CDATA[ambuja cements interview questions and answers]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[apollo hospital interview questions and answers]]></category>
		<category><![CDATA[aurobindo pharm interview questions and answers]]></category>
		<category><![CDATA[avenue supermarts ltd interview questions and answers]]></category>
		<category><![CDATA[axis bank interview questions and answers]]></category>
		<category><![CDATA[bajaj auto interview questions and answers]]></category>
		<category><![CDATA[bajaj finance interview questions and answers]]></category>
		<category><![CDATA[bajaj finserv ltd interview questions and answers]]></category>
		<category><![CDATA[balkrishna industries interview questions and answers]]></category>
		<category><![CDATA[bandhan bank interview questions and answers]]></category>
		<category><![CDATA[berger paints interview questions and answers]]></category>
		<category><![CDATA[Bharat Petroleum Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[biocon interview questions and answers]]></category>
		<category><![CDATA[britannia industries ltd interview questions and answers]]></category>
		<category><![CDATA[cadila health interview questions and answers]]></category>
		<category><![CDATA[coal india Ltd interview questions and answers]]></category>
		<category><![CDATA[colgate interview questions and answers]]></category>
		<category><![CDATA[correction of sentences]]></category>
		<category><![CDATA[correction of sentences with answers]]></category>
		<category><![CDATA[correction of sentences with explanation]]></category>
		<category><![CDATA[dabur india ltd interview questions and answers]]></category>
		<category><![CDATA[divis labs interview questions and answers]]></category>
		<category><![CDATA[dlf interview questions and answers]]></category>
		<category><![CDATA[Dr. Reddys Labs interview questions and answers]]></category>
		<category><![CDATA[eicher motors ltd interview questions and answers]]></category>
		<category><![CDATA[english objective questions]]></category>
		<category><![CDATA[english sentence correction test online]]></category>
		<category><![CDATA[gail (India) Ltd interview questions and answers]]></category>
		<category><![CDATA[gland pharma ltd interview questions and answers]]></category>
		<category><![CDATA[godrej consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[godrej properties interview questions and answers]]></category>
		<category><![CDATA[grasim Industries ltd interview questions and answers]]></category>
		<category><![CDATA[gujarat gas ltd interview questions and answers]]></category>
		<category><![CDATA[havells india ltd interview questions and answers]]></category>
		<category><![CDATA[hdfc life insurance company ltd interview questions and answers]]></category>
		<category><![CDATA[hero motocorp interview questions and answers]]></category>
		<category><![CDATA[hindalco industries ltd interview questions and answers]]></category>
		<category><![CDATA[Hindustan Unilever Ltd interview questions and answers]]></category>
		<category><![CDATA[hindustan zinc ltd interview questions and answers]]></category>
		<category><![CDATA[ICICI Lombard interview questions and answers]]></category>
		<category><![CDATA[icici prudential Life Insurance interview questions and answers]]></category>
		<category><![CDATA[Indian Oil Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[indus towers ltd interview questions and answers]]></category>
		<category><![CDATA[indusind bank interview questions and answers]]></category>
		<category><![CDATA[interglobe aviation interview questions and answers]]></category>
		<category><![CDATA[jsw steel interview questions and answers]]></category>
		<category><![CDATA[jubilant foodworks ltd interview questions and answers]]></category>
		<category><![CDATA[kotak mahindra bank interview questions and answers]]></category>
		<category><![CDATA[L&T Infotech interview questions and answers]]></category>
		<category><![CDATA[larsen & toubro Ltd interview questions and answers]]></category>
		<category><![CDATA[Lupin interview questions and answers]]></category>
		<category><![CDATA[m&m interview questions and answers]]></category>
		<category><![CDATA[marico interview questions and answers]]></category>
		<category><![CDATA[maruti suzuki interview questions and answers]]></category>
		<category><![CDATA[mcq on types of sentences]]></category>
		<category><![CDATA[motherson sumi systems interview questions and answers]]></category>
		<category><![CDATA[muthoot finance hdfc amc interview questions and answers]]></category>
		<category><![CDATA[Nestle interview questions and answers]]></category>
		<category><![CDATA[nmdc ltd interview questions and answers]]></category>
		<category><![CDATA[ntpc ltd interview questions and answers]]></category>
		<category><![CDATA[Oil and Natural Gas Corporation (ONGC) interview questions and answers]]></category>
		<category><![CDATA[pi industries ltd interview questions and answers]]></category>
		<category><![CDATA[pidilite industries interview questions and answers]]></category>
		<category><![CDATA[power grid corporation of India interview questions and answers]]></category>
		<category><![CDATA[ril partly paid interview questions and answers]]></category>
		<category><![CDATA[sbi card interview questions and answers]]></category>
		<category><![CDATA[sbi life insura interview questions and answers]]></category>
		<category><![CDATA[sentence completion]]></category>
		<category><![CDATA[sentence correction cat tips]]></category>
		<category><![CDATA[sentence correction exercises with answers]]></category>
		<category><![CDATA[sentence correction mcq]]></category>
		<category><![CDATA[sentence correction practice questions with answers]]></category>
		<category><![CDATA[sentence correction questions and answers]]></category>
		<category><![CDATA[sentence correction rules gmat]]></category>
		<category><![CDATA[sentence correction tips and tricks]]></category>
		<category><![CDATA[sentence improvement]]></category>
		<category><![CDATA[sentence improvement in english]]></category>
		<category><![CDATA[sentence improvement questions]]></category>
		<category><![CDATA[sentence improvement rules]]></category>
		<category><![CDATA[sentence improvement tips]]></category>
		<category><![CDATA[sentence improvement tricks]]></category>
		<category><![CDATA[sentence improvement with explanation]]></category>
		<category><![CDATA[shree cements ltd interview questions and answers]]></category>
		<category><![CDATA[siemens interview questions and answers]]></category>
		<category><![CDATA[srf limited interview questions and answers]]></category>
		<category><![CDATA[state bank of India (SBI) interview questions and answers]]></category>
		<category><![CDATA[Steel Authority of India Ltd (SAIL) interview questions and answers]]></category>
		<category><![CDATA[sun pharma interview questions and answers]]></category>
		<category><![CDATA[tata consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[tata motors interview questions and answers]]></category>
		<category><![CDATA[tata steel interview questions and answers]]></category>
		<category><![CDATA[titan company interview questions and answers]]></category>
		<category><![CDATA[torrent pharma interview questions and answers]]></category>
		<category><![CDATA[ultratech cement interview questions and answers]]></category>
		<category><![CDATA[United Phosphorus Ltd (UPL) interview questions and answers]]></category>
		<category><![CDATA[united spirits interview questions and answers]]></category>
		<category><![CDATA[vedanta ltd interview questions and answers]]></category>
		<category><![CDATA[zomato interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2154</guid>

					<description><![CDATA[Answer : B. to post]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">In questions given below, a part of the sentence is italicised and bold. Below are given alternatives to the italicised part which may improve the sentence. Choose the correct alternative. In case no improvement is needed, option ‘D’ or option ‘E’ is the answer.<br />
Please remind me <b>of posting</b> these letters to my relatives</p>
<div class="row">
<div class="col-sm-6">
<p>A. by posting</p>
</div>
<div class="col-sm-6">
<p>B. to post</p>
</div>
<div class="col-sm-6">
<p>C. for posting</p>
</div>
<div class="col-sm-6">
<p>D. no improvement</p>
</div>
</div>
</div>
</div>
<h3 id="answer-b-to-post"><b>Answer : </b>B. to post</h3>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/sentence-improvement/please-remind-me-of-posting-these-letters-to-my-relatives/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Surprisingly, Alaska received scanty rainfall this year</title>
		<link>https://www.wikitechy.com/interview-questions/synonyms/surprisingly-alaska-received-scanty-rainfall-this-year/</link>
					<comments>https://www.wikitechy.com/interview-questions/synonyms/surprisingly-alaska-received-scanty-rainfall-this-year/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Wed, 18 Aug 2021 04:34:58 +0000</pubDate>
				<category><![CDATA[Synonyms]]></category>
		<category><![CDATA[adani enterpris interview questions and answers]]></category>
		<category><![CDATA[adani green energy ltd interview questions and answers]]></category>
		<category><![CDATA[adani ports ltd interview questions and answers]]></category>
		<category><![CDATA[adani total gas ltd interview questions and answers]]></category>
		<category><![CDATA[adani transmission ltd interview questions and answers]]></category>
		<category><![CDATA[ambuja cements interview questions and answers]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[apollo hospital interview questions and answers]]></category>
		<category><![CDATA[aurobindo pharm interview questions and answers]]></category>
		<category><![CDATA[avenue supermarts ltd interview questions and answers]]></category>
		<category><![CDATA[axis bank interview questions and answers]]></category>
		<category><![CDATA[bajaj auto interview questions and answers]]></category>
		<category><![CDATA[bajaj finance interview questions and answers]]></category>
		<category><![CDATA[bajaj finserv ltd interview questions and answers]]></category>
		<category><![CDATA[balkrishna industries interview questions and answers]]></category>
		<category><![CDATA[bandhan bank interview questions and answers]]></category>
		<category><![CDATA[berger paints interview questions and answers]]></category>
		<category><![CDATA[Bharat Petroleum Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[biocon interview questions and answers]]></category>
		<category><![CDATA[britannia industries ltd interview questions and answers]]></category>
		<category><![CDATA[cadila health interview questions and answers]]></category>
		<category><![CDATA[coal india Ltd interview questions and answers]]></category>
		<category><![CDATA[colgate interview questions and answers]]></category>
		<category><![CDATA[dabur india ltd interview questions and answers]]></category>
		<category><![CDATA[divis labs interview questions and answers]]></category>
		<category><![CDATA[dlf interview questions and answers]]></category>
		<category><![CDATA[Dr. Reddys Labs interview questions and answers]]></category>
		<category><![CDATA[eicher motors ltd interview questions and answers]]></category>
		<category><![CDATA[gail (India) Ltd interview questions and answers]]></category>
		<category><![CDATA[gland pharma ltd interview questions and answers]]></category>
		<category><![CDATA[godrej consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[godrej properties interview questions and answers]]></category>
		<category><![CDATA[grasim Industries ltd interview questions and answers]]></category>
		<category><![CDATA[gujarat gas ltd interview questions and answers]]></category>
		<category><![CDATA[havells india ltd interview questions and answers]]></category>
		<category><![CDATA[hdfc life insurance company ltd interview questions and answers]]></category>
		<category><![CDATA[hero motocorp interview questions and answers]]></category>
		<category><![CDATA[hindalco industries ltd interview questions and answers]]></category>
		<category><![CDATA[Hindustan Unilever Ltd interview questions and answers]]></category>
		<category><![CDATA[hindustan zinc ltd interview questions and answers]]></category>
		<category><![CDATA[ICICI Lombard interview questions and answers]]></category>
		<category><![CDATA[icici prudential Life Insurance interview questions and answers]]></category>
		<category><![CDATA[Indian Oil Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[indus towers ltd interview questions and answers]]></category>
		<category><![CDATA[indusind bank interview questions and answers]]></category>
		<category><![CDATA[interglobe aviation interview questions and answers]]></category>
		<category><![CDATA[jsw steel interview questions and answers]]></category>
		<category><![CDATA[jubilant foodworks ltd interview questions and answers]]></category>
		<category><![CDATA[kotak mahindra bank interview questions and answers]]></category>
		<category><![CDATA[L&T Infotech interview questions and answers]]></category>
		<category><![CDATA[larsen & toubro Ltd interview questions and answers]]></category>
		<category><![CDATA[Lupin interview questions and answers]]></category>
		<category><![CDATA[m&m interview questions and answers]]></category>
		<category><![CDATA[marico interview questions and answers]]></category>
		<category><![CDATA[maruti suzuki interview questions and answers]]></category>
		<category><![CDATA[motherson sumi systems interview questions and answers]]></category>
		<category><![CDATA[multiple choice questions on synonyms]]></category>
		<category><![CDATA[muthoot finance hdfc amc interview questions and answers]]></category>
		<category><![CDATA[Nestle interview questions and answers]]></category>
		<category><![CDATA[nmdc ltd interview questions and answers]]></category>
		<category><![CDATA[ntpc ltd interview questions and answers]]></category>
		<category><![CDATA[Oil and Natural Gas Corporation (ONGC) interview questions and answers]]></category>
		<category><![CDATA[pi industries ltd interview questions and answers]]></category>
		<category><![CDATA[pidilite industries interview questions and answers]]></category>
		<category><![CDATA[power grid corporation of India interview questions and answers]]></category>
		<category><![CDATA[ril partly paid interview questions and answers]]></category>
		<category><![CDATA[sbi card interview questions and answers]]></category>
		<category><![CDATA[sbi life insura interview questions and answers]]></category>
		<category><![CDATA[scant in a sentence]]></category>
		<category><![CDATA[scanty antonym]]></category>
		<category><![CDATA[scanty in a simple sentence]]></category>
		<category><![CDATA[scanty meaning]]></category>
		<category><![CDATA[scanty meaning in english]]></category>
		<category><![CDATA[scanty medical term]]></category>
		<category><![CDATA[scanty sentence]]></category>
		<category><![CDATA[scanty sentence examples]]></category>
		<category><![CDATA[scanty synonyms]]></category>
		<category><![CDATA[shree cements ltd interview questions and answers]]></category>
		<category><![CDATA[siemens interview questions and answers]]></category>
		<category><![CDATA[srf limited interview questions and answers]]></category>
		<category><![CDATA[state bank of India (SBI) interview questions and answers]]></category>
		<category><![CDATA[Steel Authority of India Ltd (SAIL) interview questions and answers]]></category>
		<category><![CDATA[sun pharma interview questions and answers]]></category>
		<category><![CDATA[synonyms and antonyms exercises with answers]]></category>
		<category><![CDATA[synonyms and antonyms quiz]]></category>
		<category><![CDATA[synonyms and antonyms quiz for competitive exam]]></category>
		<category><![CDATA[synonyms and antonyms quiz with answers]]></category>
		<category><![CDATA[synonyms and antonyms test questions]]></category>
		<category><![CDATA[synonyms and antonyms test with answers]]></category>
		<category><![CDATA[synonyms exercises with answers]]></category>
		<category><![CDATA[synonyms multiple choice questions with answers]]></category>
		<category><![CDATA[synonyms questions and answers]]></category>
		<category><![CDATA[synonyms quiz with answers]]></category>
		<category><![CDATA[synonyms test]]></category>
		<category><![CDATA[synonyms test practice with answers]]></category>
		<category><![CDATA[tata consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[tata motors interview questions and answers]]></category>
		<category><![CDATA[tata steel interview questions and answers]]></category>
		<category><![CDATA[titan company interview questions and answers]]></category>
		<category><![CDATA[torrent pharma interview questions and answers]]></category>
		<category><![CDATA[ultratech cement interview questions and answers]]></category>
		<category><![CDATA[United Phosphorus Ltd (UPL) interview questions and answers]]></category>
		<category><![CDATA[united spirits interview questions and answers]]></category>
		<category><![CDATA[vedanta ltd interview questions and answers]]></category>
		<category><![CDATA[zomato interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2115</guid>

					<description><![CDATA[Answer : C. Little]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">Select the correct alternative that is similar in meaning to the word in italics.<br />
Surprisingly, Alaska received <b><i>scanty</i></b> rainfall this year ?</p>
<div class="row">
<div class="col-sm-6">
<p>A. Rare</p>
</div>
<div class="col-sm-6">
<p>B. Heavy</p>
</div>
<div class="col-sm-6">
<p>C. Little</p>
</div>
<div class="col-sm-6">
<p>D. Scattered</p>
</div>
</div>
</div>
</div>
<h3 id="answer-c-little"><b>Answer : </b>C. Little</h3>
<div class="subheading">
<h2 id="explanation">Explanation</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li><b>Rare :</b> (of an event, situation, or condition) not occurring very often.</li>
<li><b>Heavy : </b>Weight, Difficult to lift or move.</li>
<li><b>Little :</b> Small in size, Amount, or Degree (often used to convey an appealing diminutiveness or express an affectionate or condescending attitude)</li>
<li><b>Scattered :</b> Throw in various random directions.</li>
<li><b>Scanty :</b>Tiny, Small, Paltry, Negligible, Insufficient, Inadequate, Deficient</li>
</ul>
</div>
</div>
<p>Synonym of Scanty is Little.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/synonyms/surprisingly-alaska-received-scanty-rainfall-this-year/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>A man rows a boat at a speed of 15 mph in still water. Find the speed of the river if it takes her 4 hours 30 minutes to row a boat to a place 30 miles away and return</title>
		<link>https://www.wikitechy.com/interview-questions/boats-and-streams/a-man-rows-a-boat-at-a-speed-of-15-mph-in-still-water-find-the-speed-of-the-river-if-it-takes-her-4-hours-30-minutes-to-row-a-boat-to-a-place-30-miles-away-and-return/</link>
					<comments>https://www.wikitechy.com/interview-questions/boats-and-streams/a-man-rows-a-boat-at-a-speed-of-15-mph-in-still-water-find-the-speed-of-the-river-if-it-takes-her-4-hours-30-minutes-to-row-a-boat-to-a-place-30-miles-away-and-return/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Wed, 18 Aug 2021 02:46:12 +0000</pubDate>
				<category><![CDATA[Boats and Streams]]></category>
		<category><![CDATA[adani enterpris interview questions and answers]]></category>
		<category><![CDATA[adani green energy ltd interview questions and answers]]></category>
		<category><![CDATA[adani ports ltd interview questions and answers]]></category>
		<category><![CDATA[adani total gas ltd interview questions and answers]]></category>
		<category><![CDATA[adani transmission ltd interview questions and answers]]></category>
		<category><![CDATA[ambuja cements interview questions and answers]]></category>
		<category><![CDATA[AMCAT Question Papers with Answers]]></category>
		<category><![CDATA[apollo hospital interview questions and answers]]></category>
		<category><![CDATA[aurobindo pharm interview questions and answers]]></category>
		<category><![CDATA[avenue supermarts ltd interview questions and answers]]></category>
		<category><![CDATA[average speed in boat and stream]]></category>
		<category><![CDATA[axis bank interview questions and answers]]></category>
		<category><![CDATA[bajaj auto interview questions and answers]]></category>
		<category><![CDATA[bajaj finance interview questions and answers]]></category>
		<category><![CDATA[bajaj finserv ltd interview questions and answers]]></category>
		<category><![CDATA[balkrishna industries interview questions and answers]]></category>
		<category><![CDATA[bandhan bank interview questions and answers]]></category>
		<category><![CDATA[berger paints interview questions and answers]]></category>
		<category><![CDATA[Bharat Petroleum Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[biocon interview questions and answers]]></category>
		<category><![CDATA[boat upstream downstream math problem]]></category>
		<category><![CDATA[boats and stream]]></category>
		<category><![CDATA[boats and streams]]></category>
		<category><![CDATA[boats and streams bankers adda]]></category>
		<category><![CDATA[boats and streams cat questions]]></category>
		<category><![CDATA[boats and streams concept]]></category>
		<category><![CDATA[boats and streams for bank exams]]></category>
		<category><![CDATA[boats and streams formulas]]></category>
		<category><![CDATA[boats and streams proble]]></category>
		<category><![CDATA[boats and streams problems]]></category>
		<category><![CDATA[boats and streams problems with solutions]]></category>
		<category><![CDATA[boats and streams quiz]]></category>
		<category><![CDATA[boats and streams shortcuts]]></category>
		<category><![CDATA[boats and streams tips and tricks]]></category>
		<category><![CDATA[boats and streams tricks]]></category>
		<category><![CDATA[britannia industries ltd interview questions and answers]]></category>
		<category><![CDATA[cadila health interview questions and answers]]></category>
		<category><![CDATA[coal india Ltd interview questions and answers]]></category>
		<category><![CDATA[colgate interview questions and answers]]></category>
		<category><![CDATA[dabur india ltd interview questions and answers]]></category>
		<category><![CDATA[divis labs interview questions and answers]]></category>
		<category><![CDATA[dlf interview questions and answers]]></category>
		<category><![CDATA[Dr. Reddys Labs interview questions and answers]]></category>
		<category><![CDATA[eicher motors ltd interview questions and answers]]></category>
		<category><![CDATA[gail (India) Ltd interview questions and answers]]></category>
		<category><![CDATA[gland pharma ltd interview questions and answers]]></category>
		<category><![CDATA[godrej consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[godrej properties interview questions and answers]]></category>
		<category><![CDATA[grasim Industries ltd interview questions and answers]]></category>
		<category><![CDATA[gujarat gas ltd interview questions and answers]]></category>
		<category><![CDATA[havells india ltd interview questions and answers]]></category>
		<category><![CDATA[hdfc life insurance company ltd interview questions and answers]]></category>
		<category><![CDATA[hero motocorp interview questions and answers]]></category>
		<category><![CDATA[hindalco industries ltd interview questions and answers]]></category>
		<category><![CDATA[Hindustan Unilever Ltd interview questions and answers]]></category>
		<category><![CDATA[hindustan zinc ltd interview questions and answers]]></category>
		<category><![CDATA[ICICI Lombard interview questions and answers]]></category>
		<category><![CDATA[icici prudential Life Insurance interview questions and answers]]></category>
		<category><![CDATA[Indian Oil Corporation Ltd interview questions and answers]]></category>
		<category><![CDATA[indus towers ltd interview questions and answers]]></category>
		<category><![CDATA[indusind bank interview questions and answers]]></category>
		<category><![CDATA[interglobe aviation interview questions and answers]]></category>
		<category><![CDATA[jsw steel interview questions and answers]]></category>
		<category><![CDATA[jubilant foodworks ltd interview questions and answers]]></category>
		<category><![CDATA[kotak mahindra bank interview questions and answers]]></category>
		<category><![CDATA[L&T Infotech interview questions and answers]]></category>
		<category><![CDATA[larsen & toubro Ltd interview questions and answers]]></category>
		<category><![CDATA[Lupin interview questions and answers]]></category>
		<category><![CDATA[m&m interview questions and answers]]></category>
		<category><![CDATA[marico interview questions and answers]]></category>
		<category><![CDATA[maruti suzuki interview questions and answers]]></category>
		<category><![CDATA[motherson sumi systems interview questions and answers]]></category>
		<category><![CDATA[msaverage speed of boat formula]]></category>
		<category><![CDATA[muthoot finance hdfc amc interview questions and answers]]></category>
		<category><![CDATA[Nestle interview questions and answers]]></category>
		<category><![CDATA[nmdc ltd interview questions and answers]]></category>
		<category><![CDATA[ntpc ltd interview questions and answers]]></category>
		<category><![CDATA[Oil and Natural Gas Corporation (ONGC) interview questions and answers]]></category>
		<category><![CDATA[pi industries ltd interview questions and answers]]></category>
		<category><![CDATA[pidilite industries interview questions and answers]]></category>
		<category><![CDATA[power grid corporation of India interview questions and answers]]></category>
		<category><![CDATA[ril partly paid interview questions and answers]]></category>
		<category><![CDATA[sbi card interview questions and answers]]></category>
		<category><![CDATA[sbi life insura interview questions and answers]]></category>
		<category><![CDATA[shree cements ltd interview questions and answers]]></category>
		<category><![CDATA[siemens interview questions and answers]]></category>
		<category><![CDATA[speed of boat in still water formula]]></category>
		<category><![CDATA[speed of current formula]]></category>
		<category><![CDATA[srf limited interview questions and answers]]></category>
		<category><![CDATA[state bank of India (SBI) interview questions and answers]]></category>
		<category><![CDATA[Steel Authority of India Ltd (SAIL) interview questions and answers]]></category>
		<category><![CDATA[sun pharma interview questions and answers]]></category>
		<category><![CDATA[tata consumer products ltd interview questions and answers]]></category>
		<category><![CDATA[tata motors interview questions and answers]]></category>
		<category><![CDATA[tata steel interview questions and answers]]></category>
		<category><![CDATA[titan company interview questions and answers]]></category>
		<category><![CDATA[torrent pharma interview questions and answers]]></category>
		<category><![CDATA[ultratech cement interview questions and answers]]></category>
		<category><![CDATA[United Phosphorus Ltd (UPL) interview questions and answers]]></category>
		<category><![CDATA[united spirits interview questions and answers]]></category>
		<category><![CDATA[vedanta ltd interview questions and answers]]></category>
		<category><![CDATA[zomato interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=2079</guid>

					<description><![CDATA[Answer : A. 5 mph]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<p class="color-pink">A man rows a boat at a speed of 15 mph in still water. Find the speed of the river if it takes her 4 hours 30 minutes to row a boat to a place 30 miles away and return.</p>
<div class="row">
<div class="col-sm-6">
<p>A. 5 mph</p>
</div>
<div class="col-sm-6">
<p>B. 10 mph</p>
</div>
<div class="col-sm-6">
<p>C. 12 mph</p>
</div>
<div class="col-sm-6">
<p>D. 20 mph</p>
</div>
</div>
</div>
</div>
<h3 id="answer-a-5-mph"><b>Answer : </b>A. 5 mph</h3>
<div class="subheading">
<h2 id="explanation">Explanation:</h2>
</div>
<div class="Content">
<div class="hddn">
<p>Let us assume that the speed of the river = x mph<br />
Speed of boat on outward journey = (15 – x) mph (Assuming the outward journey is upwards)<br />
Speed on boat on return journey = (15 + x) mph (Assuming the return journey is downwards)<br />
Time = Distance/Speed<br />
4 hours 30 minutes = 4.5 hours<br />
Total time taken = 30 / (15 – x) + 30 / (15 + x) = 4.5<br />
30(15 + x) + 30(15 – x) / (15 – x) (15 + x) = 4.5<br />
450 + 30x + 450 – 30x = 4.5 (225 – x<sup>2</sup>)<br />
900 = 4.5 (225 – x<sup>2</sup>)<br />
200 = 225 – x<sup>2</sup><br />
x<sup>2</sup> = 25<br />
x = 5<br />
The speed of river is 5mph.</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/boats-and-streams/a-man-rows-a-boat-at-a-speed-of-15-mph-in-still-water-find-the-speed-of-the-river-if-it-takes-her-4-hours-30-minutes-to-row-a-boat-to-a-place-30-miles-away-and-return/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
