<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>CrazyEngineers Forum</title>
		<link>http://www.crazyengineers.com/forum/</link>
		<description>All Engineers United @ www.CrazyEngineers.com</description>
		<language>en</language>
		<lastBuildDate>Thu, 02 Sep 2010 22:21:12 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.crazyengineers.com/forum/images/misc/rss.png</url>
			<title>CrazyEngineers Forum</title>
			<link>http://www.crazyengineers.com/forum/</link>
		</image>
		<item>
			<title>Difficulty in implementing video conferencing on Internet</title>
			<link>http://www.crazyengineers.com/forum/project-ideas-seminar-topics/36288-difficulty-implementing-video-conferencing-internet.html</link>
			<pubDate>Thu, 02 Sep 2010 19:56:15 GMT</pubDate>
			<description>I am B.E (C.S.E) Final year student, developing a project on _E-Learning_. 
I have designed some modules like mail,e-library etc.  
I was doing video...</description>
			<content:encoded><![CDATA[<div>I am B.E (C.S.E) Final year student, developing a project on <u>E-Learning</u>.<br />
I have designed some modules like mail,e-library etc. <br />
I was doing video conferencing in LAN.<br />
I have little bit idea of implementing video conferencing on LAN by using Java Media Framework through RTP protocol, <br />
but my teacher suggested me to do that on Internet i.e a student from any location should be able to do video conferencing with the teacher at server.<br />
I don't have any idea how to provide video conferencing on Internet.:confused:<br />
Please give me some idea about the same.<br />
<br />
What steps I should follow?<br />
<br />
What will be the H/W &amp; S/W requirements for the project?<br />
<br />
P.S:- My teacher clearly said that she cannot guide me in this project....:(</div>

 ]]></content:encoded>
			<category domain="http://www.crazyengineers.com/forum/project-ideas-seminar-topics/"><![CDATA[Project Ideas & Seminar Topics]]></category>
			<dc:creator>Mangesh6688</dc:creator>
			<guid isPermaLink="true">http://www.crazyengineers.com/forum/project-ideas-seminar-topics/36288-difficulty-implementing-video-conferencing-internet.html</guid>
		</item>
		<item>
			<title>God did not create the universe: Hawking</title>
			<link>http://www.crazyengineers.com/forum/ce-infocus/36287-god-did-not-create-universe-hawking.html</link>
			<pubDate>Thu, 02 Sep 2010 19:00:20 GMT</pubDate>
			<description><![CDATA[British physicist Stephen Hawking has said that the creation of the universe was a result of the inevitable laws of physics and it did not need God's...]]></description>
			<content:encoded><![CDATA[<div>British physicist Stephen Hawking has said that the creation of the universe was a result of the inevitable laws of physics and it did not need God's help.<br />
<br />
In his latest book titled &quot;The Grand Design&quot;, Hawking writes: &quot;Because there is a law such as gravity, the universe can and will create itself from nothing. Spontaneous creation is the reason there is something rather than nothing, why the universe exists, why we exist.&quot;<br />
<br />
<a href="http://news.in.msn.com/international/article.aspx?cp-documentid=4332342&amp;page=0" target="_blank">God did not create the universe: Hawking - *International News ? News ? MSN India</a><br />
<br />
What's your opinion?<br />
<br />
Source: IANS, India Syndicate</div>

 ]]></content:encoded>
			<category domain="http://www.crazyengineers.com/forum/ce-infocus/">CE - InFocus</category>
			<dc:creator>mahesh_dahale</dc:creator>
			<guid isPermaLink="true">http://www.crazyengineers.com/forum/ce-infocus/36287-god-did-not-create-universe-hawking.html</guid>
		</item>
		<item>
			<title>Syncro geared ac motor</title>
			<link>http://www.crazyengineers.com/forum/electrical-electronics-engineering/36286-syncro-geared-ac-motor.html</link>
			<pubDate>Thu, 02 Sep 2010 18:44:39 GMT</pubDate>
			<description><![CDATA[&#1612;What is it? 
and where we can use it ?]]></description>
			<content:encoded><![CDATA[<div>&#1612;What is it?<br />
and where we can use it ?</div>

 ]]></content:encoded>
			<category domain="http://www.crazyengineers.com/forum/electrical-electronics-engineering/"><![CDATA[Electrical & Electronics Engineering]]></category>
			<dc:creator>arm1368</dc:creator>
			<guid isPermaLink="true">http://www.crazyengineers.com/forum/electrical-electronics-engineering/36286-syncro-geared-ac-motor.html</guid>
		</item>
		<item>
			<title>Brief explanation  of Quick Sort algorithm</title>
			<link>http://www.crazyengineers.com/forum/computer-science-engineering/36285-brief-explanation-quick-sort-algorithm.html</link>
			<pubDate>Thu, 02 Sep 2010 16:32:06 GMT</pubDate>
			<description>On request of one user from ce,i am going to explain one of the most commonly used sorting algorithm ie quick sort  
 
It is based on Divide and...</description>
			<content:encoded><![CDATA[<div>On request of one user from ce,i am going to explain one of the most commonly used sorting algorithm ie quick sort <br />
<br />
It is based on Divide and conquer approach.<br />
<br />
It is one of the common practical example of recursion<br />
<br />
There are generally 3 steps in this<br />
<br />
1:-Divide a problem a multiple sub problems<br />
2:-Solve them individually.<br />
3:-Merge those sub problems to find solution of main problem<br />
<br />
Algorithm<br />
<br />
      1.  Choose any key element in an array which is know a pivot.<br />
      2.  Reorder the array such that that all elements which are less than the pivot come before the pivot and so that all elements greater than the pivot come after it. After the partitioning, the pivot is in its final position.<br />
      3.  Recursively reorder two sub-lists: the sub-list of lesser elements and the sub-list of greater elements.<br />
<br />
<br />
Below is the program written in c++ ,it can help you for better understanding<br />
<br />
//Program for Quicksort<br />
#include&lt;iostream.h&gt;<br />
#include&lt;conio.h&gt;<br />
int partition(int a[],int,int);<br />
void quick(int a[],int,int);<br />
void main()<br />
{<br />
int *a,n,i;<br />
cout&lt;&lt;&quot;Enter size of array&quot;&lt;&lt;endl;<br />
cin&gt;&gt;n;<br />
a=new int[n];<br />
cout&lt;&lt;&quot;Please enter elements for array&quot;&lt;&lt;endl;<br />
for(i=0;i&lt;n;i++)<br />
{<br />
cin&gt;&gt;a[i];<br />
}<br />
quick(a,0,n-1);<br />
cout&lt;&lt;&quot;Elments are&quot;&lt;&lt;endl;<br />
for(i=0;i&lt;n;i++)<br />
{<br />
cout&lt;&lt;a[i]&lt;&lt;endl;<br />
}<br />
getch();<br />
}<br />
void quick(int a[],int start,int finish)<br />
{<br />
if(start&lt;finish)<br />
{<br />
int q=partition(a,start,finish);<br />
quick(a,start,q-1);<br />
quick(a,q+1,finish);<br />
}<br />
}<br />
int partition(int a[],int start,int finish)<br />
{<br />
int x=a[finish],temp,temp1,j;<br />
int i=start-1;<br />
for(j=start;j&lt;=finish-1;j++)<br />
{<br />
    if(a[j]&lt;=x)<br />
    {<br />
        i=i+1;<br />
        temp=a[i];<br />
        a[i]=a[j];<br />
        a[j]=temp;<br />
    }<br />
}<br />
temp1=a[i+1];<br />
a[i+1]=a[j];<br />
a[j]=temp1;<br />
return (i+1);<br />
}</div>

 ]]></content:encoded>
			<category domain="http://www.crazyengineers.com/forum/computer-science-engineering/"><![CDATA[Computer Science & IT Engineering]]></category>
			<dc:creator>goyal420</dc:creator>
			<guid isPermaLink="true">http://www.crazyengineers.com/forum/computer-science-engineering/36285-brief-explanation-quick-sort-algorithm.html</guid>
		</item>
		<item>
			<title>How to Format mobile?</title>
			<link>http://www.crazyengineers.com/forum/computer-science-engineering/36284-how-format-mobile.html</link>
			<pubDate>Thu, 02 Sep 2010 15:40:06 GMT</pubDate>
			<description>how to format mobile? 
my mobile is of s 60 edition and i want to format it... 
any suggestions?????</description>
			<content:encoded><![CDATA[<div>how to format mobile?<br />
my mobile is of s 60 edition and i want to format it...<br />
any suggestions?????</div>

 ]]></content:encoded>
			<category domain="http://www.crazyengineers.com/forum/computer-science-engineering/"><![CDATA[Computer Science & IT Engineering]]></category>
			<dc:creator>Special</dc:creator>
			<guid isPermaLink="true">http://www.crazyengineers.com/forum/computer-science-engineering/36284-how-format-mobile.html</guid>
		</item>
		<item>
			<title>Why Frequency In some Countries is 60 Hz??</title>
			<link>http://www.crazyengineers.com/forum/electrical-electronics-engineering/36283-why-frequency-some-countries-60-hz.html</link>
			<pubDate>Thu, 02 Sep 2010 15:21:28 GMT</pubDate>
			<description>As per my record their are some countries in which power is transmitted @ 60Hz but with a voltage of 110V... 
 
Please tell me why is it so???? 
...</description>
			<content:encoded><![CDATA[<div>As per my record their are some countries in which power is transmitted @ 60Hz but with a voltage of 110V...<br />
<br />
Please tell me why is it so????<br />
<br />
Will it result in increase in increase Efficiency???<br />
Or<br />
Will it reduce the conductor requirement???<br />
Or<br />
Something else???<br />
<br />
If somebody know this Please provide me the full information......<br />
If you have any *.pdf Copy please provide it to me.........<br />
<br />
<b><font color="#ff0000">Note: How to Upload A PDF copy here???<br />
Answer: 1. <a href="http://www.ziddu.com" target="_blank">Register Here</a><br />
            2. Upload your attachment their by Logging In....<br />
            3. Copy the Provided link and paste that link here......</font></b><br />
<br />
I know, me giving you more trouble bye telling you to do this.......<br />
But please do this, cause this question is giving much more Headache to me.....<br />
Please help me.....<br />
I will be very thankful to you.....<br />
<br />
Regards,<br />
VIPUL</div>

 ]]></content:encoded>
			<category domain="http://www.crazyengineers.com/forum/electrical-electronics-engineering/"><![CDATA[Electrical & Electronics Engineering]]></category>
			<dc:creator>d_vipul</dc:creator>
			<guid isPermaLink="true">http://www.crazyengineers.com/forum/electrical-electronics-engineering/36283-why-frequency-some-countries-60-hz.html</guid>
		</item>
		<item>
			<title>Cambridge Wireless is discussing ‘Sensing from Radio’</title>
			<link>http://www.crazyengineers.com/forum/ce-infocus/36282-cambridge-wireless-discussing-sensing-radio.html</link>
			<pubDate>Thu, 02 Sep 2010 15:10:04 GMT</pubDate>
			<description>CAMBRIDGE, UK – 2nd September 2010 – Cambridge Wireless announced today the latest presentation from the Joint Short Range Wireless and Wireless...</description>
			<content:encoded><![CDATA[<div><font face="Verdana"><font size="2">CAMBRIDGE, UK – 2nd September 2010 – Cambridge Wireless announced today the latest presentation from the Joint Short Range Wireless and Wireless Sensing Special Interest Group taking place on 29th September 2010 at Murray Edwards College, University of Cambridge. </font></font><br />
<br />
<font face="Verdana"><font size="2">For more information, please visit </font><a href="http://www.cambridgewireless.co.uk/events" target="_blank"><font size="2">www.cambridgewireless.co.uk/events</font></a></font><br />
<br />
<font face="Verdana"><font size="2">Wireless systems have been an invaluable part of sensing and telemetry. However, the radio system itself can be used for sensing and measuring things like location, medical phenomena, even the weather. This event will present a range of topics where wireless itself provides the transduction, and possibly the data carrier too. Topics will range from ultrawideband, spectrum monitoring, THz devices and CMOS and the latest Ofcom study results into wireless devices and much more.</font></font><br />
<br />
<font face="Verdana"><font size="2">Steve Edwards from Rohde &amp; Schwarz, the sponsors for this event has this to say, “We value the opportunity to take part in events such as these as the collective expertise can often provide valuable insight and ideas that may contribute to future product development.”</font></font><br />
<br />
<font face="Verdana"><font size="2">This event is an arena to discuss the latest developments surrounding this topic with the crème de le crème of the industry with the opportunity to debate the potential new avenues of development in the usability of radio.</font></font><br />
<br />
<font face="Verdana"><font size="2">Dr Soraya Jones, CEO of Cambridge Wireless says “This forum will open up the debate on the future business opportunities surrounding this field, tackling the core issues and providing a clear path for future commercial development.”</font></font><br />
<br />
<font face="Verdana"><font size="2">Confirmed speakers include; Dr Andy Ward, Chief Technology Officer, Ubisense Ltd, Stirling Essex, Director of Business Development from CRFS, Dr Lorenzo Tripodi, Philips Research, Dr Steve Methley, Quotient Associates Ltd, Dirk Trossen, University of Cambridge and Eiman Kanjo of Cambridge Mobile Sensing.</font></font><br />
<br />
<font face="Verdana"><font size="2">This SIG is championed by Tim Whittaker of Cambridge Consultants, Peter George of Anritsu and Antony Rix of TTP from the Short Range Wireless SIG and Rob Blake of Philips Research UK, Dirk Trossen, University of Cambridge, Eiman Kanjo of Cambridge Mobile Sensing and Simon Loe of Alcatel Lucent of from the Sensing SIG.</font></font><br />
<br />
<font face="Verdana"><font size="2">Cambridge Wireless is also delighted to have Rohde and Schwarz support in sponsoring this event.</font></font><br />
<br />
<font face="Verdana"><font size="2">- ENDS -</font></font><br />
<br />
<font face="Verdana"><font size="2">Notes for editors follow </font></font><br />
<br />
<font face="Verdana"><font size="2">For Cambridge Wireless please contact: </font></font><br />
<font face="Verdana"><font size="2">Natalie Childs, Marketing and Events Executive, Cambridge Wireless </font></font><br />
<font face="Verdana"><font size="2">Tel: +44 1223 422 365 </font></font><br />
<font face="Verdana"><font size="2">Email: admin[at]cambridgewirelesspdot]co.uk.</font></font><br />
<font face="Verdana"><a href="http://www.cambridgewireless.co.uk/" target="_blank"><font size="2">www.cambridgewireless.co.uk</font></a></font><br />
<br />
<b><font face="Verdana"><font size="2">About Cambridge Wireless</font></font></b><br />
<font face="Verdana"><font size="2">Cambridge Wireless is one of the world’s leading wireless communities with a rapidly expanding network of companies interested in the application of wireless technologies. In addition to VIP Networking events, our activities are based around a number of Special Interest Groups (SIGs), each focussed on a specific technology and/or market area. SIG meetings provide opportunities for member organisations to meet, discuss developments in technologies and markets, showcase their capabilities, and explore opportunities for new business. </font></font><br />
<br />
<font face="Verdana"><font size="2">For more information visit: </font><a href="http://www.cambridgewireless.co.uk/" target="_blank"><font size="2">http://www.cambridgewireless.co.uk</font></a></font><br />
<br />
<font face="Verdana"><font size="2">Distributed on behalf of Cambridge Wireless by NeonDrum news distribution service (</font><a href="http://www.neondrum.com/" target="_blank"><font size="2">http://www.neondrum.com</font></a><font size="2">)</font></font></div>

 ]]></content:encoded>
			<category domain="http://www.crazyengineers.com/forum/ce-infocus/">CE - InFocus</category>
			<dc:creator>neondrum</dc:creator>
			<guid isPermaLink="true">http://www.crazyengineers.com/forum/ce-infocus/36282-cambridge-wireless-discussing-sensing-radio.html</guid>
		</item>
		<item>
			<title>Problem in VB</title>
			<link>http://www.crazyengineers.com/forum/computer-science-engineering/36281-problem-vb.html</link>
			<pubDate>Thu, 02 Sep 2010 14:24:45 GMT</pubDate>
			<description><![CDATA[Hi CEans, 
           I'm using Visual Basic 2008 express edition. While creating forms in projects, the form window appeared is not fit to the work...]]></description>
			<content:encoded><![CDATA[<div>Hi CEans,<br />
           I'm using Visual Basic 2008 express edition. While creating forms in projects, the form window appeared is not fit to the work space area. I have used maximize button also but it doesn't effects. Can anyone suggest me what to do?:confused:<br />
                                 And, there is an option in form property window that is &quot;Start position&quot;. Does it have any link with the form size?</div>

 ]]></content:encoded>
			<category domain="http://www.crazyengineers.com/forum/computer-science-engineering/"><![CDATA[Computer Science & IT Engineering]]></category>
			<dc:creator>BCA_GIRL</dc:creator>
			<guid isPermaLink="true">http://www.crazyengineers.com/forum/computer-science-engineering/36281-problem-vb.html</guid>
		</item>
		<item>
			<title>linux scheduler</title>
			<link>http://www.crazyengineers.com/forum/computer-science-engineering/36280-linux-scheduler.html</link>
			<pubDate>Thu, 02 Sep 2010 12:22:55 GMT</pubDate>
			<description>can anyone tell me how to extract scheduler code from linux(ubuntu/debian) source code?</description>
			<content:encoded><![CDATA[<div>can anyone tell me how to extract scheduler code from linux(ubuntu/debian) source code?</div>

 ]]></content:encoded>
			<category domain="http://www.crazyengineers.com/forum/computer-science-engineering/"><![CDATA[Computer Science & IT Engineering]]></category>
			<dc:creator>binitha</dc:creator>
			<guid isPermaLink="true">http://www.crazyengineers.com/forum/computer-science-engineering/36280-linux-scheduler.html</guid>
		</item>
		<item>
			<title>simple/good project topics</title>
			<link>http://www.crazyengineers.com/forum/project-ideas-seminar-topics/36279-simple-good-project-topics.html</link>
			<pubDate>Thu, 02 Sep 2010 11:43:45 GMT</pubDate>
			<description><![CDATA[pls.i'm a final student of telecommunication option,i need a good/slmple project topics for my final year project.]]></description>
			<content:encoded><![CDATA[<div>pls.i'm a final student of telecommunication option,i need a good/slmple project topics for my final year project.</div>

 ]]></content:encoded>
			<category domain="http://www.crazyengineers.com/forum/project-ideas-seminar-topics/"><![CDATA[Project Ideas & Seminar Topics]]></category>
			<dc:creator>editor</dc:creator>
			<guid isPermaLink="true">http://www.crazyengineers.com/forum/project-ideas-seminar-topics/36279-simple-good-project-topics.html</guid>
		</item>
		<item>
			<title>Thevenin maximum power transfer theorem</title>
			<link>http://www.crazyengineers.com/forum/electrical-electronics-engineering/36278-thevenin-maximum-power-transfer-theorem.html</link>
			<pubDate>Thu, 02 Sep 2010 10:52:57 GMT</pubDate>
			<description>In Thevenin maximum power transfer theorem it state that the load resistance,RL must be equal to internal resistance of the source,Rin. However, the...</description>
			<content:encoded><![CDATA[<div>In Thevenin maximum power transfer theorem it state that the load resistance,RL must be equal to internal resistance of the source,Rin. However, the efficiency of the circuit is just 50%. At here, can i say i use power source in a more effective way if be able to have an output of higher efficiency and at the same time considerable high output voltage but this output voltage will be slightly lower abit than when RL=Rin. The efficinecy will be higher alot if using RL&gt;&gt;Rin but the amount of output voltage will be extremely low. So in order to choose a load resistor give optimization to power saving and total output power, can consider it as a product of efficiency and total oputput power?<br />
 <br />
here i let X=efficiency*output power and consider a voltage source connected in series with an internal resistance and a load resistance,nRin where n is the value to be find.<br />
 <br />
efficiency=Pout/Pin=V^2[(nRin)/(Rin+nRin)^2]/V^2(nRin+Rin)=n/(1+n)<br />
output power=v^2(nRin)/(n+1)^2Rin^2)=(V^2/Rin)(n/(n+1)^2)<br />
 <br />
hence X=n^2/(n+1)^3[V^2/Rin]<br />
<font face="Calibri"><font face="Calibri">differentiate it with respect to n using UV method will finally get</font><br />
<font face="Calibri">dx/dn=[n/(n+1)^3][2-[3n/(n+1)]]</font><br />
<font face="Calibri">when dx/dn=0 n=0(rejected) and n=2</font><br />
<font face="Calibri">so at here, can i say if i take into consideration of power saving and the amount of output power dissipated, taking n=2 will give me what i want? a desirable high efficinecy and high output power.</font><br />
</font></div>

 ]]></content:encoded>
			<category domain="http://www.crazyengineers.com/forum/electrical-electronics-engineering/"><![CDATA[Electrical & Electronics Engineering]]></category>
			<dc:creator>chuackl</dc:creator>
			<guid isPermaLink="true">http://www.crazyengineers.com/forum/electrical-electronics-engineering/36278-thevenin-maximum-power-transfer-theorem.html</guid>
		</item>
		<item>
			<title>Dark lines appearing in monitor screen ,when viewed through mobile camera</title>
			<link>http://www.crazyengineers.com/forum/electrical-electronics-engineering/36276-dark-lines-appearing-monitor-screen-when-viewed-through-mobile-camera.html</link>
			<pubDate>Thu, 02 Sep 2010 07:26:09 GMT</pubDate>
			<description>Might be you have observed,some dark lines appearing in monitor screen(mine is CRT) ,when viewed through mobile camera ...otherwise my monitor is...</description>
			<content:encoded><![CDATA[<div>Might be you have observed,some dark lines appearing in monitor screen(mine is CRT) ,when viewed through mobile camera ...otherwise my monitor is working fine...<br />
<br />
Why is it so??Any Electronic reason??</div>

 ]]></content:encoded>
			<category domain="http://www.crazyengineers.com/forum/electrical-electronics-engineering/"><![CDATA[Electrical & Electronics Engineering]]></category>
			<dc:creator>bharathpb</dc:creator>
			<guid isPermaLink="true">http://www.crazyengineers.com/forum/electrical-electronics-engineering/36276-dark-lines-appearing-monitor-screen-when-viewed-through-mobile-camera.html</guid>
		</item>
		<item>
			<title>Use of biomass</title>
			<link>http://www.crazyengineers.com/forum/electrical-electronics-engineering/36273-use-biomass.html</link>
			<pubDate>Thu, 02 Sep 2010 06:02:57 GMT</pubDate>
			<description>Dear CEans, 
We are here, boasting ourselves as members of developed nations and we simply turn a blind eye to facts. Now, I want you all to remember...</description>
			<content:encoded><![CDATA[<div>Dear CEans,<br />
We are here, boasting ourselves as members of developed nations and we simply turn a blind eye to facts. Now, I want you all to remember that we are engineers, if we do not think about it, who will. <br />
Cities are the mirrors of our development statistics. The major challenge in cities is the wastes. In cities, you can find the cleanest places, and also the most hazardous. So, what can we use to curb the wastes in cities? can we use the biomass to power the city? lets discuss about this, we can bring on the change. Lets do it.</div>

 ]]></content:encoded>
			<category domain="http://www.crazyengineers.com/forum/electrical-electronics-engineering/"><![CDATA[Electrical & Electronics Engineering]]></category>
			<dc:creator>aj_onduty</dc:creator>
			<guid isPermaLink="true">http://www.crazyengineers.com/forum/electrical-electronics-engineering/36273-use-biomass.html</guid>
		</item>
		<item>
			<title>Should Companies Ask Jr. Employees To Sign 2 Year Bond?</title>
			<link>http://www.crazyengineers.com/forum/debate-masterminds/36272-should-companies-ask-jr-employees-sign-2-year-bond.html</link>
			<pubDate>Thu, 02 Sep 2010 05:53:33 GMT</pubDate>
			<description><![CDATA[Many leading companies, I've come to know, are asking engineering grads to join 2 year contract at the time of joining. The contract abides the new...]]></description>
			<content:encoded><![CDATA[<div>Many leading companies, I've come to know, are asking engineering grads to join 2 year contract at the time of joining. The contract abides the new employees to continue the job with the employer for a minimum of 2 years. It's one-sided bond; meaning the employer can terminate the employment but the candidate cannot.<br />
<br />
I've heard that this is done because the employers spend considerable money and efforts on new joinees in training them for projects. Lot of recruiters eye these 'trained employees' and offer them a slightly higher package and thus save the whole cost of training them.<br />
<br />
But this may work against the candidates in many cases. For example, if the employer doesn't offer work in the domain of candidate's interest, the employee is bound to get frustrated and stuck up in job for minimum 2 years. Or worse, if the employer does not have a project the candidate is made to be 'on bench' for months! That ruins future career prospects for the candidate.<br />
<br />
What's your take on this?</div>

 ]]></content:encoded>
			<category domain="http://www.crazyengineers.com/forum/debate-masterminds/">Debate Masterminds</category>
			<dc:creator>The_Big_K</dc:creator>
			<guid isPermaLink="true">http://www.crazyengineers.com/forum/debate-masterminds/36272-should-companies-ask-jr-employees-sign-2-year-bond.html</guid>
		</item>
		<item>
			<title>Happy Birthday CEan MayurPathak</title>
			<link>http://www.crazyengineers.com/forum/chillax-chit-chat/36271-happy-birthday-cean-mayurpathak.html</link>
			<pubDate>Thu, 02 Sep 2010 05:05:57 GMT</pubDate>
			<description><![CDATA[CEan MayurPathak celebrates his birthday today. Let's wish him many happy returns of the day and hope he returns to CE :p 
...]]></description>
			<content:encoded><![CDATA[<div>CEan MayurPathak celebrates his birthday today. Let's wish him many happy returns of the day and hope he returns to CE :p<br />
<br />
:happy::happy::happy::happy:<br />
<font size="3"><b>Happy Birthday Mayur<br />
:happy::happy::happy::happy:<br />
</b></font></div>

 ]]></content:encoded>
			<category domain="http://www.crazyengineers.com/forum/chillax-chit-chat/">Chillax : Chit-Chat</category>
			<dc:creator>The_Big_K</dc:creator>
			<guid isPermaLink="true">http://www.crazyengineers.com/forum/chillax-chit-chat/36271-happy-birthday-cean-mayurpathak.html</guid>
		</item>
	</channel>
</rss>
