<?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>TechnoHolics &#187; Academics</title>
	<atom:link href="http://www.prashanthpai.com/blog/category/academics/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.prashanthpai.com/blog</link>
	<description>PP writes</description>
	<lastBuildDate>Sat, 19 Nov 2011 15:30:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Check if a given number is power of 2</title>
		<link>http://www.prashanthpai.com/blog/check-if-a-given-number-is-power-of-2/</link>
		<comments>http://www.prashanthpai.com/blog/check-if-a-given-number-is-power-of-2/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 17:35:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Academics]]></category>
		<category><![CDATA[Check if a given number is power of 2]]></category>
		<category><![CDATA[N is power of 2]]></category>
		<category><![CDATA[power of 2]]></category>
		<category><![CDATA[powers of 2]]></category>

		<guid isPermaLink="false">http://www.prashanthpai.com/blog/?p=1326</guid>
		<description><![CDATA[Given a number N, we will have to check if N is a power of 2. Powers of 2 include 1,2,4,8,16,32&#8230; and so on. Following are FIVE different approaches to solve the problem. I. This is the shortest method. We perform bitwise AND operation on the given number N and N-1. If the result is [...]]]></description>
			<content:encoded><![CDATA[<p>Given a number N, we will have to check if N is a power of 2. Powers of 2 include 1,2,4,8,16,32&#8230; and so on. Following are <strong>FIVE</strong> different approaches to solve the problem.</p>
<p><strong>I.</strong> This is the shortest method. We perform bitwise AND operation on the given number N and N-1. If the result is 0, then N is a power of 2. If the result is non-zero, it&#8217;s not a power of two.<br />
<img src="http://www.prashanthpai.com/blog/wp-content/uploads/2011/03/bitwise_and.png" alt="Bitwise AND Operator" title="bitwise_and" width="465" height="204" class="alignnone size-full wp-image-1327" /></p>
<blockquote><p><code><br />
int power_of_two(int n)<br />
{<br />
    return !(n&#038;(n-1));<br />
}<br />
</code></p></blockquote>
<p><strong>II.</strong> This method uses the basic definition of a logarithmic function. For N to be a power of 2,(log N to the base 2) must be a whole number and not a fraction.</p>
<blockquote><p><code><br />
int power_of_two(int n)<br />
{<br />
	float x;<br />
	x=log(n)/log(2);<br />
	if(x-(int)x==0.0) return 1;<br />
	else return 0;<br />
}<br />
</code></p></blockquote>
<p><strong>III.</strong> This method makes use of the fact that any number that is a power of 2, has exactly ONE 1s in its binary representation. Hence the above code just counts the no. of ones in the binary representation of the given number.</p>
<blockquote><p><code><br />
int power_of_two(int n)<br />
{<br />
	int count=0,rem;<br />
	while(n>0)<br />
	{<br />
		rem=n%2;<br />
		if(rem==1||n==1) count++;<br />
		if(count>=2) break;<br />
		n=n/2;<br />
	}<br />
	if(count==1) return 1;<br />
	else return 0;<br />
}<br />
</code></p></blockquote>
<p><strong>IV. </strong>This is a brute-force method which generates powers of two and checks if it is equal to the given number N.</p>
<blockquote><p><code><br />
int power_of_two(int n)<br />
{<br />
	int count=0,temp;<br />
	do<br />
	{<br />
		temp=(int)pow(2,count);<br />
		if(temp==n) return 1;<br />
		count++;<br />
	}while( temp < n );<br />
	return 0;<br />
}<br />
</code></p></blockquote>
<p><strong>V. </strong>This is a recursive implementation. When a number N which is a power of two is divided by 2, the quotient obtained will also be a power of two.</p>
<blockquote><p><code><br />
int power_of_two(int n)<br />
{<br />
	if(n==1) return 1;<br />
	if(n%2!=0) return 0;<br />
	if(!(power_of_two(n/2))) return 0;<br />
}<br />
</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.prashanthpai.com/blog/check-if-a-given-number-is-power-of-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run MASM 8086 Assembler in Ubuntu or Windows 7(x64) using DOSBox</title>
		<link>http://www.prashanthpai.com/blog/run-masm-8086-assembler-in-ubuntu-or-windows-7x64-using-dosbox/</link>
		<comments>http://www.prashanthpai.com/blog/run-masm-8086-assembler-in-ubuntu-or-windows-7x64-using-dosbox/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 21:00:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Academics]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[MASM DOSBox]]></category>
		<category><![CDATA[MASM Ubuntu]]></category>
		<category><![CDATA[MASM Windows 7 64 bit]]></category>
		<category><![CDATA[Turbo C DOSBox]]></category>
		<category><![CDATA[Turbo C Windows 7 64 bit]]></category>
		<category><![CDATA[Windows 7 64 bit MASM]]></category>

		<guid isPermaLink="false">http://www.prashanthpai.com/blog/?p=1323</guid>
		<description><![CDATA[Here&#8217;s how to run 16 bit DOS executables like the MASM assembler or Turbo C compiler in Ubuntu (GNU/Linux) or in 64 bit editions of Windows 7 using DOSBox, a DOS environment emulator. DOSBox is available for Linux as well as Windows. DOSBox installation For Ubuntu users (using repository) Open the terminal and type in [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how to run 16 bit DOS executables like the MASM assembler or Turbo C compiler in Ubuntu (GNU/Linux) or in 64 bit editions of Windows 7 using <a href="http://en.wikipedia.org/wiki/DOSBox">DOSBox</a>, a DOS environment emulator. DOSBox is available for Linux as well as Windows.</p>
<p><strong><u>DOSBox installation</u></strong></p>
<p><strong>For Ubuntu users (using repository)</strong><br />
Open the terminal and type in the following commands to download and install DOSbox in Ubuntu<br />
<code><em>sudo apt-get update<br />
sudo apt-get install dosbox</em></code><br />
You will find it installed under Applications_Menu->Games->DOSBox Emulator</p>
<p><strong>For other GNU/Linux users</strong><br />
Download DOSbox from <a href="http://www.prashanthpai.com/pesse/mp_lab/dosbox-0.74.tar.gz">here</a>.<br />
Open terminal and cd to the directory containing the downloaded tar.gz file. Type in the following commands to build and install :<br />
<code><em>tar -xzvf dosbox-0.74.tar.gz<br />
cd dosbox-0.74<br />
./configure<br />
make</em></code><br />
Check the <em>src</em> subdir for the binary.</p>
<p><strong>For Windows users</strong><br />
Download DOSbox from <a href="http://www.prashanthpai.com/pesse/mp_lab/DOSBox0.74-win32-installer.exe">here</a>.<br />
Run the downloaded .exe file and install it like any other software.</p>
<p>Now that you&#8217;ve installed DOSBox, you&#8217;ll be able to run any 16bit or 32bit DOS executable inside it.</p>
<p>Download the 8086 MASM Assembler from <a href="http://www.prashanthpai.com/pesse/mp_lab/8086_Assembler.zip">here</a>. The zip file contains the following files :<code><em><br />
masm.exe, tasm.exe, link.exe, bin2hex.exe, exe2bin.exe, td.exe, edit.com and debug.exe</em></code></p>
<p>Windows users extract the .zip file into <em>C:\</em> so that the path <em>C:\8086</em> contains all the above mentioned files. GNU/Linux users can extract it and place it in say <em>/home/prashanth/8086</em></p>
<p>Launch DOSBox and type the following commands :<br />
<strong>For Linux users : </strong><br />
<code><em>mount c /home/prashanth/8086<br />
c:</em></code><br />
<strong>For Windows : </strong><br />
<code><em>mount c c:\8086<br />
c:</em></code></p>
<div id="attachment_1324" class="wp-caption alignleft" style="width: 678px"><img src="http://www.prashanthpai.com/blog/wp-content/uploads/2011/03/dosbox_ubuntu.png" alt="DOSBox in Ubuntu" title="dosbox_ubuntu" width="668" height="454" class="size-full wp-image-1324" /><p class="wp-caption-text">DOSBox running in Ubuntu</p></div>
<p>Now the contents of the folder <em>/home/prashanth/8086</em> or <em>c:\8086</em> is mounted as <em>c:</em> drive inside the DOS emulator. You can assemble programs inside DOSBox as you do in your Microprocessor Lab under Windows XP; i.e your usual sequence of commands -<br />
<code><em>edit file.asm<br />
masm file.asm<br />
link file<br />
debug file.exe</em></code></p>
<p>When you are done, type <em>exit</em> to quit DOSBox.</p>
<p><strong>P.S :</strong> For GNU/Linux users, there&#8217;s an alternative assembler known as the NASM. <a href="http://www.nasm.us/">NASM</a> is considered to be one of the most popular assemblers for GNU/Linux.</p>
<p><strong><u>Downloads :</u></strong><br />
<strong>DOSBox for Linux :</strong> <a href="http://www.prashanthpai.com/pesse/mp_lab/dosbox-0.74.tar.gz">dosbox-0.74.tar.gz</a><br />
<strong>DOSBox for Windows :</strong> <a href="http://www.prashanthpai.com/pesse/mp_lab/DOSBox0.74-win32-installer.exe">DOSBox0.74-win32-installer.exe</a><br />
<strong>8086 Assembler :</strong> <a href="http://www.prashanthpai.com/pesse/mp_lab/8086_Assembler.zip">8086_Assembler.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.prashanthpai.com/blog/run-masm-8086-assembler-in-ubuntu-or-windows-7x64-using-dosbox/feed/</wfw:commentRss>
		<slash:comments>41</slash:comments>
		</item>
		<item>
		<title>CET : How to choose the right Engineering College for your rank ?</title>
		<link>http://www.prashanthpai.com/blog/cet-how-to-choose-the-right-engineering-college-for-your-rank/</link>
		<comments>http://www.prashanthpai.com/blog/cet-how-to-choose-the-right-engineering-college-for-your-rank/#comments</comments>
		<pubDate>Sun, 23 May 2010 05:24:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Academics]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[CET 2010]]></category>
		<category><![CDATA[CET Counselling]]></category>
		<category><![CDATA[CET Cut O]]></category>
		<category><![CDATA[CET Enineering College]]></category>
		<category><![CDATA[CET Karnataka]]></category>
		<category><![CDATA[Karnataka CET]]></category>

		<guid isPermaLink="false">http://www.prashanthpai.com/blog/?p=1189</guid>
		<description><![CDATA[As soon as you get your CET rank, most of the you are in total dilemma and confusion over which college and branch to choose for your rank. If you are one of them, this post is just for YOU. The question arises &#8211; how to decide to choose a college when there are hundreds [...]]]></description>
			<content:encoded><![CDATA[<p>As soon as you get your CET rank, most of the you are in total dilemma and confusion over which college and branch to choose for your rank. If you are one of them, this post is just for YOU. The question arises &#8211; how to decide to choose a college when there are hundreds of engineering colleges in Karnataka.</p>
<p>• Will you get admission in good college or not?<br />
• What will be the Cut off percentage of different colleges ?<br />
• What are the different courses available in different colleges ?<br />
• Which branch should I take ?<br />
• Which college I will get for my rank ?</p>
<p>First things first, <strong>shortlist the colleges</strong> and the places that you<em> like</em> (keeping your rank in mind : having rank over 10k and expecting to get E&#038;C in RVCE, that&#8217;s height of craziness). This is where<span id="more-1189"></span> the <a href="http://www.prashanthpai.com/blog/engineering-cutoff-ranks-of-colleges-in-karnataka/">previous year cutoff ranks</a> and <a href="http://www.prashanthpai.com/blog/ranking-of-engineering-colleges-in-karnataka/">college ranking list</a> come in handy. You&#8217;ll get a very rough picture about which college and branch you can expect. You can talk to your elder brother,sister,cousin,relative or anybody who is doing engineering. That&#8217;s the best reliable source that you count upon.</p>
<p><strong>Location : </strong>I had an obsession after my CET; I wanted a college either in Bangalore or Mysore and nowhere else. Ask yourself, do you mind moving to far places to do engineering. Those of you have stayed in hostel or as paying guest before, this shouldn&#8217;t be a problem at all. It&#8217;s a good thing opting for a college located in Bangalore (or even Mysore) because you&#8217;ll have good exposure there and bright career opportunities even if you by chance end up in a college that is not quite good. Besides, the weather is also good in B&#8217;lore and Mysore <img src='http://www.prashanthpai.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Infrastructure and facilities : </strong> Infrastructure does NOT mean attractive buildings and gardens. Check whether the college has sufficient amount of infrastructure according to it&#8217;s intake capacity. It includes classrooms, administrative building, workshop, computer labs, various laboratories etc. You can include playgrounds too. A friend of mine(Federer fan) had got Mech @ PESIT and he was complaining that there was no lawn tennis court there. lol <img src='http://www.prashanthpai.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Visit the college campus and take a look around yourself. Check if it has good Library, Internet access, hostels, seminar halls, dispensary, student clubs, gym etc.</p>
<p><strong>Faculty : </strong> Okay, here&#8217;s the truth. There&#8217;s no way to know  how the teaching there will be unless you are in touch with a student who studies there. I believe engineering is all about self study. So don&#8217;t give a damn about how the faculty is. But, do look for colleges that have good teacher to student ratio and experienced teachers. How to identify experienced teachers ? Look at their hair ? Are they bald yet ? I was just kidding <img src='http://www.prashanthpai.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><strong>Placements :</strong> I believe this is the <strong>most important factor</strong> of all. Consider you&#8217;ve completed 4 years of engineering. Now what ? How can you manage to get a job ? Check the placement record of the college in previous years branch wise as well as company wise. Suppose you join a college which has a very good placement record , it does not mean you get placed easily. It depends on your talent, personality and how your interview goes. I joined <a href="http://www.pesse.in/">PESSE</a>, a sister concern of <a href="http://www.pes.edu/">PES</a> because it had same management as that of PESIT and we get to write placements along with them <img src='http://www.prashanthpai.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://pesse.in/index.php?option=com_content&#038;view=article&#038;id=517:placement-details-2010-batch&#038;catid=21">Here</a> is the placement record of my college for this year.</p>
<p><strong>Extra curricular activities</strong>: &#8220;All work and no play make Jack a dull boy&#8221;. To survive in competitive environment and to have a good personality, extra curricular activities play a very important role. So have a look about extra activities provided by college like, annual fest, technical fest, sports function, students club, seminars and workshops, industrial training, social activities etc.</p>
<p><strong>Parent&#8217;s Choice :</strong> I don&#8217;t want to give any comment here. Parents can guide you by their experience. But some times,students know more than their parents about the education field. It&#8217;s you who makes the final call and choose the college. </p>
<p><strong>Autonomous or VTU ?</strong> Those of you who don&#8217;t know what an autonomous engineering college is, <a href="http://www.prashanthpai.com/blog/autonomous-engineering-colleges-in-karnataka/">start here</a>. In most of the autonomous colleges : they have their own updated and optimized syllabus(with no nonsense and irrelevant topics like VTU syllabus). They have their own grading system (sometimes it&#8217;s an advantage as well as disadvantage) and you get around 3 months holiday between even semesters !!! On the other hand, in VTU colleges, the syllabus and grading system is same throughout Karnataka and hence there&#8217;s a common exam for all colleges at the end of each semester. VTU question papers have choice : answer any five out of eight questions with each question coming from each individual units. So you can study 5 units throughly and become topper (highly not recommended idea). Besides, in VTU colleges, you get around one month holiday between even semesters <img src='http://www.prashanthpai.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Above all, VTU really sucks, students often curse VTU.</p>
<p>Do you really want to know how a college is ? Then ask someone who is in that college. They&#8217;ll be knowing the college better than any outsider. And some of you may be wondering by now, how I know all these stuff ? I&#8217;ve been through the dilemma just one year ago.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.prashanthpai.com/blog/cet-how-to-choose-the-right-engineering-college-for-your-rank/feed/</wfw:commentRss>
		<slash:comments>151</slash:comments>
		</item>
		<item>
		<title>Autonomous Engineering Colleges In Karnataka</title>
		<link>http://www.prashanthpai.com/blog/autonomous-engineering-colleges-in-karnataka/</link>
		<comments>http://www.prashanthpai.com/blog/autonomous-engineering-colleges-in-karnataka/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 02:44:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Academics]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Autonomous Engineering Colleges]]></category>
		<category><![CDATA[Autonomous Engineering Colleges In Karnataka]]></category>
		<category><![CDATA[CET Counselling]]></category>
		<category><![CDATA[CET Karnataka]]></category>
		<category><![CDATA[Engineering College Ranking Karnataka]]></category>
		<category><![CDATA[Engineering Colleges Karnataka]]></category>
		<category><![CDATA[Karnataka CET]]></category>

		<guid isPermaLink="false">http://www.prashanthpai.com/blog/?p=1015</guid>
		<description><![CDATA[Here is a list of autonomous engineering colleges in Karnataka that have intake under CET. First things first, what&#8217;s an autonomous college or what is autonomy ? Need for Autonomy : The affiliating system of colleges was originally designed when their number in a university was small. The university could then effectively oversee the working [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a list of autonomous engineering colleges in Karnataka that have intake under CET. First things first, what&#8217;s an autonomous college or what is autonomy ?</p>
<p><strong>Need for Autonomy :</strong><br />
The affiliating system of colleges was originally designed when their number in a university was small. The university could then effectively oversee the working of the colleges, act as an examining body and award degrees on their behalf. The system has now become unwieldy and it is becoming increasingly difficult for a university to attend to the varied needs of individual colleges. The colleges do not have the freedom to modernise their curricula or make them locally relevant. The regulations of the university and its common system, governing all colleges alike, irrespective of their characteristic strengths, weaknesses and locations, have affected the academic development of individual colleges. Colleges that have the potential for offering programmes of a higher standard do not have the freedom to offer them. <span id="more-1015"></span>The 1964-66 Education Commission pointed out that the exercise of academic freedom by teachers is a crucial requirement for development of the intellectual climate of our country. Unless such a clim ate prevails, it is difficult to achieve excellence in our higher education system. With students, teachers and management being co-partners in raising the quality of higher education, it is imperative that they share a major responsibility. Hence, the Education Commission (1964-66) recommended college autonomy, which, in essence, is the instrument for promoting academic excellence.</p>
<p><strong>Does autonomy mean absolute freedom ?</strong><br />
<strong><a href="http://www.education.nic.in/NatPol.asp">The National Policy on Education (1986-92)</a></strong> formulated the following objectives for autonomous colleges. An autonomous college will have the freedom to: </p>
<ul>
<li>determine and prescribe its own courses of study and syllabi, and restructure and redesign the courses to suit local needs; and</li>
<li>prescribe rules for admission in consonance with the reservation policy of the state government;</li>
<li>evolve methods of assessment of students&#8217; performance, the conduct of examinations and notification of results;</li>
<li>use modern tools of educational technology to achieve higher standards and greater creativity; and</li>
<li>promote healthy practices such as community service, extension activities, projects for the benefit of the society at large, neighbourhood programmes, etc.</li>
</ul>
<p><strong>Relationship with the parent university, the state government and other educational institutions:</strong><br />
Autonomous colleges are free to make use of the expertise of university departments and other institutions to frame their curricula, devise methods of teaching, examination and evaluation. They can recruit their teachers according to the existing procedures (for private and government colleges).</p>
<p>The parent university will accept the methodologies of teaching, examination, evaluation and the course curriculum of its autonomous colleges. It will also help the colleges to develop their academic programmes, improve the faculty and to provide necessary guidance by participating in the deliberations of the different bodies of the colleges.</p>
<p><strong><em>The role of the parent university will be: </em></strong></p>
<ul>
<li>to bring more autonomous colleges under its fold;</li>
<li>to promote academic freedom in autonomous colleges by encouraging introduction of innovative academic programmes;</li>
<li>to facilitate new courses of study, subject to the required minimum number of hours of instruction, content and standards;</li>
<li>to permit them to issue their own provisional, migration and other certificates;</li>
<li>to do everything possible to foster the spirit of autonomy;</li>
<li>to ensure that degrees/diplomas/certificates issued indicate the name of the college;</li>
<li>to depute various nominees of the university to serve in various committees of the autonomous colleges and get the feedback on their functioning; and</li>
<li>to create separate wings wherever necessary to facilitate the smooth working of the autonomous colleges. </li>
</ul>
<p><strong><em>The state government will assist the autonomous colleges by:</em> </strong></p>
<ul>
<li>avoiding, as far as possible, transfer of teachers, especially in colleges where academic innovation and reforms are in progress, except for need-based transfers;</li>
<li>conveying its concurrence for the extension of autonomy of any college to the Commission within the stipulated time of 90 days after receipt of the review committee report, failing which it will be construed that the state government has no objection to the college continuing to be autonomous; and</li>
<li>deputing nominees on time to the governing body of government colleges and other bodies wherever their nominees are to be included.</li>
</ul>
<p><strong>Conferring autonomous status</strong><br />
Autonomous status covers certificate, diploma, undergraduate, postgraduate and M.Phil. programmes offered in colleges that are autonomous and those seeking autonomous status. The parent university will confer the status of autonomy upon a college that is permanently affiliated, with the concurrence of the state government and the University Grants Commission. The Act and Statutes of the universities ought to be amended to provide for the grant of autonomy to affiliated colleges. Before granting autonomy, the university will ensure that the management structure of the applicant college is adequately participatory and provides ample opportunities for academicians to make a creative contribution. </p>
<p><strong>Source : </strong><a href="http://www.ugc.ac.in/financialsupport/autonomous_13.html" rel="nofollow">UGC : Schemes of Autonomous Colleges</a></p>
<p><div id="attachment_1017" class="wp-caption aligncenter" style="width: 541px"><img src="http://www.prashanthpai.com/blog/wp-content/uploads/2009/06/autonomous.png" alt="List of autonomous engineering colleges in Karnataka under CET" title="Autonomous Engineering Colleges" width="531" height="379" class="size-full wp-image-1017" /><p class="wp-caption-text">List of autonomous engineering colleges in Karnataka under CET</p></div><br />
PESCE Mandya is also autonomous college. Sorry, I missed it to mention in the above list.<br />
<strong>IMPORTANT</strong><br />
<a href="http://www.prashanthpai.com/blog/cet-how-to-choose-the-right-engineering-college-for-your-rank/">CET : How to choose the right Engineering College for your rank ?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.prashanthpai.com/blog/autonomous-engineering-colleges-in-karnataka/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>Engineering CutOff Ranks Of Colleges in Karnataka</title>
		<link>http://www.prashanthpai.com/blog/engineering-cutoff-ranks-of-colleges-in-karnataka/</link>
		<comments>http://www.prashanthpai.com/blog/engineering-cutoff-ranks-of-colleges-in-karnataka/#comments</comments>
		<pubDate>Wed, 27 May 2009 01:30:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Academics]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[CET 2009]]></category>
		<category><![CDATA[CET Counseling 2009]]></category>
		<category><![CDATA[CET Karnataka]]></category>
		<category><![CDATA[CutOff]]></category>
		<category><![CDATA[Engineering CutOff Ranks]]></category>
		<category><![CDATA[Karnataka CET]]></category>
		<category><![CDATA[Medical CutOff Ranks]]></category>
		<category><![CDATA[Reservation]]></category>
		<category><![CDATA[RVCE]]></category>

		<guid isPermaLink="false">http://www.prashanthpai.com/blog/?p=720</guid>
		<description><![CDATA[Students after getting CET results are not sure that in which college they may get a seat and in which branch. So I have put up the cutoff ranks of various top engineering colleges in Karnataka. The data is taken from 2007 CET counseling and there might be very slight difference in cutoff this year. [...]]]></description>
			<content:encoded><![CDATA[<p>Students after getting CET results are not sure that in which college they may get a seat and in which branch. So I have put up the cutoff ranks of various top engineering colleges in Karnataka. The data is taken from 2007 CET counseling and there might be very slight difference in cutoff this year. However, the trend will remain the same.</p>
<p>I don&#8217;t have reservation under any category and hence cannot get Computer Science branch in any top engineering college. May be I should take Mechanics. Or if luck is on my side, nobody should take Computer as the IT industry has collapsed and there are thousands of job cuts. Hope it works that way <img src='http://www.prashanthpai.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
<strong>The following cutoff ranks are with respect to General Merit (GM) seats only.</strong> <span id="more-720"></span></p>
<div id="attachment_733" class="wp-caption aligncenter" style="width: 546px"><img src="http://www.prashanthpai.com/blog/wp-content/uploads/2009/05/cutoff.png" alt="Engineering CutOff Ranks Of Various Colleges in Karnataka" title="cutoff" width="536" height="300" class="size-full wp-image-733" /><p class="wp-caption-text">Engineering CutOff Ranks Of Various Colleges in Karnataka</p></div>
<p>If you are eligible for any reservation like rural quota, minority quota, SC/ST, OBC etc, you may get good colleges even if you do not have good ranks. Reservation has ruined our country <img src='http://www.prashanthpai.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Here&#8217;s an example. <strong>Click on the following image to see an enlarged one.</strong></p>
<div id="attachment_738" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.prashanthpai.com/blog/wp-content/uploads/2009/05/rvce.png"><img src="http://www.prashanthpai.com/blog/wp-content/uploads/2009/05/rvce-300x19.png" alt="CutOff ranks of RVCE across various reservation categories." title="rvce" width="300" height="19" class="size-medium wp-image-738" /></a><p class="wp-caption-text">CutOff ranks of RVCE across various reservation categories.</p></div>
<p>If you want to know detailed cutoff ranks of other colleges, you can download the 2007 Engineering Cut-Off Ranks Full Document. <strong>It contains cut off ranks of all colleges under all reservation categories.</strong><br />
<a href="http://cetinformation.com/images/2007EnggCutOff1.pdf" rel="nofollow">CET 2007 Engineering Cut Off Part-1</a> (1.45 MB)<br />
<a href="http://cetinformation.com/images/2007EnggCutOff2.pdf" rel="nofollow">CET 2007 Engineering Cut Off Part-2</a> (160 KB)</p>
<p><strong>More&#8230;<br />
<a href="http://www.educationbangalore.com/cet/2007medical_cutoff.pdf" rel="nofollow">CET 2007 Medical Cut Off Rankings</a><br />
<a href="http://www.entrancecorner.com/COMEDK%202009/comedk_cutoff.asp" rel="nofollow">Expected Cut Off Rankings of COMEDK 2009</a><br />
<a href="http://aieee.nic.in/ccb2009/ORCR09/Engineering/Eng/NSLOrCr.htm" rel="nofollow">Opening Closing Rank AIEEE 2008 &#8211; NITK, Suratkal</a><br />
<a href="http://www.prashanthpai.com/blog/wp-content/uploads/2009/06/NITK.png">Availability of seats at NITK, Suratkal for AIEEE 2009 State Ranking </a></strong></p>
<p><strong>IMPORTANT</strong><br />
<a href="http://www.prashanthpai.com/blog/cet-how-to-choose-the-right-engineering-college-for-your-rank/">CET : How to choose the right Engineering College for your rank ?</a></p>
<p>All The Best <img src='http://www.prashanthpai.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.prashanthpai.com/blog/engineering-cutoff-ranks-of-colleges-in-karnataka/feed/</wfw:commentRss>
		<slash:comments>376</slash:comments>
		</item>
	</channel>
</rss>

