<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>freshersblog</title>
	<atom:link href="http://freshersblog.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://freshersblog.wordpress.com</link>
	<description>just for freshers by indianenineer.wordpress.com</description>
	<lastBuildDate>Wed, 21 Oct 2009 16:11:04 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='freshersblog.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/79ea89e75267d267460088748c6883a9?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>freshersblog</title>
		<link>http://freshersblog.wordpress.com</link>
	</image>
			<item>
		<title>38 Interview Questions and Answers of ASP.NET</title>
		<link>http://freshersblog.wordpress.com/2009/10/21/38-interview-questions-and-answers-of-asp-net/</link>
		<comments>http://freshersblog.wordpress.com/2009/10/21/38-interview-questions-and-answers-of-asp-net/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 16:10:56 +0000</pubDate>
		<dc:creator>Common wealth games</dc:creator>
				<category><![CDATA[38 Interview Questions and Answers of ASP.NET]]></category>
		<category><![CDATA[Interview questions]]></category>

		<guid isPermaLink="false">http://freshersblog.wordpress.com/?p=57</guid>
		<description><![CDATA[38 Interview Questions and Answers of ASP.NET
1. Describe the role of inetinfo.exe, aspnet_isapi.dll and aspnet_wp.exe in the page loading process.
inetinfo.exe is theMicrosoft IIS server running, handling ASP.NET requests among other things.When an ASP.NET request is received (usually a file with .aspx extension),the ISAPI filter aspnet_isapi.dll takes care of it by passing the request to the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=freshersblog.wordpress.com&blog=5111083&post=57&subd=freshersblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>38 Interview Questions and Answers of ASP.NET<br />
1. Describe the role of inetinfo.exe, aspnet_isapi.dll and aspnet_wp.exe in the page loading process.<br />
inetinfo.exe is theMicrosoft IIS server running, handling ASP.NET requests among other things.When an ASP.NET request is received (usually a file with .aspx extension),the ISAPI filter aspnet_isapi.dll takes care of it by passing the request to the actual worker process aspnet_wp.exe.<br />
2. What’s the difference between Response.Write() and Response.Output.Write()?<br />
The latter one allows you to write formatted output.</p>
<p>3. What methods are fired during the page load?<br />
Init() &#8211; when the page is instantiated,<br />
Load() &#8211; when the page is loaded into server memory,<br />
PreRender() &#8211; the brief moment before the page is displayed to the user as HTML,<br />
Unload() &#8211; when page finishes loading.</p>
<p>4. Where does the Web page belong in the .NET Framework class hierarchy?<br />
System.Web.UI.Page</p>
<p>5. Where do you store the information about the user’s locale?<br />
System.Web.UI.Page.Culture</p>
<p>6. What’s the difference between Codebehind=&#8221;MyCode.aspx.cs&#8221; and Src=&#8221;MyCode.aspx.cs&#8221;?<br />
CodeBehind is relevant to Visual Studio.NET only.</p>
<p>7. What’s a bubbled event?<br />
When you have a complex control, like DataGrid, writing an event processing routine for each object (cell, button, row, etc.) is quite tedious. The controls can bubble up their eventhandlers, allowing the main DataGrid event handler to take care of its constituents.</p>
<p>8. Suppose you want a certain ASP.NET function executed on MouseOver overa certain button. Where do you add an event handler?<br />
It’s the Attributes property, the Add function inside that property. So btnSubmit.Attributes.Add(&#8220;onMouseOver&#8221;,&#8221;someClientCode();&#8221;)</p>
<p>9. What data type does the RangeValidator control support?<br />
Integer,String and Date.</p>
<p>10. Explain the differences between Server-side and Client-side code?<br />
Server-side code runs on the server. Client-side code runs in the clients’ browser.<br />
11. What type of code (server or client) is found in a Code-Behind class?<br />
Server-side code.<br />
12. Should validation (did the user enter a real date) occur server-side or client-side? Why?<br />
Client-side. This reduces an additional request to the server to validate the users input.<br />
13. What does the &#8220;EnableViewState&#8221; property do? Why would I want it on or off?<br />
It enables the viewstate on the page. It allows the page to save the users input on a form.<br />
14. What is the difference between Server.Transfer and Response.Redirect? Why would I choose one over the other?<br />
Server.Transfer is used to post a form to another page. Response.Redirect is used to redirect the user to another page or site.<br />
15. Can you explain the difference between an ADO.NET Dataset and an ADO Recordset?</p>
<p>· A DataSet can represent an entire relational database in memory, complete with tables, relations, and views.</p>
<p>· A DataSet is designed to work without any continuing connection to the original data source.</p>
<p>· Data in a DataSet is bulk-loaded, rather than being loaded on demand.</p>
<p>· There&#8217;s no concept of cursor types in a DataSet.</p>
<p>· DataSets have no current record pointer You can use For Each loops to move through the data.</p>
<p>· You can store many edits in a DataSet, and write them to the original data source in a single operation.</p>
<p>· Though the DataSet is universal, other objects in ADO.NET come in different versions for different data sources.</p>
<p>16. Can you give an example of what might be best suited to place in the Application_Start and Session_Start subroutines?<br />
This is where you can set the specific variables for the Application and Session objects.<br />
17. If I’m developing an application that must accommodate multiple security levels though secure login and my ASP.NET web application is spanned across three web-servers (using round-robin load balancing) what would be the best approach to maintain login-in state for the users?<br />
Maintain the login state security through a database.<br />
18. Can you explain what inheritance is and an example of when you might use it?<br />
When you want to inherit (use the functionality of) another class. Base Class Employee. A Manager class could be derived from the Employee base class.<br />
19. Whats an assembly?<br />
Assemblies are the building blocks of the .NET framework. Overview of assemblies from MSDN<br />
20. Describe the difference between inline and code behind.<br />
Inline code written along side the html in a page. Code-behind is code written in a separate file and referenced by the .aspx page.<br />
21. Explain what a diffgram is, and a good use for one?<br />
The DiffGram is one of the two XML formats that you can use to render DataSet object contents to XML. For reading database data to an XML file to be sent to a Web Service.<br />
22. Whats MSIL, and why should my developers need an appreciation of it if at all?<br />
MSIL is the Microsoft Intermediate Language. All .NET compatible languages will get converted to MSIL.<br />
23. Which method do you invoke on the DataAdapter control to load your generated dataset with data?<br />
The .Fill() method<br />
24. Can you edit data in the Repeater control?<br />
No, it just reads the information from its data source<br />
25. Which template must you provide, in order to display data in a Repeater control?<br />
ItemTemplate<br />
26. How can you provide an alternating color scheme in a Repeater control?<br />
Use the AlternatingItemTemplate<br />
27. What property must you set, and what method must you call in your code, in order to bind the data from some data source to the Repeater control?<br />
You must set the DataSource property and call the DataBind method.<br />
28. What base class do all Web Forms inherit from?<br />
The Page class.<br />
29. Name two properties common in every validation control?<br />
ControlToValidate property and Text property.<br />
30. What tags do you need to add within the asp:datagrid tags to bind columns manually?<br />
Set AutoGenerateColumns Property to false on the datagrid tag<br />
31. What tag do you use to add a hyperlink column to the DataGrid?<br />
&lt;asp:HyperLinkColumn&gt;<br />
32. What is the transport protocol you use to call a Web service?<br />
SOAP is the preferred protocol.</p>
<p>33. True or False: A Web service can only be written in .NET?<br />
False<br />
34. What does WSDL stand for?<br />
(Web Services Description Language)<br />
35. Which property on a Combo Box do you set with a column name, prior to setting the DataSource, to display data in the combo box?<br />
DataTextField property</p>
<p>36. Which control would you use if you needed to make sure the values in two different controls matched?<br />
CompareValidator Control<br />
37. True or False: To test a Web service you must create a windows application or Web application to consume this service?<br />
False, the webservice comes with a test page and it provides HTTP-GET method to test.<br />
38. How many classes can a single .NET DLL contain?<br />
It can contain many classes.</p>
<p>Series 2</p>
<p>1.Explain the .NET architecture.<br />
2.How many languages .NET is supporting now?<br />
- When .NET was introduced it came with several languages. VB.NET, C#, COBOL and Perl, etc. The site DotNetLanguages.Net says 44 languages are supported.<br />
3.How is .NET able to support multiple languages?<br />
- a language should comply with the Common Language Runtime standard to become a .NET language. In .NET, code is compiled to Microsoft Intermediate Language (MSIL for short). This is called as Managed Code. This Managed code is run in .NET environment. So after compilation to this IL the language is not a barrier. A code can call or use a function written in another language.<br />
4.How ASP .NET different from ASP?<br />
- Scripting is separated from the HTML, Code is compiled as a DLL, these DLLs can be executed on the server.<br />
5.Resource Files: How to use the resource files, how to know which language to use?<br />
6.What is smart navigation?<br />
- The cursor position is maintained when the page gets refreshed due to the server side validation and the page gets refreshed.<br />
7.What is view state?<br />
- The web is stateless. But in ASP.NET, the state of a page is maintained in the in the page itself automatically. How? The values are encrypted and saved in hidden controls. this is done automatically by the ASP.NET. This can be switched off / on for a single control<br />
8.Explain the life cycle of an ASP .NET page.9.How do you validate the controls in an ASP .NET page?<br />
- Using special validation controls that are meant for this. We have Range Validator, Email Validator.<br />
10.Can the validation be done in the server side? Or this can be done only in the Client side?<br />
- Client side is done by default. Server side validation is also possible. We can switch off the client side and server side can be done.<br />
11.How to manage pagination in a page?<br />
- Using pagination option in DataGrid control. We have to set the number of records for a page, then it takes care of pagination by itself.<br />
12.What is ADO .NET and what is difference between ADO and ADO.NET?<br />
- ADO.NET is stateless mechanism. I can treat the ADO.Net as a separate in-memory database where in I can use relationships between the tables and select insert and updates to the database. I can update the actual database as a batch.<br />
Posted in: Interview Questions asp.net | Tags: interview questions and answers questions interview answers q&amp;a .net c# c sharp asp.net rangevalidator codebehind culture page load aspnet_isapi aspnet_wp.exe</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/freshersblog.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/freshersblog.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/freshersblog.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/freshersblog.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/freshersblog.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/freshersblog.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/freshersblog.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/freshersblog.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/freshersblog.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/freshersblog.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=freshersblog.wordpress.com&blog=5111083&post=57&subd=freshersblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://freshersblog.wordpress.com/2009/10/21/38-interview-questions-and-answers-of-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Common wealth games</media:title>
		</media:content>
	</item>
		<item>
		<title>Principles of management</title>
		<link>http://freshersblog.wordpress.com/2009/09/17/principles-of-management/</link>
		<comments>http://freshersblog.wordpress.com/2009/09/17/principles-of-management/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 19:37:42 +0000</pubDate>
		<dc:creator>Common wealth games</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://freshersblog.wordpress.com/?p=43</guid>
		<description><![CDATA[PRINCIPLES-OF-MANAGEMENT
PRINCIPLES-OF-MANAGEMENT
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=freshersblog.wordpress.com&blog=5111083&post=43&subd=freshersblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://freshersblog.files.wordpress.com/2009/09/513095-principles-of-management.ppt">PRINCIPLES-OF-MANAGEMENT</a></p>
<p><a href="http://freshersblog.files.wordpress.com/2009/09/513095-principles-of-management.ppt">PRINCIPLES-OF-MANAGEMENT</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/freshersblog.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/freshersblog.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/freshersblog.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/freshersblog.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/freshersblog.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/freshersblog.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/freshersblog.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/freshersblog.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/freshersblog.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/freshersblog.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=freshersblog.wordpress.com&blog=5111083&post=43&subd=freshersblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://freshersblog.wordpress.com/2009/09/17/principles-of-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Common wealth games</media:title>
		</media:content>
	</item>
		<item>
		<title>BSNL JTO 2009 SOLUTIONS FROM FRESHERSBLOGe</title>
		<link>http://freshersblog.wordpress.com/2009/06/25/bsnl-jto-2009-solutions-from-freshersblog/</link>
		<comments>http://freshersblog.wordpress.com/2009/06/25/bsnl-jto-2009-solutions-from-freshersblog/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 14:22:09 +0000</pubDate>
		<dc:creator>Common wealth games</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://freshersblog.wordpress.com/?p=30</guid>
		<description><![CDATA[CLICK here FOR BSNL JTO 2009
 SOLUTIONS
 
 
 
 
 




CLICK here FOR BSNL JTO 2009 SOLUTIONS 
CLICK here FOR BSNL JTO 2009 SOLUTIONS 
CLICK here FOR BSNL JTO 2009 SOLUTIONS 
CLICK here FOR BSNL JTO 2009 SOLUTIONS 
CLICK here FOR BSNL JTO 2009 SOLUTIONS 
CLICK here FOR BSNL JTO 2009 SOLUTIONS








Free coaching  for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=freshersblog.wordpress.com&blog=5111083&post=30&subd=freshersblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h1><span style="color:#ff0000;"><a title="indianengineers" href="http://www.geocities.com/simplisweetboy/BSNL_09_TC.doc" target="_blank">CLICK here FOR BSNL JTO 2009</a></span></h1>
<h1><span style="color:#ff0000;"><a title="indianengineers" href="http://www.geocities.com/simplisweetboy/BSNL_09_TC.doc" target="_blank"> SOLUTIONS</a></span></h1>
<p><span style="color:#ff0000;"><a title="indianengineers" href="http://www.geocities.com/simplisweetboy/BSNL_09_TC.doc" target="_blank"></a></span><strong> </strong></p>
<h1><strong> </strong></h1>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td align="left" valign="top">
<h2><a href="http://www.geocities.com/simplisweetboy/BSNL_09_TC.doc" target="_blank"><strong><strong>CLICK here FOR BSNL JTO 2009 SOLUTIONS </strong></strong></a></h2>
<h2><a href="http://www.geocities.com/simplisweetboy/BSNL_09_TC.doc" target="_blank"><strong><strong>CLICK here FOR BSNL JTO 2009 SOLUTIONS </strong></strong></a></h2>
<h2><a href="http://www.geocities.com/simplisweetboy/BSNL_09_TC.doc" target="_blank"><strong><strong>CLICK here FOR BSNL JTO 2009 SOLUTIONS </strong></strong></a></h2>
<h2><a href="http://www.geocities.com/simplisweetboy/BSNL_09_TC.doc" target="_blank"><strong><strong>CLICK here FOR BSNL JTO 2009 SOLUTIONS </strong></strong></a></h2>
<h2><a href="http://www.geocities.com/simplisweetboy/BSNL_09_TC.doc" target="_blank"><strong><strong>CLICK here FOR BSNL JTO 2009 SOLUTIONS </strong></strong></a></h2>
<h2><a href="http://www.geocities.com/simplisweetboy/BSNL_09_TC.doc" target="_blank"><strong><strong>CLICK here FOR BSNL JTO 2009 SOLUTIONS</strong></strong></a></h2>
</td>
</tr>
</tbody>
</table>
<table style="height:56px;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td height="56" align="left" valign="top">
<h1><strong>Free coaching  for IES, GATE,PSU,s   call 9718246286</strong><strong> for more details or</strong></h1>
<p align="center"><strong> log on to freshersblog.wordpress.com or   indianengineers.tk<img class="aligncenter size-full wp-image-31" title="GS-Answer-08" src="http://freshersblog.files.wordpress.com/2009/06/gs-answer-08.jpg?w=450&#038;h=597" alt="GS-Answer-08" width="450" height="597" /></strong></p>
</td>
</tr>
</tbody>
</table>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/freshersblog.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/freshersblog.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/freshersblog.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/freshersblog.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/freshersblog.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/freshersblog.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/freshersblog.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/freshersblog.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/freshersblog.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/freshersblog.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=freshersblog.wordpress.com&blog=5111083&post=30&subd=freshersblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://freshersblog.wordpress.com/2009/06/25/bsnl-jto-2009-solutions-from-freshersblog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Common wealth games</media:title>
		</media:content>

		<media:content url="http://freshersblog.files.wordpress.com/2009/06/gs-answer-08.jpg" medium="image">
			<media:title type="html">GS-Answer-08</media:title>
		</media:content>
	</item>
		<item>
		<title>BEL placement paper</title>
		<link>http://freshersblog.wordpress.com/2008/11/05/bel-placement-paper/</link>
		<comments>http://freshersblog.wordpress.com/2008/11/05/bel-placement-paper/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 19:32:35 +0000</pubDate>
		<dc:creator>Common wealth games</dc:creator>
				<category><![CDATA[BEL]]></category>
		<category><![CDATA[placement paper]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[Bel placemet paper]]></category>

		<guid isPermaLink="false">http://freshersblog.wordpress.com/?p=20</guid>
		<description><![CDATA[
 BEL PAPER ON 19th SEPTEMBER 2008
Hello friends, i&#8217;m Vikash Kimothi from College of Technology, PANTNAGAR, BEL visited my college on 19th-20th sept&#8217;08 for recruitment. Their selection procedure consist of 2 stages &#8212;&#8211; written(technical) and interview. THey have differnt written paper for electronics, computer &#38; mechanical engg cadidates.I&#8217;m from ECE and the wriitten test consists [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=freshersblog.wordpress.com&blog=5111083&post=20&subd=freshersblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><!--[if gte mso 9]&gt;  Normal 0       MicrosoftInternetExplorer4  &lt;![endif]--><!--[if !mso]&gt;--><br />
<strong> BEL PAPER ON 19th SEPTEMBER 2008</strong></p>
<p>Hello <a href="http://freshersworld.com/placementweek/showpaper.asp?cid=123&amp;pid=12673&amp;pgcount=1&amp;prio=1" target="undefined"><span class="klink"><span style="font-size:9pt;">friends</span></span></a>, i&#8217;m Vikash Kimothi from College of Technology, PANTNAGAR, BEL visited my <a href="http://freshersworld.com/placementweek/showpaper.asp?cid=123&amp;pid=12673&amp;pgcount=1&amp;prio=1" target="undefined"><span class="klink"><span style="font-size:9pt;">college</span></span></a> on 19th-20th sept&#8217;08 for recruitment. Their selection procedure consist of 2 stages &#8212;&#8211; written(technical) and interview. THey have differnt written paper for electronics, <a href="http://freshersworld.com/placementweek/showpaper.asp?cid=123&amp;pid=12673&amp;pgcount=1&amp;prio=1" target="undefined"><span class="klink"><span style="font-size:9pt;">computer</span></span></a> &amp; mechanical engg cadidates.I&#8217;m from ECE and the wriitten test consists of general questions most of them from communication &amp; digital logic families. The cut-off for the written examination was 30%. After clearing the written i face the  interview. Interview panel comprise of 5 members from electronics, computer, mechanical &amp; HRD field. MOst of the question asked in the interview were simple like some electronics principles and their <a href="http://freshersworld.com/placementweek/showpaper.asp?cid=123&amp;pid=12673&amp;pgcount=1&amp;prio=1" target="undefined"><span class="klink"><span style="font-size:9pt;">applications</span></span></a>.</p>
<p>They ask mainly questions from communication&#8211;analog &amp; digital and also ask for the principle/working of some <a href="http://freshersworld.com/placementweek/showpaper.asp?cid=123&amp;pid=12673&amp;pgcount=1&amp;prio=1" target="undefined"><span class="klink"><span style="font-size:9pt;">equipment</span></span></a> like CFL, electronic fan regulators, DTH service/satellite tv, <a href="http://freshersworld.com/placementweek/showpaper.asp?cid=123&amp;pid=12673&amp;pgcount=1&amp;prio=1" target="undefined"><span class="klink"><span style="font-size:9pt;">mobile phone</span></span></a>, IP tv etc&#8230;</p>
<p>Here i have given some of the questions of the written paper(ECE)&#8230; The paper consist of two sections &#8212;-40 objective &amp; 10 true false questions. The cut-off as told by them 30% but they may have increase this limit. in my college only 8 out of 21 cleared the paper(for ECE branch)</p>
<p><strong>Part I&#8212;Objective questions </strong>(40 with 1.5 marks each) with 50% -ve marking</p>
<p>1. Numerical problem based on modulation index fc, fm&#8230;&#8230;&#8230;. (formula based direct queston).<br />
2.Poles &amp; zeroes are at .01,1,20,100&#8230;&#8230;  find phase margin/angle at f=50Hz.       ans -90(By drawing bode plot)<br />
3.In n-type enhancement mode MOSFET drain current&#8212;&#8212;&#8212;&#8211; options are- increase/decrease with inc/dec in drain/gate voltage.  ans(d)<br />
4. Gain of an directional antenna 6db P=1mw find transmitted power&#8230;&#8230;&#8230;(use Ptr= G * P.)<br />
5.Multiplication of two nos 10101010 &amp;  10010011 in 2&#8217;s complement form..<br />
6.A ckt is given suppplied with 15v with a series of resistance of 1k and a parallel combination of 12V zener diode and 2k resistance. FInd current through 2k resistance.      ans: 6mA<br />
7.A MP has 16 line data bus &amp; 12 line addr bus find memory range&#8230;&#8230;&#8230;.Ans..4K(4*1024bytes)<br />
8.Divide by 12 counter require minimum &#8230;.. no of flip flops         Ans. 4<br />
9.Storage time in p-n junction.<br />
10.Succesive approx. use in &#8230;.         Ans ADC(analog to digital)<br />
11.Pre-emphasis require in &#8230;&#8230;&#8230; low freq/high freq signal.<br />
12.Handshake in MP &#8230;&#8230;&#8230;..  Ans to communicate with slower peripherals.<br />
13. Binary equivalent of 0.0625      Ans. 0.0001<br />
14.Which code is self complement of itself<br />
15.Excess three code of an given binary no.<br />
16.When we add 6 in BCD operations&#8230;&#8230;.  Ans. if result exceed valid BCD nos.<br />
17.Shottky diode has better switching capability because it switch between&#8230;&#8230;.<br />
18.Figure of Merit is same as&#8230;&#8230;<br />
19.Swithcing in diode happens when&#8230;.<br />
20.During forward bias majority charge conc. in depletion layers inc/decrease&#8230;..<br />
21.Channel capacity depend on&#8230;&#8230;.    Ans. Usable frequency or bandwidth<br />
22.A 2kHz signal is passed through an Low pass filter having cut-off freq 800Hz o/p will be<br />
23. Carrier amplitude 1v,  peak to peak message signal 3mv find modulation index.<br />
24.A 12V signal is quantized into two V/14 &amp; 6 equal V/7 determine quantization error.</p>
<p><strong>Part II True &amp; false&#8230;..</strong>.(10 1 mark each) with 50% -ve marking<br />
1.Power dissipation in ECL is minimum&#8230;&#8230;&#8230;. False<br />
2.Fourier Transform of a symmetric conjugate function is always real &#8230;. True<br />
3.Divide by 12 counter requires a minimum of 4 flip flops&#8230;&#8230;.True<br />
4.Boron can be use as impurity to analyse base of a npn transistor&#8230;&#8230;.True</p>
<p>ALL THE BEST&#8230;..</p>
<p class="MsoNormal">BEL PAPER ON-13th MAY</p>
<p>Hi friends, i had given BEL paper on may-13,2007<br />
in which 150 ques u&#8217;ve to do&#8230;out of which 30 were of apti &amp;120 technicalapti 9 ( tough as compared to ISRO)<br />
question from analog electronics, digital electronics, network, F &amp; W, signal , Control etc&#8230;&#8230;..</p>
<p class="MsoNormal">1)  in analog question based on zener diode</p>
<p>2) coupling capacitors and bypass capacitors affect</p>
<p>3) 1,8,27,64,125, &#8230;&#8230;&#8230;.,&#8230;&#8230;.<br />
which among the following will not come in the series<br />
a.1000,  b.729   c.259</p>
<p>4) which of the following game uses bulley<br />
a.football  b.cricket   c.goalf..  d.hockey</p>
<p>5) a zener diode works on the principle of</p>
<p>6)under the high electric field,in a semiconductor with increasing electric field</p>
<p>7)in an 8085,microprocessor system with memory mapped I/O</p>
<p>8)built-in potential in a p-n jn.-</p>
<p>9)the breakdown voltage of a transitor with its base open is BV(ceo) and that with emitter open BV(cbo) then</p>
<p>10) ques based on half adder</p>
<p>11) based on flip flop</p>
<p>12) block diagram reduction</p>
<p>13) to find max overshoot (2 ques based on it)</p>
<p class="MsoNormal">
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/freshersblog.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/freshersblog.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/freshersblog.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/freshersblog.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/freshersblog.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/freshersblog.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/freshersblog.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/freshersblog.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/freshersblog.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/freshersblog.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=freshersblog.wordpress.com&blog=5111083&post=20&subd=freshersblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://freshersblog.wordpress.com/2008/11/05/bel-placement-paper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Common wealth games</media:title>
		</media:content>
	</item>
		<item>
		<title>HAL placement paper exam questions</title>
		<link>http://freshersblog.wordpress.com/2008/11/05/hal-placement-paper-exam-questions/</link>
		<comments>http://freshersblog.wordpress.com/2008/11/05/hal-placement-paper-exam-questions/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 19:28:20 +0000</pubDate>
		<dc:creator>Common wealth games</dc:creator>
				<category><![CDATA[HAL]]></category>
		<category><![CDATA[placement paper]]></category>
		<category><![CDATA[HAL placement paper]]></category>

		<guid isPermaLink="false">http://freshersblog.wordpress.com/?p=17</guid>
		<description><![CDATA[
  Normal
  0
  MicrosoftInternetExplorer4

st1\:*{behavior:url(#ieooui) }

 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:&#8221;Table Normal&#8221;;
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-parent:&#8221;";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin:0in;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:&#8221;Times New Roman&#8221;;}
&#160;
Technical:
1. what is used for heat dissipation in ICs
2. for an amplifier, given IC(dc) and IC(ac)(p) for a 1k load calculate avg dc
power dissipated.
3. given hfe calculate hfc. 
4. given ICBO,ICO and α calc ICEO. 
5. for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=freshersblog.wordpress.com&blog=5111083&post=17&subd=freshersblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><!--[if gte mso 9]&gt;--></p>
<p>  Normal<br />
  0</p>
<p>  MicrosoftInternetExplorer4</p>
<p><!--[if !mso]&gt;--></p>
<p>st1\:*{behavior:url(#ieooui) }</p>
<p><!--[if gte mso 10]&gt;--></p>
<p> /* Style Definitions */<br />
 table.MsoNormalTable<br />
	{mso-style-name:&#8221;Table Normal&#8221;;<br />
	mso-tstyle-rowband-size:0;<br />
	mso-tstyle-colband-size:0;<br />
	mso-style-noshow:yes;<br />
	mso-style-parent:&#8221;";<br />
	mso-padding-alt:0in 5.4pt 0in 5.4pt;<br />
	mso-para-margin:0in;<br />
	mso-para-margin-bottom:.0001pt;<br />
	mso-pagination:widow-orphan;<br />
	font-size:10.0pt;<br />
	font-family:&#8221;Times New Roman&#8221;;}</p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;"><b>Technical:<br />
</b>1. what is used for heat dissipation in <a href="http://freshersworld.com/placementweek/showpaper.asp?cid=125&amp;pid=12530&amp;pgcount=1&amp;prio=2" target="undefined"><span class="klink"><span style="font-size:9pt;">ICs</span></span></a><br />
2. for an amplifier, given IC(dc) and IC(ac)(p) for a 1k load calculate avg dc<br />
power dissipated.<br />
3. given hfe calculate hfc. </p>
<p>4. given ICBO,ICO and α calc ICEO. </p>
<p>5. for common collector configuration o/p current is IE/IC/IB/..<br />
6. which configuration amongst CC/CE/CB gives no current gain.<br />
7. SiC is which group compound<br />
8. pipelining is implemented in RISC/CISC/…<br />
9. given transmitted power and modulation % for AM calc avg sideband power.<br />
10. spectrum of sinewave contains how many components.<br />
11. which of the following signals supports snoopy cache protocol arbitration<br />
signal/cache support signal/…<br />
12. for an n-bit multiplicand and multiplier the booth,s algorithm generates<br />
how many bit product.<br />
13. which window achieves smaller sidelobe width at the cost of greater<br />
mainlobe twidth hamming/hanning/Blackman/Kaiser&nbsp;</p>
<p style="margin:0 0 .0001pt;">14. a highpass RC filter behaves as<br />
pure differentiator when ωτ&lt;&lt;1/ωτ&gt;&gt;1/…<br />
15. what is the lowest atomic concentration that can be measured using SIMS<br />
boron concentration method. </p>
<p>16. what type of bond is present in Si and Ge. </p>
<p>17. dynamic characteristics of capacitive transducers are similar when used as<br />
HPF/LPF/… </p>
<p>18. what is used as switching element in SMPS at 20-100 kHz<br />
UJT/thyristor/triac/MOSFET.<br />
19. how can CMRR be increased-by increasing source resistance/emitter<br />
resistance/collector resistance/..<br />
20. avg value of a HWR current signal of peak value Im.<br />
21. given 3 dB bandwidth and resonance freq of an RLC ckt calc its Q.<br />
22. how many tokens are present in C- 0/1/2/3.<br />
23. for a stretch of code as int a;a=5/2; what will be the value stored in a.<br />
24. what does the statement volatile int a mean in C.<br />
25. ASCII code of Z.<br />
26. for a stretch of code as char a =252;a=a+5; what is the value stored in a.<br />
27. one problem on binary to hexadecimal conversion.<br />
28. 212 address lines address how much memory.<br />
29. 220 address lines address how much memory 2G/2M/…<br />
30. another name for single transfer mode in direct transfer.<br />
31. what signal used for DMA in 8085.<br />
32. sequence of instruction cycles for PUSH B.<br />
33. what are the various steps in one machine cycle of 8085.<br />
34. response time of PIN diode.<br />
35. range of current signal in RS232 serial transfer mode.<br />
36. when an electron is injected into a circular conductor surrounded by an<br />
insulator what will happen- it will distribute uniformly/move to the surface/…<br />
37. for a solenoid with end A connected to +ve terminal and end B to –ve<br />
terminal what will happen end A will be north pole/end B will be north<br />
pole/both will alternately be north poles/it won’t behave as a magnet.<br />
38. what is the value stored in an un-initialized static variable in C.<br />
39. what transistor is used in VLSI.<br />
40. number of gates used in GSI.<br />
41 supply voltage in HTL logic.<br />
42. given a K-map,obtain a simplified SOP form.<br />
43. 2’s complement of –ve 1011.<br />
44. 2’s complement of another binary number.<br />
45. why are synchronous ckts difficult to design –they have fast response/they<br />
have stability problem/…<br />
46. given 4 equations identify which conforms to Boolean algebra laws.<br />
47. when lower byte is used to address MSW what is it called big endian/little<br />
endian/…<br />
48. a 6 V peak sine wave is given to one of the <a href="http://freshersworld.com/placementweek/showpaper.asp?cid=125&amp;pid=12530&amp;pgcount=1&amp;prio=2" target="undefined"><span class="klink"><span style="font-size:9pt;">inverters</span></span></a><br />
of a 7414. after what value will the o/p change from high to low.<br />
49. given two sequences,calc their product.<br />
50. given two sequences find their convolution.<br />
51. find the ROC of a right sided exponential sequence.<br />
52. the property x(t)*h(t)=h(t)*x(t) is called commutative/associative/distributive/…<br />
53. given the sequence y(n)=5cos[4πn/31 + π/5] find the fundamental period of<br />
it.<br />
54. in what type of control is hysteresis present -P/I/D/on-off.<br />
55. given mmf and reluctance, calc flux.<br />
56. max no of peripherals that can be connected to 8085 through a PIC.<br />
57. why is class B modulation preferred to class C modulation.<br />
58. given a telemetry channel in which a 4 kHz bandwidth signal is carried by<br />
two carriers of 36kHz and 48 kHz calc the freq bands occupied. </p>
<p>59. LVDT is a electrostatic/electrical/electromagnetic/electromechanical<br />
device.<br />
60. order of resistance of shunt coil used in Q-meters.<br />
61. what are the minority carriers in an n-type material.<br />
62. the band formed when energy associates combine with valence electrons is…<br />
63. depletion region width can be increased by…<br />
64. minority carrier concentration depends on applied fwd voltae/applied<br />
reverse voltage/doping level/…<br />
65. numerical on calc of drift velocity of an electron.<br />
66. maxm power consumption occurs in electrostatic/hotwire/induction/moving<br />
iron instrument.<br />
67. for a collector modulated AM ckt given values of L &amp; C of the tuning<br />
ckt and the message signal freq calculate the freq spectrum of the AM wave.<br />
68. upon which of the following plots can the Nyquist plot be mapped-bode/root<br />
locus/polar/inverse polar.<br />
69. which of the following compensators increases the damping factor-phase<br />
lead/phase lag/phase lag-lead/phase lead-lag.<br />
70. for regenerative feedback having fwd path gain G(s) and f/b path gain H(s)<br />
calc the transfer function.<br />
71. which is true about the wagner earthing device-it reduces waveform<br />
errors/introduces high accuracy in measurement/does not affect AC<br />
bridges/changes the freq of measurement.<br />
72. &nbsp;a 2nd order LTI system acts as which of the following-HPF/LPF/BPF/..<br />
73. which of the following adds linearly-Ls in series/Cs in series/Rs in<br />
parallel/..<br />
74. relation between mobility and diffusion constant.<br />
75. at 308K value of Eg for Si.<br />
76. what indicates the efficiency of <a href="http://freshersworld.com/placementweek/showpaper.asp?cid=125&amp;pid=12530&amp;pgcount=1&amp;prio=2" target="undefined"><span class="klink"><span style="font-size:9pt;">transport</span></span></a><br />
of electrons injected from the emitter into the collector by the base-base<br />
transport factor/base injection factor/…<br />
77. error detection can be achieved by potentiometer/amplidyne/armature<br />
controlled/field controlled AC motor.<br />
78. which of the following can act as an input to an AC<br />
bridge-RPS/oscillator/amplifier/…<br />
79. if some i/p voltages are to be added without changing their values in an<br />
op-amp having f/b resistance as 1k, the i/p resistances should be.. </p>
<p>80. given ρ,l and d for a copper wire,calc its resistance.<br />
81. if the length of a wire is increased what happens to its<br />
resistance-increases linearly/increases exponentially/…<br />
82. for a current carrying coil if the current is doubled then the field<br />
strength is doubled/halved/increased 4 times/..<br />
83. some value of L and C is connected to a 150V,60Hz source. What value of<br />
inductor will make the same current lag behind the same voltage with the same<br />
capacitor.<br />
84. loss due to dielectric distortion ina capacitor is called…<br />
85. for an ideal MOS capacitor if the gate voltage is less than 0 it behaves in<br />
what mode..<br />
86. given a ckt with a parallel combination of a 1 F capacitor and a (1Ω<br />
resistor and 0.5H inductor in series) excited by a source of value cos t, calc<br />
the current given by the source.<br />
87. anti-side tone ckts are used in telephones to introduce/eliminate/attenuate<br />
sidebands.<br />
88. in a radio receiver noise occurs in the mixer/oscillator/amplifier/…<br />
stages.<br />
89. for a 4k RAM with starting address 4000H the last address will be…<br />
90. RST 5.5 is vectored to which address<br />
91. among RST 5.5/6.5/7.5 which is serviced last.<br />
92. a capacitor of some value is charged thru a resistor of some value and a 6<br />
V battery. Calc the time taken by the capacitor to charge to its maxm value.<br />
93. given an eqn for FM, identify the carrier freq.<br />
94. how many invalid states are present in a mod-6 <a href="http://freshersworld.com/placementweek/showpaper.asp?cid=125&amp;pid=12530&amp;pgcount=1&amp;prio=2" target="undefined"><span class="klink"><span style="font-size:9pt;">counter</span></span></a>.<br />
95. when ckts are connected in tandem which method is easier to analyze them-h<br />
parameters/OC impedance parameters/transmission parameters/SC admittance<br />
parameters.<br />
96. from a 75 MHz counter what is the value of the smallest time period of the<br />
signal that can be obtained.<br />
97. Cgd for a FET in the small signal low freq model is in the range of…<br />
98. kirchoff’s law is not applicable to which of the following<br />
ckts-nonlinear/dual/linear/distributed parameter.<br />
99. why is a diac preferred to turn on a triac-for slower turn-on/faster<br />
turn-off/better stability/…<br />
100. resistance of the epitaxial layer depends on…<br />
101. which of these is an active transducer-photoconductive/photovoltaic<br />
cell/selsyn/…<br />
102. DC blocking in a transistor is achieved by…..<br />
103. what current is drawn by a 10 W lamp connected to a 220 V,60 Hz source.<br />
104. noise margin of CMOS is 0/infinite/high/medium…<br />
105. schotky barriers are frequently used as…..<br />
106. octave freq range is represented by….<br />
107. i/p impedance of a <a href="http://freshersworld.com/placementweek/showpaper.asp?cid=125&amp;pid=12530&amp;pgcount=1&amp;prio=2" target="undefined"><span class="klink"><span style="font-size:9pt;">digital<br />
instrument</span></span></a> is of the order of….<br />
108. what is the time taken to multiply a 14 bit no. with a 1 MHz <a href="http://freshersworld.com/placementweek/showpaper.asp?cid=125&amp;pid=12530&amp;pgcount=1&amp;prio=2" target="undefined"><span class="klink"><span style="font-size:9pt;">clock</span></span></a>.<br />
109. parity error checking identifies error occurring in 1 bit/2/3/4 bits only.<br />
110. when RESET IN(active low) is affected in an 8085 what happens.<br />
111. how many times will a for loop going from 20 to 100 in steps of 10 be<br />
executed.<br />
112. if the control statement is made outside the body of a function in C what<br />
is it called.<br />
113. which of the following can be a variable in C-8ab/total<br />
salary/gross_salary_2008/net__income__2008.<br />
114. if the units of both current and voltage are increased 20 times of their<br />
present value how will the units of capacitance change. </p>
<p>115. what type of non-linearity is present in a servomotor-backlash/coulomb<br />
friction/dead space/…<br />
116. given the i/p signals to a differential amplifier calc its o/p voltage. </p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;"><b>Aptitude: &nbsp;</b></p>
<p style="margin:0 0 .0001pt;">There were 36 questions in this<br />
section, about 12 questions each in verbal,quant and GK. some of the GK<br />
questions were: </p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;">Author of “the great Indian story”.
</p>
<p style="margin:0 0 .0001pt;">Author of ”making globalization<br />
work”. </p>
<p style="margin:0 0 .0001pt;">Captain of the 2006 world cup<br />
winning&nbsp; italian football team. </p>
<p style="margin:0 0 .0001pt;">Full form of the acronym CITES. </p>
<p style="margin:0 0 .0001pt;">Period of the fourth five-year<br />
plan. </p>
<p style="margin:0 0 .0001pt;">In which year did the turks conquer<br />
Constantinople . </p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p class="MsoNormal" style="margin-left:.25in;">Some of the questions asked are given below for your<br />
reference. <br />
1. In which place there are No snakes?<br />
Ireland and<br />
also Hawai island. <br />
2.In a class there are 35 students in which its average is 35kg, if we add ten<br />
more students in &nbsp;&nbsp;&nbsp;that class their average becomes 39kg.<br />
What’s the average of new ten students? 53kg.<br />
3. She swam ­___ Cauvery river ___ <a href="http://freshersworld.com/placementweek/showpaper.asp?cid=125&amp;pid=12888&amp;pgcount=1&amp;prio=13" target="undefined"><span class="klink"><span style="font-size:9pt;font-family:Verdana;">India</span></span></a> and Srilanka.<br />
Across and between&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />
4. How much months will be allowed for a women employee to take leave on<br />
Maternity&nbsp;period? 26 weeks.<br />
5. If&nbsp; “A” sells an article to “B” in the profit of 20% and “B” sells the<br />
same article with loss of 10% to “C” and gets rs.216. What is the cost of that<br />
article? 200<br />
6. 8900 is divided to the share profit to 3 persons X, Y and Z with less rs.30,<br />
rs.20, rs.50 respectively. If the ratio is divided to 2:3:5 respectively. How<br />
much is the share for Y?<br />
7.Two alloys Copper and steel is in the ratio of 5:7 and 4:5 respectively. If<br />
it melts to ________________________ in the equal ratio. Percentage?<br />
8.Second highest Muslim population in which country?</p>
<table class="MsoNormalTable" border="1" cellpadding="0">
<tbody>
<tr>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:center;" align="center">&nbsp;&nbsp;&nbsp;&nbsp; Country</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:center;" align="center">Population</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:center;" align="center">Percentage of Muslims</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:center;" align="center">Muslim Population</p>
</td>
</tr>
<tr>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:center;" align="center">Indonesia</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">231,328,092</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">88.0%</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">203,568,721</p>
</td>
</tr>
<tr>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:center;" align="center">Pakistan</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">147,663,429</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">97.0%</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">143,233,526</p>
</td>
</tr>
<tr>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:center;" align="center">India</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">1,045,845,226</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">12.0%</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">125,501,427</p>
</td>
</tr>
<tr>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:center;" align="center">Bangladesh</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">133,376,684</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">83.0%</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">110,702,648</p>
</td>
</tr>
<tr>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:center;" align="center">Turkey</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">67,308,928</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">99.8%</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">67,174,310</p>
</td>
</tr>
<tr>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:center;" align="center">Egypt</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">70,712,345</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">94.0%</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">66,469,604</p>
</td>
</tr>
<tr>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:center;" align="center">Iran</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">66,622,704</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">99.0%</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">65,956,477</p>
</td>
</tr>
<tr>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:center;" align="center">Nigeria</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">129,934,911</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">50.0%</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">64,967,456</p>
</td>
</tr>
<tr>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:center;" align="center">Ethiopia</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">67,673,031</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">47.5%</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">32,144,690</p>
</td>
</tr>
<tr>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:center;" align="center">Morocco</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">31,167,783</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">98.7%</p>
</td>
<td style="padding:.75pt;">
<p class="MsoNormal" style="text-align:right;" align="right">30,762,602</p>
</td>
</tr>
</tbody>
</table>
<p class="MsoNormal">&nbsp;9.<br />
Praveen runs 125m or 25 seconds lead in 1000m race. Though he lost with Naveen<br />
in just a distance. How much time Praveen takes to cover the distance?<br />
200seconds</p>
<p>&nbsp;HAL PAPER ON 3rd NOVEMBER AT NEW DELHI
</p>
<p>Hi good morning to all of u. I am from ELECTRICAL I am ag. on 3rd august i<br />
attended the HAL exam. thats very very easy.Just they are concentrating on only<br />
3 to 4 subjects. If u are red those subjects then u will be luckiest fellow.<br />
but what i know from the exam is they are mainly concentrating on particularly<br />
one subject i.e. DC Machines.&nbsp;</p>
<p>On 3rd they asked three subjects i.e. DC Mchines, Networks, Measurements and<br />
Instrumentaion.<br />
Total Q paper contains 160 bits. out of 160 </p>
<p>20-bits&nbsp; English&nbsp; -&nbsp; average<br />
20-bits&nbsp; Aptitude and G.K &#8211; average<br />
40-50 bits DC Machines &#8211; easy<br />
20-30 bits Networks<br />
20-30 bits M&amp;I<br />
5-10&nbsp;bits are from trnasformer and remainning from 5 from PS 10 from<br />
remaining Machine. </p>
<p>All these bits are easy but these some calculations. so please friends<br />
whatever u know that only first u attempt in that u will get more marks.<br />
For us this is ONLINE. </p>
<p>In my point of view exam was easy. I had written very well also.<br />
now this is ur turn to prepare.<br />
ALL THE BEST FRIENDS</p>
<p>Hi every body&#8230;today i gave HAL written test in hyderbad in ELECTRONICS<br />
branch there are 145 technical questions and 15 general studies the very very<br />
very very very important thing for those who apearing for HAL exam in<br />
electronics is they are given most of the questions from DC MECHINES nearly 50<br />
quetions from that subject today i was shocked to see ques&#8217;s from that<br />
subject,so pls concentrate more on dc mechines.</p>
<p>mostly they are given questions from these subjects<br />
1.dc mechines(about 50)<br />
2.Networks(20)<br />
3.instruments(5)<br />
4.digital electronics(30)<br />
5.EDC &amp; analog electronics (8)<br />
6.control systems(2)<br />
7.antenas,satillite commincation(5)<br />
8.communications(10)<br />
the paper is very hard i dont expect they will give question patern like this<br />
so plz concentrate more on mechines<br />
some of questions i feel easy and i remember are&nbsp;<br />
1.what is weight of 5rupee coin??<br />
2.who is below never&nbsp;a cheif justice of india&nbsp;?<br />
3.what is largest ISRO company in india?<br />
4.who is player took 10 wikts in one test innings ?<br />
(in the list anil kumble not given)&nbsp; </p>
<p><b>techinical que&#8217;s:<br />
</b>1.binary number&nbsp;for 1001.1101?<br />
2.decimal number for 19?<br />
3.excess-3 code for 29?<br />
4.speed-torque characterictics of dc motor?<br />
(some figures given)<br />
5.quantization noise occurs in??(repeated question 2 times given)<br />
6.schering brige method used for measuring of??<br />
7.prom based on networks are very very easy every body can ans&#8230;like calculate<br />
curent in one resistor if&nbsp; 10 resistors are connected in parall like that<br />
8.if speed doubles,distance increases what is the torque in dc motor?<br />
9.what is the value of&nbsp; A&#8217;+1 ?<br />
10.what is instrument used in MIC instrument?<br />
&nbsp;a)galvonometer b)ammeter like that&#8230;.<br />
11.question about dammping concept in PMMC<br />
12.what is PAL full form??<br />
13.what is the use for sweeping resistor in transistor??<br />
14.quetion based on bootstraping concept.<br />
15.rms current in half wave rectifier?<br />
16.what is form factor?(some ratios are given)<br />
17.prob on tree branches concept<br />
18.range of radio telemetry&#8230;some frequencies given<br />
so these are questins which are very very easy and i remembered<br />
dont feel happy to see these questions in every exam these type easy questins<br />
they will give but<br />
who gave corect answers to difficult questions he only will select in written<br />
test.so do hard work better to learn concept clearly now a days this galgotia<br />
book also not useful for p.s.u&#8217;s<br />
prepare test books more&#8230;.. </p>
<p style="margin:0 0 .0001pt;">HAL PAPER ON MAY 20th AT HYDERABAD<br />
&nbsp;</p>
<p style="margin:0 0 .0001pt;">1 synchro tc and rx is</p>
<p style="margin:0 0 .0001pt;">a )&nbsp;&nbsp; two phase ac</p>
<p style="margin:0 0 .0001pt;">b)&nbsp;&nbsp;&nbsp; three phase ac</p>
<p style="margin:0 0 .0001pt;">c)&nbsp;&nbsp;&nbsp; dc only</p>
<p style="margin:0 0 .0001pt;">d)&nbsp;&nbsp;&nbsp; none</p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;">2 in 4 bit number one bit indicates<br />
sign of the number then the locations are from</p>
<p style="margin:0 0 .0001pt;">a)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -8 to 8</p>
<p style="margin:0 0 .0001pt;">b)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -7 to 7</p>
<p style="margin:0 0 .0001pt;">c)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
-16 to 16</p>
<p style="margin:0 0 .0001pt;">d)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
None</p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;">3&nbsp; G(s) = 10/S(S+2) then the<br />
natural frequency of this transfer function is</p>
<p style="margin:0 0 .0001pt;">a)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
3.146</p>
<p style="margin:0 0 .0001pt;">b)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4</p>
<p style="margin:0 0 .0001pt;">c)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5</p>
<p style="margin:0 0 .0001pt;">d)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2</p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;">4&nbsp; In TV video amplifier is<br />
used for&nbsp; =?</p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;">5) one block&nbsp; contain one of<br />
the R L C element then the frequency of that one is 1 MHZ when the capacitor C=<br />
0.1 uf is added to that block then the frequency becomes 2 MHZ then what is the<br />
element inside the block at first time</p>
<p style="margin:0 0 .0001pt;">a) resistor</p>
<p style="margin:0 0 .0001pt;">b) inductor</p>
<p style="margin:0 0 .0001pt;">c) capacitor with 0.5 uf</p>
<p style="margin:0 0 .0001pt;">d) none of these</p>
<p style="margin:0 0 .0001pt;">ans : b</p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;">6) For unit step input they gave<br />
the input G(S)= &#8211; &#8212; &#8211; - -,h(s)= &#8212;&#8212;-then he ask the steady state error for<br />
that transfer fn</p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;">7)Avalanche photo diode is used<br />
when compared to PIN diode bcz</p>
<p style="margin:0 0 .0001pt;">&nbsp;a) larger band<br />
width&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; C)&#8212;&#8212;-</p>
<p style="margin:0 0 .0001pt;">&nbsp;b) high<br />
sensitivity&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; d) &#8212;&#8212;&#8211;</p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;">8)&nbsp; some non zero DC voltage<br />
is&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; to RC low pass circuit then the DC voltage in<br />
the output contains</p>
<p style="margin:0 0 .0001pt;">a)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
Same as in input</p>
<p style="margin:0 0 .0001pt;">b)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
Higher than&nbsp; input</p>
<p style="margin:0 0 .0001pt;">c)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
Zero</p>
<p style="margin:0 0 .0001pt;">d)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
Slightly increases</p>
<p style="margin:0 0 .0001pt;">
9) ifthe output of the gate is always high then the gates applied to this logic<br />
are</p>
<p style="margin:0 0 .0001pt;">a)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
NAND and EXOR</p>
<p style="margin:0 0 .0001pt;">b)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
Nand and NOR</p>
<p style="margin:0 0 .0001pt;">c)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
AND and XNOR</p>
<p style="margin:0 0 .0001pt;">d)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OR<br />
and XOR</p>
<p style="margin:0 0 .0001pt;">Ans ) a</p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;">10) For the voltage series feedback<br />
he gave input resistance and A&nbsp; and beta value then find the output<br />
resistance ?</p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;">11)Signal to noise ratio =15 db<br />
Bandwidth =4KHZ then the channel capacity -?</p>
<p style="margin:0 0 .0001pt;">Ans<br />
:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
C= B Log (1+ s/n)&nbsp;&nbsp; =16 log 2</p>
<p style="margin:0 0 .0001pt;">
12 ) Four&nbsp; messages are given like this 0.5,0.25,0.125,0.125 ,entrophy<br />
value is =?</p>
<p style="margin:0 0 .0001pt;">Ans:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
Entrophy= Avg of all informations</p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;">13) Thermal Run away is not<br />
possible in FET bcz the flow of</p>
<p style="margin:0 0 .0001pt;">a)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
minority careers&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; c) _____</p>
<p style="margin:0 0 .0001pt;">b)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
Transconductance&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; d) none</p>
<p style="margin:0 0 .0001pt;">Ans : FET is unipolar so there are<br />
no minority careers .Thermal run away occurs only minority careers</p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;">14)Gm= 10 ,Rd =20k,Rl =10 find the<br />
amplification factor -=?</p>
<p style="margin:0 0 .0001pt;">Ans =&nbsp; U= Gm<br />
  Rd </p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;">15)&nbsp; Two ideal voltage<br />
