<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Interview &#187; General</title>
	<atom:link href="http://interview.msdotnetheaven.com/topics/general-interview-stuffs/feed" rel="self" type="application/rss+xml" />
	<link>http://interview.msdotnetheaven.com</link>
	<description>Best place for interview preparation</description>
	<lastBuildDate>Sat, 21 May 2011 21:43:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Is it possible to create constructor for an Abstract class?</title>
		<link>http://interview.msdotnetheaven.com/general-interview-stuffs/is-it-possible-to-create-constructor-for-an-abstract-class.html</link>
		<comments>http://interview.msdotnetheaven.com/general-interview-stuffs/is-it-possible-to-create-constructor-for-an-abstract-class.html#comments</comments>
		<pubDate>Thu, 29 Apr 2010 15:07:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[c# interview question]]></category>

		<guid isPermaLink="false">http://www.interview.msdotnetheaven.com/?p=665</guid>
		<description><![CDATA[Yes, its possible to create constructors for Abstract classes.  We can create Private, Public and Protected constructors for Abstract classes
Example:
Abstract class  myAbstClass
{
public  myAbstClass()
{          }
private myAbstClass(int x)
{       //some implementation      }
protected myAbstClass(string strX, string strY, int x)
{    //some implementation }
}
  Tweet This Post

Related posts:How can I create a Singleton class by using public constructor?
What is differance between Abstract and Interface
What are Classes and structures



Related posts:<ol><li><a href='http://interview.msdotnetheaven.com/microsoft-net-interview-questions/how-can-i-create-a-singleton-class-by-using-public-constructor.html' rel='bookmark' title='Permanent Link: How can I create a Singleton class by using public constructor?'>How can I create a Singleton class by using public constructor?</a></li>
<li><a href='http://interview.msdotnetheaven.com/oops-questions-and-answers/what-is-differance-between-abstract-and-interface.html' rel='bookmark' title='Permanent Link: What is differance between Abstract and Interface'>What is differance between Abstract and Interface</a></li>
<li><a href='http://interview.msdotnetheaven.com/microsoft-net-interview-questions/what-are-classes-and-structures.html' rel='bookmark' title='Permanent Link: What are Classes and structures'>What are Classes and structures</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Yes, its possible to create constructors for Abstract classes.  We can create Private, Public and Protected constructors for Abstract classes</p>
<blockquote><p>Example:</p>
<p>Abstract class  myAbstClass</p>
<p>{</p>
<p>public  myAbstClass()</p>
<p>{          }</p>
<p>private myAbstClass(int x)</p>
<p>{       //some implementation      }</p>
<p>protected myAbstClass(string strX, string strY, int x)</p>
<p>{    //some implementation }</p>
<p>}</p></blockquote>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=Is+it+possible+to+create+constructor+for+an+Abstract+class%3F+http%3A%2F%2Ftinyurl.com%2F5vff3qt" title="Post to Twitter"><img class="nothumb" src="http://interview.msdotnetheaven.com/wp-content/plugins/tweet-this/icons/de/twitter/de/tt-twitter-micro4.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Is+it+possible+to+create+constructor+for+an+Abstract+class%3F+http%3A%2F%2Ftinyurl.com%2F5vff3qt" title="Post to Twitter">Tweet This Post</a></p></div><img src="http://interview.msdotnetheaven.com/?ak_action=api_record_view&id=665&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://interview.msdotnetheaven.com/microsoft-net-interview-questions/how-can-i-create-a-singleton-class-by-using-public-constructor.html' rel='bookmark' title='Permanent Link: How can I create a Singleton class by using public constructor?'>How can I create a Singleton class by using public constructor?</a></li>
<li><a href='http://interview.msdotnetheaven.com/oops-questions-and-answers/what-is-differance-between-abstract-and-interface.html' rel='bookmark' title='Permanent Link: What is differance between Abstract and Interface'>What is differance between Abstract and Interface</a></li>
<li><a href='http://interview.msdotnetheaven.com/microsoft-net-interview-questions/what-are-classes-and-structures.html' rel='bookmark' title='Permanent Link: What are Classes and structures'>What are Classes and structures</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://interview.msdotnetheaven.com/general-interview-stuffs/is-it-possible-to-create-constructor-for-an-abstract-class.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CICS interview Questions Part Ã¢â‚¬â€œ XIII</title>
		<link>http://interview.msdotnetheaven.com/general-interview-stuffs/cics-interview-questions-part-xiii.html</link>
		<comments>http://interview.msdotnetheaven.com/general-interview-stuffs/cics-interview-questions-part-xiii.html#comments</comments>
		<pubDate>Sun, 09 Aug 2009 06:27:50 +0000</pubDate>
		<dc:creator>neerajmehta1984</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.interview.msdotnetheaven.com/?p=275</guid>
		<description><![CDATA[Q316)Ã‚Â Ã‚Â Ã‚Â  Difference between TSQ &#38; TDQ
A316)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  TDQ is read destructive, TSQ is not. TSQ can be created dynamically, TDQ cannot be created dynamically. TSQ is temporary in nature (i.e. it will be deleted when the program finishes execution, unless it is made permanent by making a entry in the Temporary Storage Table), TDQ is not.
Q317)Ã‚Â Ã‚Â Ã‚Â  What is ENQ in CICS?
A317)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  If any one want to restrict Trans-Id to single user, enter trans-id with ENQ. It won&#8217;t allow any one else to use the same trans-id.
Q318)Ã‚Â Ã‚Â Ã‚Â  In SYMBOLIC Cursor Positioning after ...


Related posts:<ol><li><a href='http://interview.msdotnetheaven.com/mainframe-question-and-answers/cics-interview-questions-part-i.html' rel='bookmark' title='Permanent Link: CICS interview Questions Part Ã¢â‚¬â€œ I'>CICS interview Questions Part Ã¢â‚¬â€œ I</a></li>
<li><a href='http://interview.msdotnetheaven.com/mainframe-question-and-answers/cics-interview-questions-part-xii.html' rel='bookmark' title='Permanent Link: CICS interview Questions Part Ã¢â‚¬â€œ XII'>CICS interview Questions Part Ã¢â‚¬â€œ XII</a></li>
<li><a href='http://interview.msdotnetheaven.com/mainframe-question-and-answers/mainframe-cobol-question-answer/cics-interview-questions-part-viii.html' rel='bookmark' title='Permanent Link: CICS interview Questions Part Ã¢â‚¬â€œ VIII'>CICS interview Questions Part Ã¢â‚¬â€œ VIII</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Q316)Ã‚Â Ã‚Â Ã‚Â  Difference between TSQ &amp; TDQ</strong></p>
<p>A316)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  TDQ is read destructive, TSQ is not. TSQ can be created dynamically, TDQ cannot be created dynamically. TSQ is temporary in nature (i.e. it will be deleted when the program finishes execution, unless it is made permanent by making a entry in the Temporary Storage Table), TDQ is not.</p>
<p><strong>Q317)Ã‚Â Ã‚Â Ã‚Â  What is ENQ in CICS?</strong></p>
<p>A317)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  If any one want to restrict Trans-Id to single user, enter trans-id with ENQ. It won&#8217;t allow any one else to use the same trans-id.</p>
<p><strong>Q318)Ã‚Â Ã‚Â Ã‚Â  In SYMBOLIC Cursor Positioning after moving -1 to the length field also the cursor is not positioned in that particular field. Give reasons?</strong></p>
<p>A318)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  You have to explicitly specify the word CURSOR between your EXEC CICS and END-EXEC in the program.</p>
<p><strong>Q319)Ã‚Â Ã‚Â Ã‚Â  What does EIB mean?</strong></p>
<p>A319)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  The EIB is the EXECUTIVE INTERFACE BLOCK. It is not the EXECUTE INTERFACE BLOCK. All TP monitors or transaction processors are know as EXECUTIVEs as they carry out process on behalf of a program module. CICS and DB2 are executives.</p>
<p><strong>Q320)Ã‚Â Ã‚Â Ã‚Â  How many exceptional condition can be given in a HANDLE CONDITION? </strong></p>
<p>A320)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  Max. of 12 exceptional conditions can be given in a single HANDLE CONDITION.</p>
<p><strong>Q321)Ã‚Â Ã‚Â Ã‚Â  How do you access the records randomly in TSQ ?</strong></p>
<p>A321)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  By specifying the ITEM option</p>
<p><strong>Q322)Ã‚Â Ã‚Â Ã‚Â  What command do you issue to delete a record in a transient data queue ?</strong></p>
<p>A322)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  READQ TD, the read is destructive.</p>
<p><strong>Q323)Ã‚Â Ã‚Â Ã‚Â  What are different ways of initiating transaction in CICS ?</strong></p>
<p>A323)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  We can initiate cics transaction a) by giving transaction id b) by giving cics start command c) automatic task initiation.</p>
<p><strong>Q324)Ã‚Â Ã‚Â Ã‚Â  What is the difference between LINK and XCTL ?</strong></p>
<p>A324)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  The XCTL command passes control to another program, but the resources requested by the first program may still be allocated. A task does not end until a RETURN statement is executed. While in LINK command, program control resumes its instruction following the LINK parameter. The disadvantage of LINK is that it requires that both the calling program and the called program remain in main memory even though both are no longer needed.</p>
<p><strong>Q325)Ã‚Â Ã‚Â Ã‚Â  What is the difference between CICS Program Control Table (PCT) and CICS Processing Program Table (PPT) ?</strong></p>
<p>A325)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  PCT contains a list of valid transaction ID. Each transaction ID is paired with the name of the program ,CICS will load and execute when the transaction is invoked. On the other hand, PPT indicates each program&#8217;s location which pertains to a storage address if the program has already been loaded or a disk location if the program hasn&#8217;t been loaded. PPT will also be used to determine whether it will load a new copy of the program when the transaction is invoked.</p>
<p><strong><br />
</strong></p>
<p><strong>Q326)Ã‚Â Ã‚Â Ã‚Â  What are the 3 common ways to create maps?</strong></p>
<p>A326)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  The first way is to code a physical map and then code a matching symbolic map in your COBOL program. The second way to create a physical map along with a matching symbolic map is to code only the physical map using the &amp;SYSPARM option, CICS will automatically create a member in a COPY library. And the third way is to use a map generator such as SDF (Screen Definition Facility)</p>
<p><strong>Q327)Ã‚Â Ã‚Â Ã‚Â  What is Quasi-reentrancy?</strong></p>
<p>A327)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  There are times when many users are concurrently using the same program, this is what we call MultiThreading. For example, 50 users are using program A, CICS will provide 50 Working storage for that program but one Procedure Division. And this technique is known as quasi-reentrancy</p>
<p><strong>Q328)Ã‚Â Ã‚Â Ã‚Â  What is the difference between a physical BMS mapset and a logical BMS mapset?</strong></p>
<p>A328)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  The physical mapset is a load module used to map the data to the screen at execution time. The symbolic map is the actual copybook member used in the program to reference the input and output fields on the screen.</p>
<p><strong>Q329)Ã‚Â Ã‚Â Ã‚Â  How To Set MDT(Modified Data Tag) Thru Application Program?(Dynamically)?</strong></p>
<p>A329)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  You have to move the following macro DFHBMFSE to the Attribute field of that particular Variable.</p>
<p><strong>Q330)Ã‚Â Ã‚Â Ã‚Â  What CICS facilities can you use to save data between the transactions?</strong></p>
<p>A330)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  COMMONAREA, TSQ &amp; TDQ.</p>
<p><strong>Q331)Ã‚Â Ã‚Â Ã‚Â  How would you release control of the record in a READ for UPDATE?</strong></p>
<p>A331)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  By issuing a REWRITE,DELETE, or UNLOCK command or by ending the task.</p>
<p><strong>Q332)Ã‚Â Ã‚Â Ã‚Â  What is the difference between a RETURN with TRANSID and XCTLÃ‚Â  ?For example prog. A is issuing REUTRN with TRANSID to prog B. Prog A. is issuing XCTL to prog B?</strong></p>
<p>A332)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  In RETURN with TRANSID the control goes to the CICS region and the user have to transfer the control to prog. B by pressing any of the AID KEYS.In XCTL the control is directly transfer to prog. B.</p>
<p><strong>Q333)Ã‚Â Ã‚Â Ã‚Â  What will be the length of the eibcalen ,if the transaction is used to cics first time?</strong></p>
<p>A333)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  The length will be 0(zero).</p>
<p><strong>Q334)Ã‚Â Ã‚Â Ã‚Â  What is DFHEIBLK?</strong></p>
<p>A334)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  DFHEIBLK is Execute Interface Block. It is placed in the linkage section automatically by CICS translator program.</p>
<p>It must be the first entry in linkage section. CICS places values prior to giving control to the program and we can find almost any information about our transaction.</p>
<p><strong>Q335)Ã‚Â Ã‚Â Ã‚Â  What is the difference between the XCTL and LINK commands?</strong></p>
<p>A335)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  The LINK command anticipates return of control to the calling program, the XCTL command does not. Return to the calling program will be the result of the CICS RETURN command, specifying TRANSID(name of the calling program).</p>
<p><strong>Q336)Ã‚Â Ã‚Â Ã‚Â  What CICS command would you use to read a VSAM KSDS sequentially in ascending order?</strong></p>
<p>A336)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  First issue a STARTBR(start browse), which will position the browse at the desired record. Retrieve records by using subsequent READNEXT commands. Indicate the end of sequential processing with the ENDBR command. If the generic key is specified in the STARTBR command positioning in the file will be before the first record satisfying the generic key.For reading in descending order use the READPREV instead of READNEXT.</p>
<p><strong>Q337)Ã‚Â Ã‚Â Ã‚Â  What is the difference between pseudo-conversational and conversational?</strong></p>
<p>A337)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  Pseudo-conversational will start a new task for each input. By coding a CICS RETURN command specifying Ã¢â‚¬ËœTRANSID(itself). Conversational will have an active task during the duration of the data entry.</p>
<p><strong>Q338)Ã‚Â Ã‚Â Ã‚Â  What is the COMMAREA(communications area)?</strong></p>
<p>A338)Ã‚Â Ã‚Â Ã‚Â Ã‚Â  An area used to transfer data between different programs or between subsequent executions of the same program. Needs to be defined in the Linkage Section.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=CICS+interview+Questions+Part+%C3%83%C2%A2%C3%A2%E2%80%9A%C2%AC%C3%A2%E2%82%AC%C5%93+XIII+http%3A%2F%2Ftinyurl.com%2F4cnj8ag" title="Post to Twitter"><img class="nothumb" src="http://interview.msdotnetheaven.com/wp-content/plugins/tweet-this/icons/de/twitter/de/tt-twitter-micro4.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=CICS+interview+Questions+Part+%C3%83%C2%A2%C3%A2%E2%80%9A%C2%AC%C3%A2%E2%82%AC%C5%93+XIII+http%3A%2F%2Ftinyurl.com%2F4cnj8ag" title="Post to Twitter">Tweet This Post</a></p></div><img src="http://interview.msdotnetheaven.com/?ak_action=api_record_view&id=275&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://interview.msdotnetheaven.com/mainframe-question-and-answers/cics-interview-questions-part-i.html' rel='bookmark' title='Permanent Link: CICS interview Questions Part Ã¢â‚¬â€œ I'>CICS interview Questions Part Ã¢â‚¬â€œ I</a></li>
<li><a href='http://interview.msdotnetheaven.com/mainframe-question-and-answers/cics-interview-questions-part-xii.html' rel='bookmark' title='Permanent Link: CICS interview Questions Part Ã¢â‚¬â€œ XII'>CICS interview Questions Part Ã¢â‚¬â€œ XII</a></li>
<li><a href='http://interview.msdotnetheaven.com/mainframe-question-and-answers/mainframe-cobol-question-answer/cics-interview-questions-part-viii.html' rel='bookmark' title='Permanent Link: CICS interview Questions Part Ã¢â‚¬â€œ VIII'>CICS interview Questions Part Ã¢â‚¬â€œ VIII</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://interview.msdotnetheaven.com/general-interview-stuffs/cics-interview-questions-part-xiii.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interview &gt;&gt; Best place for interview preparation</title>
		<link>http://interview.msdotnetheaven.com/general-interview-stuffs/hello-world.html</link>
		<comments>http://interview.msdotnetheaven.com/general-interview-stuffs/hello-world.html#comments</comments>
		<pubDate>Sat, 01 Aug 2009 23:14:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.interview.msdotnetheaven.com/?p=1</guid>
		<description><![CDATA[Welcome all!
This is the best place to prepare interview.
Presently, we are updating our Interview Databank. Please stay back for numerous interview questions.
  Tweet This Post

No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Welcome all!</p>
<p>This is the best place to prepare interview.</p>
<p>Presently, we are updating our Interview Databank. Please stay back for numerous interview questions.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=Interview+%3E%3E+Best+place+for+interview+preparation+http%3A%2F%2Ftinyurl.com%2F4hxyp2b" title="Post to Twitter"><img class="nothumb" src="http://interview.msdotnetheaven.com/wp-content/plugins/tweet-this/icons/de/twitter/de/tt-twitter-micro4.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Interview+%3E%3E+Best+place+for+interview+preparation+http%3A%2F%2Ftinyurl.com%2F4hxyp2b" title="Post to Twitter">Tweet This Post</a></p></div><img src="http://interview.msdotnetheaven.com/?ak_action=api_record_view&id=1&type=feed" alt="" />

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://interview.msdotnetheaven.com/general-interview-stuffs/hello-world.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

