<?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>Interview Mantra - India</title>
	<atom:link href="http://india.interviewmantra.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://india.interviewmantra.net</link>
	<description>Your mantra to education</description>
	<lastBuildDate>Thu, 05 Apr 2012 17:30:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Basic concepts of Micro controller programming</title>
		<link>http://india.interviewmantra.net/2010/basic-concepts-of-micro-controller-programming/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=basic-concepts-of-micro-controller-programming</link>
		<comments>http://india.interviewmantra.net/2010/basic-concepts-of-micro-controller-programming/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 18:09:51 +0000</pubDate>
		<dc:creator>Sridhar Jammalamadaka</dc:creator>
				<category><![CDATA[Engineering]]></category>
		<category><![CDATA[assembly]]></category>
		<category><![CDATA[cross compilation]]></category>
		<category><![CDATA[embedded c]]></category>
		<category><![CDATA[embedded systems]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[micro controller]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://india.interviewmantra.net/2010/basic-concepts-of-micro-controller-programming/</guid>
		<description><![CDATA[www.youtube.com/watch?v=dOm1bWEQHtU Before you watch this video, be sure to view the video#1 on Introduction to Embedded systems. I would like to share my experience with embedded systems. In 2005, I was a student of Electronics Engineering. Back then when I &#8230; <a href="http://india.interviewmantra.net/2010/basic-concepts-of-micro-controller-programming/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span class="youtube">
<iframe title="YouTube video player" class="youtube-player" type="text/html" width="425" height="344" src="http://www.youtube.com/embed/dOm1bWEQHtU?color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;modestbranding=1&amp;loop=&amp;showsearch=0&amp;rel=1" frameborder="0" allowfullscreen></iframe>
</span><p><a href="http://www.youtube.com/watch?v=dOm1bWEQHtU"><img src="http://img.youtube.com/vi/dOm1bWEQHtU/default.jpg" width="130" height="97" border=0></a></p><p><a href="http://www.youtube.com/watch?v=dOm1bWEQHtU">www.youtube.com/watch?v=dOm1bWEQHtU</a></p></p>
<p>Before you watch this video, be sure to <a href="http://www.youtube.com/watch?v=Uzm2uUuAYlE&amp;feature=channel">view the video#1 on Introduction to Embedded systems</a>.</p>
<p>I would like to share my experience with embedded systems. <span id="more-658"></span>In 2005, I was a student of Electronics Engineering. Back then when I had started to learn Micro controller programming on my own, I had faced a lot of issues, lot of hurdles and lot of questions. But I was madly interested to learn it, whatever it may take, how much ever work it needed, I wanted to program a micro controller and build a fancy application.</p>
<p>I had many unanswered questions in mind:</p>
<ul>
<li>What micro controller should I use? How should I use it?</li>
<li>How to program a micro controller? What is the process?</li>
<li>What does it take to make a micro controller get to work?</li>
<li>Is micro controller programming same as computer programming?</li>
</ul>
<p>Learning Embedded Systems is all about learning to program a micro controller chip. The process of creating an embedded systems applicaiton is as follows:</p>
<ol>
<li>Set out with requirements i.e., set of tasks your embedded system should be designed to perform.</li>
<li>Decide the hardware that is necessary for building your system. Assemble your hardware and keep it ready.</li>
<li>Write the logic or algorithm on a paper, convert it into code in computer.</li>
<li>Compile this code in a computer and obtain a byte code.</li>
<li>Burn this byte code into the micro controller.</li>
<li>Power on your embedded system and your program in the micro controller chip starts to work.</li>
</ol>
<p>Let&#8217;s discuss these steps with a practical example. Let us say that we wish to build a clock using a micro controller chip. Step#1 is to note down the set of features that we need this clock to possess. Say we need the ability to set the time (hours/minutes/seconds), set 12/24 clock, set/clear alarm etc,. The clock should refresh time every second and show the updated time. The clock circuit should be able to activate an alarm at the preset tme.</p>
<p>Step#2 is to decide the hardware features of this clock. Say we wish to use a 16 x 2 LCD display; first column for displaying the time (hr:min:ss) and second column for displaying the alarm time. We need a 4 button keypad to manipulate various settings in the clock. We want a battery back up system such that if the electric power fails, the battery takes over and keeps the clock ticking.</p>
<p>Step#3 is to write an alogrithm for the clock to display time, to be able to manipulate the time and alarm time using the keypad clicks, to be able to show updated time on the LCD. Code for embedded systems is usually written either in Assembly Language or Embedded C.</p>
<p>Step#4 is to compile this assembly/C code into a byte code. This process is similar to compilation of a computer program to an executable file. In the case of computers, the output file is .exe or .o file. In case of micro controller programs, the output of compilation is a hexa decimal byte code. This code is understood only by the micro controller for which the code has been written. Whereas the code written in C or Assembly language is human understandable.</p>
<p>Step#5 is to transfer this code into the micro controller. This process is a somewhat similar to transferring a picture or a song from a computer to a mobile phone using a data cable. This process of moving the compiled hex code from computer to a micro controller is called burning. Burning is done using a hardware, software and a cable connecting the computer with this hardware. This hardware is also called as Micro controller programmer.</p>
<p>Step#6 is to power your circuit and check the output. If you had written the program correctly and had assembled hardware correctly, your clock should have been working as expected by now.</p>
<p>So for programming a micro controller(burning code), you need Micro Controller Programmer Hardware &amp; Software and a data cable. You need a cross compiler that can compile the code written in computer into hex code that your chip can understand.</p>
<p>This process is called cross-compiling. Guess why?</p>
<p>Because the executable file that gets created by compiling a program that was written in a computer is not executed on the same computer. That is, the hex code is not run on your computer. But that hex code is run on another external micro controller chip. Whereas in the case of a traditional computer program, the executable is run on the computer where it was compiled. Hence micro controller compilers are called cross-compilers.</p>
<p>Feel free to shoot any questions related to these basics steps in micro controller programming. I will get back to you with answers as soon as possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://india.interviewmantra.net/2010/basic-concepts-of-micro-controller-programming/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Is IIT JEE worth the gamble?</title>
		<link>http://india.interviewmantra.net/2010/is-iit-jee-worth-gamble/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=is-iit-jee-worth-gamble</link>
		<comments>http://india.interviewmantra.net/2010/is-iit-jee-worth-gamble/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 14:30:35 +0000</pubDate>
		<dc:creator>Sridhar Jammalamadaka</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Engineering]]></category>
		<category><![CDATA[admissions]]></category>
		<category><![CDATA[iit]]></category>
		<category><![CDATA[jee]]></category>

		<guid isPermaLink="false">http://india.interviewmantra.net/?p=583</guid>
		<description><![CDATA[Every year lakhs of students apply for Indian Institute of Technology &#8211; Joining Entrance Exam. Few claim that it is the most competitive exam in the world. Here are few shocking statistics: In 2010, IIT received 4.5 lakhs of applications. &#8230; <a href="http://india.interviewmantra.net/2010/is-iit-jee-worth-gamble/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Every year lakhs of students apply for Indian Institute of Technology &#8211; Joining Entrance Exam. Few claim that it is the most competitive exam in the world.</p>
<p>Here are few shocking statistics:</p>
<ul>
<li>In 2010, IIT received 4.5 lakhs of applications.</li>
<li>There are just 7,417 seats spread across 15 IITs across India.</li>
<li>The ratio of selection to IITs is about 61:1<span id="more-583"></span></li>
<li>Whereas the odds of selection in top colleges in the world such as Harvard University and MIT is just 8:1</li>
<li>India has over 2,297 engineering colleges with annual intake of 8.19 lakh students.</li>
<li>India has over 1,500 management schools with annual intake of 1.5 lakh students.</li>
</ul>
<p>In India, where you study is more important than what you study. In that case the students who have failed IIT JEE are totally lost. Where can they fit into? Not that they can&#8217;t get into any engineering college, but they could have got into a better college had they concentrated on 12th exams and local Common Entrance Tests.</p>
<p>I call IIT JEE a gamble. Probably the odds of winning a casino game in Las Vegas is more than that of passing IIT JEE. Should your ward take this risk? Should he/she gamble her future?</p>
<p><em>Comment your opinions below.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://india.interviewmantra.net/2010/is-iit-jee-worth-gamble/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Education UK Exhibition February</title>
		<link>http://india.interviewmantra.net/2010/education-uk-exhibition-february/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=education-uk-exhibition-february</link>
		<comments>http://india.interviewmantra.net/2010/education-uk-exhibition-february/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 10:25:34 +0000</pubDate>
		<dc:creator>Sridhar Jammalamadaka</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[UK]]></category>
		<category><![CDATA[abroad education]]></category>
		<category><![CDATA[abroad studies]]></category>
		<category><![CDATA[uk education]]></category>
		<category><![CDATA[uk universities]]></category>

		<guid isPermaLink="false">http://india.interviewmantra.net/?p=607</guid>
		<description><![CDATA[Great news for UK education aspirants in India. British Council is back with UK Education Exhibition, an education fair where a lot of universities come to interact with students directly, they sometimes give away spot offers. This season of UK &#8230; <a href="http://india.interviewmantra.net/2010/education-uk-exhibition-february/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Great news for UK education aspirants in India. British Council is back with UK Education Exhibition, an education fair where a lot of universities come to interact with students directly, they sometimes give away spot offers.</p>
<p>This season of UK education exhibition, the cities covered are Chennai, Bangalore and Pune. I highly recommend this exhibition to all the students who wish to pursue abroad education in 2010 or 2011. I had already attended this program in November when British council conducted this exhibition in Mumbai. I loved it. I am going again this time in Chennai. Luckily I&#8217;m in chennai now.<span id="more-607"></span></p>
<p>Last time I had the opportunity to directly speak to an experienced professor from a coveted university. I had the chance to take first hand advice from him. Also got contacts of Abroad Education agencies. This led to contacting of those agencies for direct interviews with Coventry University, Kingston University and Robert Gordon University. This is great. Looking forward to talk to more professors this time. So go to such exhibitions as many number of times you can. You will learn more about the colleges and get other information which you can&#8217;t get by sitting at home. </p>
<table cellspacing="0" cellpadding="0" summary="Informatin about dates">
<caption>
<h2>Schedule</h2>
</caption>
<tbody>
<tr>
<th id="row_title1" scope="row"><strong>City</strong></th>
<td><strong>Date and Time</strong></td>
<td><strong>Venue</strong></td>
<td><strong>Participating Universities</strong></td>
</tr>
<tr>
<th id="row_title1" scope="row">Chennai</th>
<td>04 and 05 February 2010<br />
2.00-7.00 pm</td>
<td>Taj Coromandel,<br />
37, Mahatma Gandhi Road,<br />
Nungambakkam,<br />
Chennai 600 034</td>
<td><a href="http://www.britishcouncil.org/india-eduk-exhibition-feb2010-chennai.doc">list of participating institutions</a></td>
</tr>
<tr>
<th id="row_title1" scope="row">Bangalore</th>
<td>08 and 09 February 2010<br />
2.00-7.00 pm</td>
<td>Taj Residency,<br />
41/3, Mahatma Gandhi Road,<br />
Bangalore 560 001</td>
<td><a href="http://www.britishcouncil.org/india-eduk-exhibition-feb2010-bangalore.doc">list of participating institutions</a></td>
</tr>
<tr>
<th id="row_title1" scope="row">Pune</th>
<td>11 February 2010  <br />
1.00-7.00 pm</td>
<td>Le Meridien,<br />
RBM Road,<br />
Pune 411 001</td>
<td><a href="http://www.britishcouncil.org/india-eduk-exhibition-feb2010-pune.doc">list of participating institutions</a></td>
</tr>
</tbody>
</table>
<p><a href="http://www.britishcouncil.org/india-educationuk-events-februaryr-exhibition2010.htm">Link to the actual news article</a> at Official website of British Council.</p>
]]></content:encoded>
			<wfw:commentRss>http://india.interviewmantra.net/2010/education-uk-exhibition-february/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Help the teachers write a recommendation letter for you</title>
		<link>http://india.interviewmantra.net/2010/help-indian-teachers-write-recommendation-letter/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=help-indian-teachers-write-recommendation-letter</link>
		<comments>http://india.interviewmantra.net/2010/help-indian-teachers-write-recommendation-letter/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 12:00:48 +0000</pubDate>
		<dc:creator>Sridhar Jammalamadaka</dc:creator>
				<category><![CDATA[Australia]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[UK]]></category>
		<category><![CDATA[USA]]></category>
		<category><![CDATA[abroad education]]></category>
		<category><![CDATA[abroad studies]]></category>
		<category><![CDATA[admission]]></category>
		<category><![CDATA[indian students]]></category>
		<category><![CDATA[international students]]></category>
		<category><![CDATA[letter of recommendation]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://india.interviewmantra.net/?p=611</guid>
		<description><![CDATA[It is a common practise in India for teachers to ask the students to write the recommendation letter on their own. Teachers modify the letter and attest it with their signature. This surely is not the actual purpose of a &#8230; <a href="http://india.interviewmantra.net/2010/help-indian-teachers-write-recommendation-letter/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It is a common practise in India for teachers to ask the students to write the recommendation letter on their own. Teachers modify the letter and attest it with their signature. This surely is not the actual purpose of a recommendation letter.</p>
<p>This is not entirely the teacher&#8217;s fault according to me. Teachers are overwhelmed with a bunch of requests for recommendation letters. The students typically give minimal or no information about themselves. They simply go to the teacher an year or two after finishing their college and smile at the teacher asking for an excellent letter that praises them. How can the teacher help you if he/she doesn&#8217;t recollect any specific things about you? You can&#8217;t expect the teachers to keep a note of all the hundreds of students they teach every year.<span id="more-611"></span></p>
<p>The point here is NOT to copy paste recommendation letter from the internet and modifying it like most of the indian students tend to do. Those copied letters are useless as they say nothing about YOU as an individual. They speak of somebody but you.  And if you go straight to your teacher and ask for a letter, you may get nothing but an abstract letter that doesn&#8217;t pinpoint to the activities that you did.</p>
<p>Don&#8217;t give up. Don&#8217;t copy paste. There is an awesome solution to this problem. Take a print out of the document below, fill it with necessary details and give it to your teacher. This will help your teacher/professor write an essay that exactly describes the activies that you actually did and gives precise description your character.  Credit goes to <a href="http://www.baylor.edu/content/services/document.php/69258.doc">Baylor university</a>.</p>
<p><object id="doc_79742" style="outline: none;" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="450" height="400" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="doc_79742" /><param name="data" value="http://d1.scribdassets.com/ScribdViewer.swf" /><param name="wmode" value="opaque" /><param name="bgcolor" value="#ffffff" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="FlashVars" value="document_id=26305432&amp;access_key=key-2ghvjddg2zljbhrtfi04&amp;page=1&amp;viewMode=list" /><param name="src" value="http://d1.scribdassets.com/ScribdViewer.swf" /><param name="flashvars" value="document_id=26305432&amp;access_key=key-2ghvjddg2zljbhrtfi04&amp;page=1&amp;viewMode=list" /><param name="allowfullscreen" value="true" /><embed id="doc_79742" style="outline: none;" type="application/x-shockwave-flash" width="450" height="400" src="http://d1.scribdassets.com/ScribdViewer.swf" flashvars="document_id=26305432&amp;access_key=key-2ghvjddg2zljbhrtfi04&amp;page=1&amp;viewMode=list" allowscriptaccess="always" allowfullscreen="true" bgcolor="#ffffff" wmode="opaque" name="doc_79742" data="http://d1.scribdassets.com/ScribdViewer.swf"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://india.interviewmantra.net/2010/help-indian-teachers-write-recommendation-letter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to format a letter of recommendation</title>
		<link>http://india.interviewmantra.net/2010/how-to-format-a-letter-of-recommendation/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-format-a-letter-of-recommendation</link>
		<comments>http://india.interviewmantra.net/2010/how-to-format-a-letter-of-recommendation/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 12:00:00 +0000</pubDate>
		<dc:creator>Sridhar Jammalamadaka</dc:creator>
				<category><![CDATA[Australia]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[UK]]></category>
		<category><![CDATA[USA]]></category>
		<category><![CDATA[abroad education]]></category>
		<category><![CDATA[formatting tips]]></category>
		<category><![CDATA[letter of recommendation]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://india.interviewmantra.net/?p=625</guid>
		<description><![CDATA[Your teacher has written a great letter of recommendation for you. What next? What is the font size, font type that is to be used for a letter of recommendation? How much margin spacing should be used for a letter of &#8230; <a href="http://india.interviewmantra.net/2010/how-to-format-a-letter-of-recommendation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Your teacher has written a great letter of recommendation for you. What next?</p>
<ul>
<li>What is the font size, font type that is to be used for a letter of recommendation?</li>
<li>How much margin spacing should be used for a letter of recommendation?</li>
<li>How to format the heading, salutation, body, closing and signature?</li>
<li>What text  should the introductory paragraph,  concluding paragraph contain? <span id="more-625"></span></li>
<li>Which areas should the letter of recommendation cover?</li>
<li>What are the common errors commited in a letter of recommendation?</li>
</ul>
<p>Here is the answer for all the above questions:<br />
<object id="doc_59625" style="outline: medium none;" width="450" height="450" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="data" value="http://d1.scribdassets.com/ScribdViewer.swf" /><param name="wmode" value="opaque" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="FlashVars" value="document_id=26306841&amp;access_key=key-148yfs86ojp12vy0fhkv&amp;page=1&amp;viewMode=list" /><param name="src" value="http://d1.scribdassets.com/ScribdViewer.swf" /><param name="flashvars" value="document_id=26306841&amp;access_key=key-148yfs86ojp12vy0fhkv&amp;page=1&amp;viewMode=list" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><embed id="doc_59625" style="outline: medium none;" width="450" height="450" type="application/x-shockwave-flash" src="http://d1.scribdassets.com/ScribdViewer.swf" data="http://d1.scribdassets.com/ScribdViewer.swf" wmode="opaque" allowFullScreen="true" allowScriptAccess="always" FlashVars="document_id=26306841&amp;access_key=key-148yfs86ojp12vy0fhkv&amp;page=1&amp;viewMode=list" flashvars="document_id=26306841&amp;access_key=key-148yfs86ojp12vy0fhkv&amp;page=1&amp;viewMode=list" allowfullscreen="true" allowscriptaccess="always" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://india.interviewmantra.net/2010/how-to-format-a-letter-of-recommendation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips to choose an engineering college [For parents only]</title>
		<link>http://india.interviewmantra.net/2010/tips-engineering-college-parents-only/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=tips-engineering-college-parents-only</link>
		<comments>http://india.interviewmantra.net/2010/tips-engineering-college-parents-only/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 17:05:48 +0000</pubDate>
		<dc:creator>guest</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[admission]]></category>
		<category><![CDATA[btech]]></category>
		<category><![CDATA[college]]></category>
		<category><![CDATA[indian parents]]></category>
		<category><![CDATA[indian students]]></category>

		<guid isPermaLink="false">http://india.interviewmantra.net/?p=597</guid>
		<description><![CDATA[This article helps you know whether the college chosen by you is a right fit for your ward. It&#8217;s a parents&#8217; choice In India, the selection of engineering college is parents decision. Students don&#8217;t decide which college they want to &#8230; <a href="http://india.interviewmantra.net/2010/tips-engineering-college-parents-only/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This article helps you know whether the college chosen by you is a right fit for your ward.</p>
<h3>It&#8217;s a parents&#8217; choice</h3>
<p>In India, the selection of engineering college is parents decision. Students don&#8217;t decide which college they want to join. At the age of 18, having just finished their 12<sup>th</sup>, they don&#8217;t have enough maturity to choose a college to study engineering. Nor do they have sufficient financial authority to take independent decisions. So parents take an active role during this time. It is entirely parents&#8217; responsibility to find the right college for their ward. So this article is dedicated to the Indian parents searching colleges for their children.<span id="more-597"></span></p>
<h3>Know your child</h3>
<p>The first and foremost thing you should do as a parent is to analyze the psyche of your son/daughter. Understand what your child expects from an engineering college. Not just in the academic angle but in a general view. Find out where you ward wishes to study. Does he/she prefer an urban environment or sub-urban or rural environment. Can he/she stay without you? Do they prefer to stay with parents or do they prefer to stay away from parents to learn to be independent? Does he/she have any regional or cultural preferences? Students from South india take time to adjust to cultural differences in North India and vice versa. Find out if your ward is comfortable with the food change and climate change.</p>
<h3>Is public opinion useful?</h3>
<p>Asking your neighbors or friends for opinion is a good thing. But they can only tell you which college suits them, they can&#8217;t tell which one suits your ward well. Their opinion is personal to their situation and not to yours. Their children may be smarter or dumber than yours. Their expectations from a college may be different from yours.</p>
<h3>Rely Newspaper advertisements?</h3>
<p>Don&#8217;t trust newspapers alone. Advertisements are meant to be advertisements. The very purpose of an advertisement is promotion. Don&#8217;t believe whatever is written in advertisements. Nothing can be a better check than a personal inquiry.</p>
<h3>Get the inside story</h3>
<p>I advice the parents to at least go to the college 2-3 times before deciding to join their ward in a college. Visit the college campus and observe. Don&#8217;t do anything else. Simply observe. God has given human beings a wonderful skills of deduction from observation. If you observe the college environment for half an hour or so, you will get a little idea about the college, how it works and about the students&#8217; level of thinking.</p>
<p>Asking students for opinion inside college is a bad idea. Because students would not give your their frank opinion inside the college campus for the fear of talking against the college that holds the education and future career. You may ask students outside the college campus for a frank opinion. It is also a good idea to talk to the parents of students studying in a particular college. Again, asking teachers may not be a good idea. Teachers can&#8217;t voice a frank opinion against the colleges for which they are working.</p>
<h3>Careful while paying admission fees</h3>
<p>Do not pay the admission fees to unauthorized agents. Be sure to pay only to authorized agents registered with the college. I have known a case where parents of student from Bihar have lost 1 lakh rupees by paying to an unauthorized agent in Bihar.</p>
<h3>College that fits your budget</h3>
<p>Carefully plan your budget and decide whether or not to join your ward to a college. Think long term. Be sure whether you will be able to pay fees for all the 8 semesters in span of 4 years. I have known parents who had to sell their lands to pay fees of their students owing to the lack of forethought about the fees.</p>
<h3>Placement is not everything</h3>
<p>Career placement is not the only criterion for selecting a college. You should carefully examine the teaching standards of teachers in the college, facilities provided by college for education, food and health.</p>
<h3>Make the best use of what is available</h3>
<p>And after joining a particular college, you can&#8217;t compare the facilities of a particular college with other colleges. Once committed it&#8217;s done. You can do nothing complaning about the facilities in the colleges. Try to make the best use of the facilities given by that college.</p>
<p><strong>About the author:</strong> Kanniga is a Professor in Bharath University, Chennai. She has a teaching experience of over 10 years. She holds Masters degree in Engineering and Business Administration.(M.E, M.B.A). Professor loves her work as worship. You can ask education related questions to professor via email <a href="mailto:kannigatruth@yahoo.com">kannigatruth@yahoo.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://india.interviewmantra.net/2010/tips-engineering-college-parents-only/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keka Tip for polishing your SOP</title>
		<link>http://india.interviewmantra.net/2010/keka-tip-for-polishing-your-sop/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=keka-tip-for-polishing-your-sop</link>
		<comments>http://india.interviewmantra.net/2010/keka-tip-for-polishing-your-sop/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 09:30:26 +0000</pubDate>
		<dc:creator>Sridhar Jammalamadaka</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[GRE]]></category>
		<category><![CDATA[UK]]></category>
		<category><![CDATA[USA]]></category>
		<category><![CDATA[abroad studies]]></category>
		<category><![CDATA[indian students]]></category>
		<category><![CDATA[sop tips]]></category>
		<category><![CDATA[statement of purpose]]></category>

		<guid isPermaLink="false">http://india.interviewmantra.net/?p=591</guid>
		<description><![CDATA[Wondering what word KEKA is? Well, it&#8217;s a word borrowed from a South Indian language &#8211;Telugu. Keka is a superlative degree of the adjective &#8211; Awesome. So you might have guessed by now that I&#8217;m giving away an awesome tip &#8230; <a href="http://india.interviewmantra.net/2010/keka-tip-for-polishing-your-sop/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Wondering what word <strong>KEKA</strong> is? Well, it&#8217;s a word borrowed from a South Indian language &#8211;Telugu. Keka is a superlative degree of the adjective &#8211; Awesome. So you might have guessed by now that I&#8217;m giving away an awesome tip for polishing SOP.</p>
<p>Coming back to the topic,  let me give a disclaimer first. This tip is only useful for those aspirants who have written Statement of Purpose on their own and are ready with a basic draft. I am certainly not a proponent of plagiarism and unoriginality.</p>
<p>The biggest difficulty that an average Indian student faces after having written a basic draft for SOP is polishing it. How to add Business English to it? I mean how to add words that make the essay sound professional, polished and sophisticated? What to write when you run short of ideas to write?<span id="more-591"></span></p>
<p>Don&#8217;t worry at all. Just get a prospectus book of a University that offers the degree that you wish to pursue. Prospectus Book only. Not an ebook or website of the University. Now go to the pages where there is an explanation for why you should study at that University. This page(s) is very important to you.</p>
<p>Let me explain you with an example how to proceed. Here is a quote from Kingston University&#8221;s Business Programme Postgraduate prospectus.</p>
<blockquote>
<h3>We know that undertaking postgraduate study is a major commitment and we want you to succeed, whether you are hoping to use your qualification to stand out from the crowd when applying for jobs, to help you gain that all-important promotion, or simply to expand your knowledge of a subject that interests you. We pride ourselves on offering you top-quality teaching, support and resources, and are keen to provide you with a programme that suits you and takes into account your work and life commitments.</h3>
</blockquote>
<p>Now edit these lines and write it from your perspective. Here is what I wrote for starters.</p>
<blockquote>
<h3>I am committed to undertaking postgraduate study as I wish to stand out from the crowd when applying for jobs. I also wish to expand my knowledge in a subject that interests me &#8212; XYZ subject. I believe that ABC programme at your University suits me taking into account my work and life commitments.</h3>
</blockquote>
<p>I hope you got the point. All the Universities in the world market their study programmes with the help of marketing material and prospectuses. They explain in great detail how an educational degree from their University can benefit you in your professional life. A simple trick is to take inspiration from their ideas and make them yours. The more prospectuses you refer, the more ideas you get, the better. But beware, don&#8217;t use the prospectus of the University that you are applying for!</p>
<p><em>Is this not a KEKA idea?</em></p>
]]></content:encoded>
			<wfw:commentRss>http://india.interviewmantra.net/2010/keka-tip-for-polishing-your-sop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use this venn diagram to choose B-Schools for MBA</title>
		<link>http://india.interviewmantra.net/2010/use-venn-diagram-choose-bschool-for-mba/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=use-venn-diagram-choose-bschool-for-mba</link>
		<comments>http://india.interviewmantra.net/2010/use-venn-diagram-choose-bschool-for-mba/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 02:00:33 +0000</pubDate>
		<dc:creator>Sridhar Jammalamadaka</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[MBA]]></category>
		<category><![CDATA[abroad studies]]></category>
		<category><![CDATA[admission]]></category>
		<category><![CDATA[bschool selection]]></category>
		<category><![CDATA[mba]]></category>

		<guid isPermaLink="false">http://india.interviewmantra.net/?p=571</guid>
		<description><![CDATA[How to select a B-School for pursuing MBA? What are the three most important factors that need to be considered? I guess this diagram says it all. This post doesn&#8217;t require any further explanation. Comment below on your version of &#8230; <a href="http://india.interviewmantra.net/2010/use-venn-diagram-choose-bschool-for-mba/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<h2>How to select a B-School for pursuing MBA?</h2>
</li>
<li>
<h2>What are the three most important factors that need to be considered?</h2>
</li>
</ul>
<p><span id="more-571"></span></p>
<div id="attachment_572" class="wp-caption aligncenter" style="width: 330px"><a href="http://india.interviewmantra.net/wp-content/uploads/2010/01/choosing-bSchool-diagram.jpg"><img class="size-full wp-image-572" title="Choosing a BSchool" src="http://india.interviewmantra.net/wp-content/uploads/2010/01/choosing-bSchool-diagram.jpg" alt="A venn diagram to choose bschools" width="320" height="311" /></a><p class="wp-caption-text">A venn diagram to choose Business Schools</p></div>
<p>I guess this diagram says it all. This post doesn&#8217;t require any further explanation.</p>
<p>Comment below on your version of understanding of this picture.</p>
<p><em>Thanks <a href="http://pinchthebubble.blogspot.com/2009/03/do-your-research-or-how-to-choose-b.html">Alex Tzukerman</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://india.interviewmantra.net/2010/use-venn-diagram-choose-bschool-for-mba/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A month in the life of a student at London School of Business</title>
		<link>http://india.interviewmantra.net/2010/month-life-of-student-lbs/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=month-life-of-student-lbs</link>
		<comments>http://india.interviewmantra.net/2010/month-life-of-student-lbs/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 17:58:23 +0000</pubDate>
		<dc:creator>Sridhar Jammalamadaka</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[UK]]></category>
		<category><![CDATA[abroad education]]></category>
		<category><![CDATA[london business school]]></category>
		<category><![CDATA[mba]]></category>
		<category><![CDATA[mba in uk]]></category>
		<category><![CDATA[uk education]]></category>
		<category><![CDATA[uk universities]]></category>

		<guid isPermaLink="false">http://india.interviewmantra.net/?p=550</guid>
		<description><![CDATA[Are you planning for a MBA program abroad in near future? Then you are most likely to secretly wish you would get admission into the top B School in the world &#8211; London School of Business. Think of it as &#8230; <a href="http://india.interviewmantra.net/2010/month-life-of-student-lbs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Are you planning for a MBA program abroad in near future? Then you are most likely to secretly wish you would get admission into the top B School in the world &#8211; London School of Business. Think of it as the IITs/IIMs of the world. Just like every Indian student dreams to study at IITs or IIMs, every MBA aspirant dreams to study at LBS.</p>
<p>Ever wondered how life would be at London School of Business. Here is a sneak peak from the diary of a student of London School of Business(class of 2011).<span id="more-550"></span></p>
<div id="attachment_549" class="wp-caption aligncenter" style="width: 460px"><a href="http://india.interviewmantra.net/wp-content/uploads/2010/01/month-at-lbs1.png"><img class="size-medium wp-image-549 " title="month-at-lbs" src="http://india.interviewmantra.net/wp-content/uploads/2010/01/month-at-lbs1.png" alt="November Month schedule at LBS" width="450" height="303" /></a><p class="wp-caption-text">A Month&#39;s schedule at London School of Business</p></div>
<p>Wow that&#8217;s a lot of homework for a month&#8217;s time! Hey but wait, before you draw conclusions about tough life at LBS, here&#8217;s a video of LBS students&#8217; Christmas tradition &#8211; all students wear Santa costumes and hang around the London city centre to share the Christmas spirit, party and have fun.</p>
<p><object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/t-kfFE8pVUw&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/t-kfFE8pVUw&#038;fs=1" type="application/x-shockwave-flash" width="640" height="505" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3>So what&#8217;s your reaction about life at LBS. It rocks there, doesn&#8217;t it.</h3>
<h3>Dream high my friend!</h3>
<p>Thanks <a href="http://pinchthebubble.blogspot.com/">Alex Tzukerman</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://india.interviewmantra.net/2010/month-life-of-student-lbs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hans Rosling, a Swedish Health Expert admits that Indian students were better than him</title>
		<link>http://india.interviewmantra.net/2010/hans-rosling-admits-indian-students-better/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hans-rosling-admits-indian-students-better</link>
		<comments>http://india.interviewmantra.net/2010/hans-rosling-admits-indian-students-better/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 14:15:32 +0000</pubDate>
		<dc:creator>Sridhar Jammalamadaka</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Timepass]]></category>
		<category><![CDATA[hans rosling]]></category>
		<category><![CDATA[indian students]]></category>
		<category><![CDATA[ted video]]></category>

		<guid isPermaLink="false">http://india.interviewmantra.net/?p=509</guid>
		<description><![CDATA[www.youtube.com/watch?v=fiK5-oAaeUs I&#8217;m running short of words in praise of this video. See it yourself to experience the feeling of watching a genius speak about Indians and Asians in general. Highlights of this video: Hans Rosling praises Indian students for their &#8230; <a href="http://india.interviewmantra.net/2010/hans-rosling-admits-indian-students-better/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span class="youtube">
<iframe title="YouTube video player" class="youtube-player" type="text/html" width="425" height="344" src="http://www.youtube.com/embed/fiK5-oAaeUs?color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;modestbranding=1&amp;loop=&amp;showsearch=0&amp;rel=1" frameborder="0" allowfullscreen></iframe>
</span><p><a href="http://www.youtube.com/watch?v=fiK5-oAaeUs"><img src="http://img.youtube.com/vi/fiK5-oAaeUs/default.jpg" width="130" height="97" border=0></a></p><p><a href="http://www.youtube.com/watch?v=fiK5-oAaeUs">www.youtube.com/watch?v=fiK5-oAaeUs</a></p></p>
<p>I&#8217;m running short of words in praise of <a href="http://www.youtube.com/watch?v=fiK5-oAaeUs">this video</a>. See it yourself to experience the feeling of watching a genius speak about Indians and Asians in general.<span id="more-509"></span></p>
<h2>Highlights of this video:</h2>
<ul>
<li>Hans Rosling praises Indian students for their hard work and intelligence.</li>
<li>Predicts precisely the date and time of India&#8217;s uprising to match the Income per person in the developed countries.</li>
</ul>
<p>This video can shut the mouth of all those Indians who rant about under-development in India(including me). All in all, a great source of inspiration for Indians.</p>
]]></content:encoded>
			<wfw:commentRss>http://india.interviewmantra.net/2010/hans-rosling-admits-indian-students-better/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