sourd=ces resistors are connected in series ,power of that one is 4W ,If one of<br />
the sorce is active other resistors are shorted .Calculate the power when both<br />
are active +/</p>
<p style="margin:0 0 .0001pt;">a)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
0W,8W</p>
<p style="margin:0 0 .0001pt;">b)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
8W,6W</p>
<p style="margin:0 0 .0001pt;">c)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
4W,0W</p>
<p style="margin:0 0 .0001pt;">d)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
None</p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;">16)&nbsp;&nbsp; A TV braod cast tx<br />
uses which type of antenna =?</p>
<p style="margin:0 0 .0001pt;">a) parabolic antenna b)=&#8212;</p>
<p style="margin:0 0 .0001pt;">c)&#8212;&#8211;&nbsp;&nbsp; d) &#8212;&#8211;</p>
<p style="margin:0 0 .0001pt;">ans : a</p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;">17)&nbsp;&nbsp; Electric field and<br />
equi potential lines are</p>
<p style="margin:0 0 .0001pt;">a) parallel to each other</p>
<p style="margin:0 0 .0001pt;">b) In Quadrature</p>
<p style="margin:0 0 .0001pt;">ans : b</p>
<p style="margin:0 0 .0001pt;">
18 ) L1= &#8212;&#8211; , L2 =&nbsp; &#8212;- k= _&#8212;- then mutual inductance of the coil is<br />
=?</p>
<p style="margin:0 0 .0001pt;">Ans :&nbsp;&nbsp;&nbsp; M=ksquare<br />
root of L!and L2</p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;">19 ) one cube some is there to find<br />
out the how many number of cubes are having single side ?</p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p style="margin:0 0 .0001pt;">20)Two qs in&nbsp;verbal are<br />
&#8212;&#8211;&nbsp;two statements are given for that the relation btwn those two</p>
<p style="margin:0 0 .0001pt;">Totally there are 160 qs out of<br />
that 100 qs from technical and 60 qs from aptitudeand verbal</p>
<p style="margin:0 0 .0001pt;">&nbsp;</p>
<p>&nbsp;</p>
<p class="MsoNormal">&nbsp;</p></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/freshersblog.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/freshersblog.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/freshersblog.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/freshersblog.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/freshersblog.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/freshersblog.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/freshersblog.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/freshersblog.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/freshersblog.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/freshersblog.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=freshersblog.wordpress.com&blog=5111083&post=17&subd=freshersblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://freshersblog.wordpress.com/2008/11/05/hal-placement-paper-exam-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Common wealth games</media:title>
		</media:content>
	</item>
		<item>
		<title>hindustan copper limited (hcl)</title>
		<link>http://freshersblog.wordpress.com/2008/10/15/hindustan-copper-limited-hcl/</link>
		<comments>http://freshersblog.wordpress.com/2008/10/15/hindustan-copper-limited-hcl/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 16:57:32 +0000</pubDate>
		<dc:creator>Common wealth games</dc:creator>
				<category><![CDATA[hcl-hindustan copper ltd]]></category>
		<category><![CDATA[placement paper]]></category>

		<guid isPermaLink="false">http://freshersblog.wordpress.com/?p=10</guid>
		<description><![CDATA[

hindustan copper limited (hcl) 
THIS BLOG IS UNDER CONSTRUCTION SO PLEASE JUST LEAVE BELOW SO THAT WE CAN 
INVITE YOU WHEN WE OFFICIALLY RELEASE THIS BLOG hcl, hindustan copper limited, paper, placement, question, sarkari naukri
2 comments 

The 2008 pattern for hcl was 150 questions in 150 minutes
each quesition carried 4 mark for right answer and 1marks [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=freshersblog.wordpress.com&blog=5111083&post=10&subd=freshersblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><blockquote>
<div class="post hentry category-placement-papers tag-hcl tag-hindustan-copper-limited tag-paper tag-placement tag-question tag-sarkari-naukri">
<h2><a title="hindustan copper limited (hcl)" href="http://indianengineer.wordpress.com/2008/08/05/hindustan-copper-limited-hcl/">hindustan copper limited (hcl)</a> <em></em></h2>
<p><em><strong><span style="color:#ff00ff;">THIS BLOG IS UNDER CONSTRUCTION SO PLEASE JUST LEAVE BELOW SO THAT WE CAN </span></strong></em><br />
<em><strong><span style="color:#ff00ff;">INVITE YOU WHEN WE OFFICIALLY RELEASE THIS BLOG</span></strong></em><em class="info"> <a rel="tag" href="http://wordpress.com/tag/hcl/">hcl</a>, <a rel="tag" href="http://wordpress.com/tag/hindustan-copper-limited/">hindustan copper limited</a>, <a rel="tag" href="http://wordpress.com/tag/paper/">paper</a>, <a rel="tag" href="http://wordpress.com/tag/placement/">placement</a>, <a rel="tag" href="http://wordpress.com/tag/question/">question</a>, <a rel="tag" href="http://wordpress.com/tag/sarkari-naukri/">sarkari naukri</a><br />
<a class="comments" title="Comment on hindustan copper limited (hcl)" href="http://indianengineer.wordpress.com/2008/08/05/hindustan-copper-limited-hcl/#comments">2 comments</a> </em></p>
<div class="snap_preview">
<p>The 2008 pattern for hcl was 150 questions in 150 minutes</p>
<p>each quesition carried 4 mark for right answer and 1marks negative for wrong</p>
<p>75 questions were aptitude and english and reasoning ones,</p>
<p>these were simple aptitude based two questions from data interpretation with five parts each.</p>
<p>one english unseen passage,synonyms,antonyms etc</p>
<p>Technical paper for branches (electronics)</p>
<p>questions form control systems,analog integrated circuti ,basic electronics ,switching theory ,boolen ,television , antenna,microwaves etc</p>
<p>primary colors in tv like blue green yellow</p>
<p>which antenna is used for tv-yagi-uda.</p>
<p>fanout and fan in.</p>
<p>mos,ttl,ecl which is better.</p>
<p>odd one out like</p>
<p>bjt,ujt,mosfet,igfet ans bjt</p></div>
</div>
</blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/freshersblog.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/freshersblog.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/freshersblog.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/freshersblog.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/freshersblog.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/freshersblog.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/freshersblog.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/freshersblog.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/freshersblog.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/freshersblog.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=freshersblog.wordpress.com&blog=5111083&post=10&subd=freshersblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://freshersblog.wordpress.com/2008/10/15/hindustan-copper-limited-hcl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Common wealth games</media:title>
		</media:content>
	</item>
		<item>
		<title>mtnl jto ( joint telecom operator ) exam pattern \ placement paper</title>
		<link>http://freshersblog.wordpress.com/2008/10/08/mtnl-jto-joint-telecom-operator-exam-pattern-placement-paper/</link>
		<comments>http://freshersblog.wordpress.com/2008/10/08/mtnl-jto-joint-telecom-operator-exam-pattern-placement-paper/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 15:51:12 +0000</pubDate>
		<dc:creator>Common wealth games</dc:creator>
				<category><![CDATA[mtnl]]></category>
		<category><![CDATA[placement paper]]></category>
		<category><![CDATA[jto]]></category>
		<category><![CDATA[mtnl placement paper]]></category>

		<guid isPermaLink="false">http://freshersblog.wordpress.com/?p=5</guid>
		<description><![CDATA[
 
 
MTNL (JTO/JAOS) EXAM —-HELD ON 18/09/2005.
5 123456:234556 345678:???
 
there were 170 q,s ,out of which 100 technical and 70 counts for
aptitude.
time limit was 2 hours. 30 minutes were previusly given for filing the
entry.exam stared around 10 o clock.
 
*there were no g.k question
note—–&#62;&#62;&#62;
*approx 10 question were also in sail 2005 examination(management
trainees)
$——-&#62; repeated
 
 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=freshersblog.wordpress.com&blog=5111083&post=5&subd=freshersblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><!--[if gte mso 9]&gt;  Normal 0       MicrosoftInternetExplorer4  &lt;![endif]--></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">MTNL (JTO/JAOS) EXAM —-HELD ON 18/09/2005.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">5 123456:234556 345678:???</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">there were 170 q,s ,out of which 100 technical and 70 counts for</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">aptitude.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">time limit was 2 hours. 30 minutes were previusly given for filing the</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">entry.exam stared around 10 o clock.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">*there were no g.k question</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">note—–&gt;&gt;&gt;</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">*approx 10 question were also in sail 2005 examination(management</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">trainees)</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">$——-&gt; repeated</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">*few q which i remembered,</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">i have written them according to the nearest topic</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">*technical was having almost thoeritical question nearly.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">********technical section************</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">1.what is a aquadag.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">2.about the quiscent condition</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">3.cassegrain feedis used with parabolic reflector to</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">allow the feed convenient position. $</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">4. configuration of cascade.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">ce cc,cbce, none</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">5.resistors is measured in a) ohms</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">b) watts. c) both</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">6.if diameter of radar is &gt;&gt; 4 times $</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">how much range is increased ans)4</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">7.n type have which type of impurity</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">8.semiconductor strain gauge over the normal strain gauge is around.$</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">9.why slicon is prefeered</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">10. what is w2/w1=4 relationship is called $</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">11.which one is best outof(near about)</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">nyqiust,bode, routhz</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">12.wein bridge frequecy conditions</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">13.The ,h, parameter equivalent circuit of a junction transistor is</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">valid for -</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">a). High frequency, large signal operation</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">b.) High frequency, small signal operation</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">c.) Low frequency, small signal operation</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">d). Low frequency, large signal operation</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">14. comparater is used for?</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">15. astable and bistable uses</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">16. to increase input z u will prefer</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">a). Current series feedback</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">b). Current shunt feedback</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">c). Voltage series feedback</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">d). Voltage shunt feedback</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">17.. Enhancement type P channel MOSFET the gate voltage is</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">+,-,+ &amp;-</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">18 which gate gives 0 when i/p is 1</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">19. decimal have radix ?</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">20 what is binary for 10</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">21 one value was given SN72 like that ,u have to tell</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">which device it means.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">22. what does the sync mean in tv tramnsmission. $</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">23. question on transformer coupling(i didnt remember)</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">24. where the double tunning is used in radio receivers.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">25. sequential circuit dependence on input and output.$</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">26.question on power receiveed by the receiver in tramsmmission</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">27.the probability density function of envelope of narrow</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">band noise is gaussian………………………….</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">28. what isthe output of given IC .</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">29.if quantization level is incresed from 8—&gt;9 then what is the</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">effect</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">30. a figure was given and we have identify thec circuit.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">31.in closed loop if u are having m=100 and negative feedback</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">is .04,what is gain</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">32.k maps was given u have to give the right pairings.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">33.a question on bandwidth</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">34.fourier series coprises of</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">sine,cosine,both</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">35.stalites works in which frequency $</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">vhf,uhf,both</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">36.by which u can prepare a binary counter. $</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">d,rs,jk,latch</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">37.q based on use of schotky diode</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">38. q based on the use of varactor diode.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">39.q based on allignment in paramagnetic materials.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">40.which equipment uses minimum power.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">41. it both input of nand gate is high,give the o/p.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">42.how many bits are required to reepresent 35 in binary.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">43.what is CMRR.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">44.if current in zener is increased then what happens.(near about).</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">45.for,thermistor if temperature is increased then then temperature</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">coefficent</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">will?</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">46.relation between B(beta) and Ic in bjt</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">47.the resistance of loudspeaker is nearly</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">ohms,k ohms,m ohms,</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">48.early state in bjt is due i/p applies,</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">on time,off time,….</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">*****aptitude section***********8</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">aptitiude q</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">antonymns of</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">1. debonair</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">2.bafeful</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">3.exasperate.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">4.dainty</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">5.epolsive</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">6.a very simple passage followed by 5n scoring q,s</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">7.5 question to pick the wrong part in sentences</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">maths part</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">1.work… time taken by 4 men to do work is 98.if 3 more</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">person are involved they the will finsh the work of 298 hrs</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">in how many more days</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">2. dicount offered by 3 shopownwer</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">15 and 10</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">20 and 10</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">36</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">which is the most discounted</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">3.15^3-14^3/15^2+210+14^2 solve it</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">4. (312)^.5 * (201)^.5 solve it</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">5.radius of 2 circle and revolution of one was given,find the other</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">6. 7 know french ,8 know german ,3 know none ,find how many know both.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">7. 80 %failed in maths, 70 %in english ,10 % failed in both,total</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">passed</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">no is 144.find total strength.? $</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">8.if watch is always makes error of 4 second (+)/hours,what will be</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">time on 22 day 8 am when it was last corrested on 21 day 1 pm</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">9 q based on day of birth ?</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">analytical</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">1. cube face q(same of any two side is 7) $</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">2. relationships based simple q .(8 in no in total)</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">3. dog:caninne governor: ??? $</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">4. 0,6,24,36,120,312(approx likethat) what should not be there $</span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/freshersblog.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/freshersblog.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/freshersblog.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/freshersblog.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/freshersblog.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/freshersblog.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/freshersblog.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/freshersblog.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/freshersblog.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/freshersblog.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=freshersblog.wordpress.com&blog=5111083&post=5&subd=freshersblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://freshersblog.wordpress.com/2008/10/08/mtnl-jto-joint-telecom-operator-exam-pattern-placement-paper/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Common wealth games</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://freshersblog.wordpress.com/2008/10/08/hello-world/</link>
		<comments>http://freshersblog.wordpress.com/2008/10/08/hello-world/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 15:44:25 +0000</pubDate>
		<dc:creator>Common wealth games</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=freshersblog.wordpress.com&blog=5111083&post=1&subd=freshersblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Welcome to <a href="http://wordpress.com/">WordPress.com</a>. This is your first post. Edit or delete it and start blogging!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/freshersblog.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/freshersblog.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/freshersblog.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/freshersblog.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/freshersblog.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/freshersblog.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/freshersblog.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/freshersblog.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/freshersblog.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/freshersblog.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=freshersblog.wordpress.com&blog=5111083&post=1&subd=freshersblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://freshersblog.wordpress.com/2008/10/08/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Common wealth games</media:title>
		</media:content>
	</item>
	</channel>
</rss>