<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title>Software Testing Genius</title>
    <description>Feed from Software Testing Genius</description>
    <link>http://www.softwaretestinggenius.com/soft.xml</link>
    <language>en</language>
    <lastBuildDate>Fri, 06 Nov 2009 10:46:34 +0000</lastBuildDate>
    <pubDate>Fri, 06 Nov 2009 10:46:34 +0000</pubDate>
    <generator>FeedForAll v2.0 (2.0.2.9) http://www.feedforall.com</generator>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/softwaretestinggenius/SCIC" type="application/rss+xml" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">softwaretestinggenius/SCIC</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
      <title>What are the different approaches to debug the Software Applications?</title>
      <description>Several approaches are being practiced in the industry for debugging software under test (SUT). &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Some of them are described below.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;1) Brute Force Method:&lt;/b&gt;&lt;/font&gt; This method is most common and least efficient for isolating the cause of a software error. We apply this method when all else fail. In this method, a printout of all registers and relevant memory locations is obtained and studied. All dumps should be well documented and retained for possible use on subsequent problems.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;2) Back Tracking Method:&lt;/b&gt;&lt;/font&gt; It is a quite popular approach of debugging which is used effectively in case of small applications. The process starts from the site where a particular symptom gets detected, from there on backward tracing is done across the entire source code till we are able to lay our hands on the site being the cause. Unfortunately, as the number of source lines increases, the number of potential backward paths may become unmanageably large. &lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;3) Cause Elimination:&lt;/b&gt;&lt;/font&gt; The third approach to debugging, cause elimination, is manifested by induction or deduction and introduces the concept of binary partitioning. This approach is also called induction and deduction. Data related to the error occurrence are organized to isolate potential causes. A "cause hypothesis" is devised and the data are used to prove or disprove the hypothesis. Alternatively, a list of all possible causes is developed and tests are conducted to eliminated each. If initial tests indicate that a particular cause hypothesis shows promise, the data are refined in an attempt to isolate the bug.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.softwaretestinggenius.com/articalDetails.php?qry=632"&gt;Read the full Article...&lt;/a&gt;.&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=0vkPeGyiZ8c:qVvDaiwoWFw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=0vkPeGyiZ8c:qVvDaiwoWFw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?i=0vkPeGyiZ8c:qVvDaiwoWFw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=0vkPeGyiZ8c:qVvDaiwoWFw:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=0vkPeGyiZ8c:qVvDaiwoWFw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <link>http://www.softwaretestinggenius.com/articalDetails.php?qry=632</link>
      <guid isPermaLink="true">http://www.softwaretestinggenius.com/articalDetails.php?qry=632</guid>
      <pubDate>Fri, 06 Nov 2009 10:35:14 +0000</pubDate>
    </item>
    <item>
      <title>Understand the ABC of Process of Debugging</title>
      <description>During debugging, errors are encountered that range from less damaging (like input of an incorrect function) to catastrophic (like system failure, which leads to economic or physical damage). &lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;The various levels of errors and their damaging effects are shown below.&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;img width="350" height="499" alt="" border="0" src="http://www.softwaretestinggenius.com/photos/at1.JPG"&gt;&lt;br /&gt;
We can observe that in this graph, as the number of errors increases, the amount of effort to find their causes also increases.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Once errors are identified in a software system, to debug the problem, we use following steps:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;Step - 1:&lt;/b&gt;&lt;/font&gt; Identify the errors.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;Step - 2:&lt;/b&gt;&lt;/font&gt; Design error report.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;Step - 3:&lt;/b&gt;&lt;/font&gt; Analyze the errors.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;Step - 4:&lt;/b&gt;&lt;/font&gt; Debugging tools are used.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;Step - 5:&lt;/b&gt;&lt;/font&gt; Fix the errors.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;Step - 6:&lt;/b&gt;&lt;/font&gt; Retest the software.&lt;br /&gt;
&lt;br /&gt;
After the corrections are made, the software is re-tested using regression tests so that no new errors are introduced during debugging process.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.softwaretestinggenius.com/articalDetails.php?qry=631"&gt;Read the full Article...&lt;/a&gt;.&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=r7-Uw5exnX0:-9GSYFclKv0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=r7-Uw5exnX0:-9GSYFclKv0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?i=r7-Uw5exnX0:-9GSYFclKv0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=r7-Uw5exnX0:-9GSYFclKv0:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=r7-Uw5exnX0:-9GSYFclKv0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <link>http://www.softwaretestinggenius.com/articalDetails.php?qry=631</link>
      <guid isPermaLink="true">http://www.softwaretestinggenius.com/articalDetails.php?qry=631</guid>
      <pubDate>Wed, 04 Nov 2009 10:33:42 +0000</pubDate>
    </item>
    <item>
      <title>QTP Certification-Review your Skills: Forty More Questions added to the Question Bank: Q. 341 to 380</title>
      <description>&lt;font color="#000080"&gt;&lt;b&gt;Forty More Questions added to the Question Bank&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
Question No. 341 to 380, are in continuation with earlier question bank of 60 Questions that appeared in the HP QuickTest Professional 9.2 Software Certification Exam (Exam Code: HP0-M16). &lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;(Quickly Review Your QTP Skills before appearing for HP Certification Exam)&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Few Sample Questions are presented here:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Q. 341: When does QuickTest Professional 9.2 use assistive properties for an object? &lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
A. only when Smart Identification is enabled&lt;br /&gt;
B. when the Ordinal identifier is set to Index&lt;br /&gt;
C. when the base filter properties are not sufficient for unique identification &lt;br /&gt;
&lt;font color="#ff0000"&gt;&lt;b&gt;D. when the mandatory properties are not sufficient for unique identification&lt;/b&gt;&lt;/font&gt;&lt;font color="#ff0000"&gt; &lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; =================== &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Q. 342: When a test with multiple actions is saved, which component is added in each action within the test?&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
A. User log file&lt;br /&gt;
B. Global Data Table&lt;br /&gt;
&lt;font color="#ff0000"&gt;&lt;b&gt;C. Object Repository&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
D. Active Screen settings&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; =================== &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Q. 343: The test settings of Test A have been set to Run from row 1 to row 4 in the Data Table iterations section. Action As Action Call Properties is set to Run all rows. How many times in total will&amp;nbsp;&amp;nbsp;Action A be executed if the Local Data Table has 5 rows and the Global Data Table has 10 rows? &lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#ff0000"&gt;&lt;b&gt;A. 20&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
B. 40&lt;br /&gt;
C. 14&lt;br /&gt;
D. 50&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; =================== &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Q. 344: When enhancing your tests, what do programmatic descriptions allow you to do? Select three.&lt;/b&gt;&lt;/font&gt; &lt;br /&gt;
&lt;br /&gt;
A. Utilize the Object Repository.&lt;br /&gt;
&lt;font color="#ff0000"&gt;&lt;b&gt;B. Bypass the Object Repository.&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;font color="#ff0000"&gt;&lt;b&gt;C. Perform the same operation on a list of objects with similar properties. &lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
D. Perform different operations on a list of objects with different properties.&lt;br /&gt;
&lt;font color="#ff0000"&gt;&lt;b&gt;E. Perform an operation on a dynamic object chosen based on run-time object properties.&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; =================== &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Q. 345: Which QuickTest Professional tool can be used to identify the Run-time Object Properties and Methods of an object in the application under test? &lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#ff0000"&gt;&lt;b&gt;A. Object Spy&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
B. Object Repository&lt;br /&gt;
C. Object Identification&lt;br /&gt;
D. Object Repository Manager&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.softwaretestinggenius.com/articalDetails.php?qry=468"&gt;Read All Questions beginning with Q. No. 341...&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=Xth6ak1Ajf8:lQNahpjMBzk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=Xth6ak1Ajf8:lQNahpjMBzk:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?i=Xth6ak1Ajf8:lQNahpjMBzk:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=Xth6ak1Ajf8:lQNahpjMBzk:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=Xth6ak1Ajf8:lQNahpjMBzk:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <link>http://www.softwaretestinggenius.com/articalDetails.php?qry=627</link>
      <guid isPermaLink="true">http://www.softwaretestinggenius.com/articalDetails.php?qry=627</guid>
      <pubDate>Wed, 04 Nov 2009 09:15:50 +0000</pubDate>
    </item>
    <item>
      <title>Great News !!! Software Testing Genius broke all records of number of visitors</title>
      <description>&lt;font color="#800000"&gt;&lt;b&gt;:=) &lt;/b&gt;&lt;/font&gt;You may be aware of the fact that our web-site so young that it has not completed even its first year on the web. &lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;:=)&lt;/b&gt;&lt;/font&gt; In less than 5 months of its initial existence, it got a great recognition from Google by way of acquiring prestigious Page Rank - 4 (PR4) &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;The day of 26th October 2009 (Monday) became so special &amp; full of great pleasure we thought of it sharing with our Esteemed Readers !!!! &lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;Now once again we have two breaking news to share !!!! &lt;/font&gt;&lt;br /&gt;
&lt;b&gt;&lt;/b&gt;&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;1) Largest number of visitors browsed your favorite site; &lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;Statistics from www.statcounter.com are &lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
a) Maximum Page Loads - 5634 &lt;br /&gt;
&lt;br /&gt;
b) Maximum No. of New Visitors - 1186 &lt;br /&gt;
&lt;br /&gt;
c) Maximum No. of Returning Visitors - 360 (Old visitors re-entering their favorite website) &lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;A live screenshot of www.statcounter.com is shown below &lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img width="650" height="310" alt="" border="0" src="http://www.softwaretestinggenius.com/photos/Statcen.JPG"&gt;&lt;br /&gt;
&lt;a href="http://www.softwaretestinggenius.com/articalDetails.php?qry=626"&gt;Read the full story...&lt;/a&gt;.&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=wI8HOp4RfZw:0Js0iMEY1zI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=wI8HOp4RfZw:0Js0iMEY1zI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?i=wI8HOp4RfZw:0Js0iMEY1zI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=wI8HOp4RfZw:0Js0iMEY1zI:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=wI8HOp4RfZw:0Js0iMEY1zI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <link>http://www.softwaretestinggenius.com/articalDetails.php?qry=626</link>
      <guid isPermaLink="true">http://www.softwaretestinggenius.com/articalDetails.php?qry=626</guid>
      <pubDate>Wed, 28 Oct 2009 15:23:45 +0000</pubDate>
    </item>
    <item>
      <title>Let us compare the two leading Role based certifications ISTQB &amp; ISEB</title>
      <description>In this article I am trying to provide sufficient details to the certification aspirants in our testing community which could help them decide on the certification suiting their individual needs and taste, while most important factor being their pocket. &lt;br /&gt;
&lt;br /&gt;
There are lot many similarities among the two certifications - ISTQB &amp; ISEB.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Both the certification schemes are broadly equivalent and enjoy great respect due to being of international recognition.&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;/b&gt;&lt;br /&gt;
What are the Levels of Specialization you acquire with these certifications?&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;Broad hierarchical comparison among two streams is given below&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img width="650" height="790" alt="" border="0" src="http://www.softwaretestinggenius.com/photos/cert5.JPG"&gt;&lt;br /&gt;
&lt;a href="http://www.softwaretestinggenius.com/articalDetails.php?qry=625"&gt;Read the full article...&lt;/a&gt;.&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=EX5ltD4p25g:QLPiZTC4XSo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=EX5ltD4p25g:QLPiZTC4XSo:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?i=EX5ltD4p25g:QLPiZTC4XSo:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=EX5ltD4p25g:QLPiZTC4XSo:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=EX5ltD4p25g:QLPiZTC4XSo:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <link>http://www.softwaretestinggenius.com/articalDetails.php?qry=625</link>
      <guid isPermaLink="true">http://www.softwaretestinggenius.com/articalDetails.php?qry=625</guid>
      <pubDate>Wed, 28 Oct 2009 08:39:25 +0000</pubDate>
    </item>
    <item>
      <title>Tips to create an effective Portfolio for a successful career in Testing</title>
      <description>In this catchy IT sector, every tester whether a novice or an expert, needs some extra ammunition in his / her armory by which he / she can standout of the rest, especially when facing an interview. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Now let us try to know the unique identifier that can make you different?&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
That is a nicely organized portfolio. This becomes our flagship, and can improve our employability. Armed with a good portfolio loaded with sparkling personal information, one can compel any selection team to go in for a decision in his / her favor.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Next question arises is : What my personal portfolio should contain?&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
Following &lt;font color="#800000"&gt;&lt;b&gt;&lt;u&gt;Fifteen&lt;/u&gt;&lt;/b&gt;&lt;/font&gt; hot tips on organizing vital personal information being a part of your portfolio can be:&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Tip - 1:&lt;/b&gt;&lt;/font&gt; The beginning is made with a decent folder having provision of inserting many sleeves, which could last for couple of years.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Tip - 2: &lt;/b&gt;&lt;/font&gt;Keep few copies of your resume or curriculum vitae that must be powerfully portraying the first hand information about your career in testing. Remember that a good resume itself is able to answer several questions shot by interviewers. &lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Tip - 3:&lt;/b&gt;&lt;/font&gt; Keep a chronological history of your entire career neatly typed on a sheet. &lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Tip - 4:&lt;/b&gt;&lt;/font&gt; Keep copies of complimentary letters or e-mails received from time to time.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Tip - 5: &lt;/b&gt;&lt;/font&gt;Keep testimonials &amp; detailed mark-sheets of various professional courses.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Tip - 6:&lt;/b&gt;&lt;/font&gt; Keep copies of non-confidential reports engineered by you. Remember that it must never contain any intellectual information or property of any of your client. Such information is viewed as espionage &amp; is never liked by any interviewer. &lt;br /&gt;
 &lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Tip - 7: &lt;/b&gt;&lt;/font&gt;You must preserve documentary evidence of lectures or presentations delivered by you at your client or an employer or at some other knowledge forum. &lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Tip - 8:&lt;/b&gt;&lt;/font&gt; Keep a neatly typed sheet listing out an analysis of your skills versus gap, which could be quite helpful on many occasions.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Tip - 9:&lt;/b&gt;&lt;/font&gt; Copies of your performance appraisals from different employers are helpful in outlining the credentials effectively.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Tip - 10:&lt;/b&gt;&lt;/font&gt; Keep some documentary evidence of your testing activities listing out details of projects handled by you, your role in them, ultimate achievements. Remember not to include the names &amp; details of the clients, unless your client has made such information public on its own.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.softwaretestinggenius.com/articalDetails.php?qry=621"&gt;Read the full article...&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=G-LTxzjIP4o:ECW1-Wl1jv8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=G-LTxzjIP4o:ECW1-Wl1jv8:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?i=G-LTxzjIP4o:ECW1-Wl1jv8:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=G-LTxzjIP4o:ECW1-Wl1jv8:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=G-LTxzjIP4o:ECW1-Wl1jv8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <link>http://www.softwaretestinggenius.com/articalDetails.php?qry=621</link>
      <guid isPermaLink="true">http://www.softwaretestinggenius.com/articalDetails.php?qry=621</guid>
      <pubDate>Wed, 21 Oct 2009 10:39:52 +0100</pubDate>
    </item>
    <item>
      <title>How to be one up on the rest of the testing community? How to choose the best certification?</title>
      <description>&lt;font color="#800000"&gt;&lt;b&gt;Do you wonder why some testers are happy in their testing &amp; QA jobs while some are not. &lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
Aren't you curious to know why some of them simply love their jobs and can work all the time while you may be dragging your body to wake up every morning for going to work? &lt;br /&gt;
&lt;br /&gt;
You might be thinking that their enthusiasm is artificial while in their heart they are like you who just wait for 6 p.m. everyday. Certainly everyone has own ups and downs; while you feel that their ups are far exceeding your downs in your job and that is why they are smiling every day. &lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Let us see part of their secret for being happy with their QA job&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
It is a fact that very few of us have the luxury to choose the type of jobs that will perfectly fit us. Certainly we don’t want to be like the ignorant majority. No one will look after our career better that what we can. We need to improve our employability.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Now how to begin?&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
What we can do is to write down our own road map suiting our tastes &amp; aptitude. We need to jot down some short term, medium &amp; long term career goals. Source of motivation to progress in our career can be a voice from within or from parents, friends, peers or even from the boss. We may come across many achievements on our way to the final goal, wherein every achievement acts like a building block for the next one. &lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;Step-1: Create a career Plan:&lt;/b&gt;&lt;/font&gt; List out different available options &amp; zero down the final choice on few recognized options to suit your own needs as well as that of your organization. Remember that our career progress plan must be well established and transferable &amp; must be of global recognition, since we may have to come across many employers with varied requirements. &lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;Step-2: Acquire Certification: &lt;/b&gt;&lt;/font&gt;Well-recognized certifications help us in enhancing our skills, professional competence &amp; confidence. In addition that it helps us in fetching interview calls from respectable employers.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Good certifications have salient advantages like:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
# We get an opportunity to learn from the experience of others. &lt;br /&gt;
# We get accustomed to the use of standard frameworks &amp; common terminology.&lt;br /&gt;
# We begin to understand various models &amp; acquire ability to twist them to suit our needs. &lt;br /&gt;
# We acquire transferable skills&lt;br /&gt;
# Our credibility gets a boost.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Understand the type of available certifications: &lt;/b&gt;&lt;/font&gt;Generally there are two types of certifications available viz. 1) Testing Tool Based &amp; 2) Role Based.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;1) Testing Tool Based certifications as described in the following figure.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img width="300" height="450" alt="" border="0" src="http://www.softwaretestinggenius.com/photos/cert2.JPG"&gt;&lt;br /&gt;
&lt;a href="http://www.softwaretestinggenius.com/articalDetails.php?qry=620"&gt;Read the full article...&lt;/a&gt;.&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=OqUPbKIfIS0:3oy4u7ppKdU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=OqUPbKIfIS0:3oy4u7ppKdU:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?i=OqUPbKIfIS0:3oy4u7ppKdU:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=OqUPbKIfIS0:3oy4u7ppKdU:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=OqUPbKIfIS0:3oy4u7ppKdU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <link>http://www.softwaretestinggenius.com/articalDetails.php?qry=620</link>
      <guid isPermaLink="true">http://www.softwaretestinggenius.com/articalDetails.php?qry=620</guid>
      <pubDate>Fri, 16 Oct 2009 12:57:43 +0100</pubDate>
    </item>
    <item>
      <title>Understanding Software Technical Reviews (STRs)</title>
      <description>A review process can be defined as a critical evaluation of an object. It includes techniques such as walkthroughs, inspections and audits. Most of these approaches involve a group meeting to assess a work product.&lt;br /&gt;
&lt;br /&gt;
Software technical reviews can be used to examine all the products of the software evolution process. In particular, they are especially applicable and necessary for those products not yet in machine-processable form, such as requirements or specifications written in natural language.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;What is the rationale behind STRs?&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;A) Error Prone Software Development and Maintenance Process:&lt;/b&gt;&lt;/font&gt; &lt;br /&gt;
The complexity and error-prone nature of developing and maintaining software should be demonstrated with statistics depicting error frequencies for intermediate software products. These statistics must also convey the message that errors occur throughout the development process and that the later these errors are detected, the higher the cost for their repair.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;B) Inability to Test all Software:&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
It is not possible to test all software. Clearly exhaustive testing of code is impractical. Current technology also does not exist for testing a specification or high level design. The idea of testing a software test plan is also bewildering. Testing also does not address quality issues or adherence to standards which are possible with review processes.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;C) Reviews are a form of Testing:&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
The degree of formalism, scheduling and generally positive attitude afforded to testing must exist for software technical reviews if qualify products are to be produced.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.softwaretestinggenius.com/articalDetails.php?qry=619"&gt;Read the full article...&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=5GxkfaZXhMI:GHHCuh7gIJU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=5GxkfaZXhMI:GHHCuh7gIJU:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?i=5GxkfaZXhMI:GHHCuh7gIJU:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=5GxkfaZXhMI:GHHCuh7gIJU:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=5GxkfaZXhMI:GHHCuh7gIJU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <link>http://www.softwaretestinggenius.com/articalDetails.php?qry=619</link>
      <guid isPermaLink="true">http://www.softwaretestinggenius.com/articalDetails.php?qry=619</guid>
      <pubDate>Wed, 14 Oct 2009 10:31:27 +0100</pubDate>
    </item>
    <item>
      <title>Ins &amp; Outs of Software V&amp;V Planning (SVVP)</title>
      <description>The development of a comprehensive V&amp;V plan is essential to the success of a project. This plan must be developed early in the project. Depending on the development approach followed, multiple levels of test plans may be developed, corresponding to various levels of V&amp;V activities. IEEE 83b has documented the guidelines for the contents of system, software, build and module test plans.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Following steps are followed for SVVP&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;Step - 1: Identification of V&amp;V Goals:&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
V&amp;V goals must be identified from the requirements and specifications. These goals must address those attributes of the product that correspond to its user expectations. These goals must be achievable, taking into account both theoretical and practical limitations.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;Step - 2: Selection of V&amp;V Techniques:&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
Once step - 1 (as described above) is finished, we must select specific techniques for each of the product that evolves during SDLC. These are as under&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;(a) During Requirements Phase: &lt;/b&gt;&lt;/font&gt;The applicable techniques for accomplishing the V&amp;V objectives for requirements are-technical reviews, prototyping and simulations. The review process is often called as a System Requirement Review (SRR).&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;(b) During Specifications Phase:&lt;/b&gt;&lt;/font&gt; The applicable techniques for this phase are technical reviews, tracing of requirements, prototyping &amp; simulations. The requirements must be traced to the specifications.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.softwaretestinggenius.com/articalDetails.php?qry=617"&gt;Read the full article...&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=7b3eAqVI2ME:N9rHFeM9tSk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=7b3eAqVI2ME:N9rHFeM9tSk:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?i=7b3eAqVI2ME:N9rHFeM9tSk:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=7b3eAqVI2ME:N9rHFeM9tSk:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=7b3eAqVI2ME:N9rHFeM9tSk:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <link>http://www.softwaretestinggenius.com/articalDetails.php?qry=617</link>
      <guid isPermaLink="true">http://www.softwaretestinggenius.com/articalDetails.php?qry=617</guid>
      <pubDate>Sat, 10 Oct 2009 05:33:04 +0100</pubDate>
    </item>
    <item>
      <title>Software Testing Skill Review Test - For Beginners and even for experienced QA Managers: Q. 1 to Q. 240</title>
      <description>This Question Bank a compilation of &lt;b&gt;&lt;u&gt;240 Nos&lt;/u&gt;&lt;/b&gt;. especially designed High Quality Multiple Choice Objective Type Questions &amp; Answers on Software Testing.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Topics covered are:&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
1) Manual Testing&lt;br /&gt;
2) Automation Testing&lt;br /&gt;
3) Test Design, Execution &amp; Management&lt;br /&gt;
4) Bug Reporting&lt;br /&gt;
5) Performance Testing&lt;br /&gt;
6) Acceptance Testing&lt;br /&gt;
7) Quality Assurance Concepts&lt;br /&gt;
8) Defect Management&lt;br /&gt;
9) Risk Analysis&lt;br /&gt;
10) Metrics in Testing&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800040"&gt;&lt;b&gt;(Questions are useful for Beginners and even for experienced QA Managers; who can review their skill any time in their career &amp; before appearing in any interview) &lt;/b&gt;&lt;/font&gt;&lt;b&gt; &lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;***********************************&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Samples of few questions are given below&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Q. 1: What is Critical in Web Testing?&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;A.&lt;/b&gt; Performance and Functionality&lt;br /&gt;
&lt;b&gt;B.&lt;/b&gt; Functionality and usability&lt;br /&gt;
&lt;b&gt;C.&lt;/b&gt; Usability and Performance&lt;br /&gt;
&lt;b&gt;D. &lt;/b&gt;None of the above&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; =================== &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Q. 2: Testing across different languages is called &lt;/b&gt;&lt;/font&gt; &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;A.&lt;/b&gt; Linguistic Testing&lt;br /&gt;
&lt;b&gt;B.&lt;/b&gt; Localization Testing&lt;br /&gt;
&lt;b&gt;C. &lt;/b&gt;Both a and b&lt;br /&gt;
&lt;b&gt;D.&lt;/b&gt; None of the above.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; =================== &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Q. 3: Hierarchical System refers to&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;A.&lt;/b&gt; Several levels of component that includes objects and classes&lt;br /&gt;
&lt;b&gt;B.&lt;/b&gt; Several levels of component that includes objects, classes, systems&lt;br /&gt;
&lt;b&gt;C.&lt;/b&gt; Several levels of component that includes, foundation components, systems&lt;br /&gt;
&lt;b&gt;D.&lt;/b&gt; None of the above.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; =================== &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Q. 4: Hybrid Testing is&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;A.&lt;/b&gt; Combination of one or more testing techniques&lt;br /&gt;
&lt;b&gt;B.&lt;/b&gt; Combination of top-down and bottom-up testing&lt;br /&gt;
&lt;b&gt;C.&lt;/b&gt; Both A and B&lt;br /&gt;
&lt;b&gt;D.&lt;/b&gt; None of the above.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; =================== &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Q. 5: Test coverage analysis is the process of&amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;A.&lt;/b&gt; Creating additional test cases to increase coverage&lt;br /&gt;
&lt;b&gt;B.&lt;/b&gt; Finding areas of program exercised by the test cases&lt;br /&gt;
&lt;b&gt;C.&lt;/b&gt; Determining a quantitative measure of code coverage, which is a direct measure of quality.&lt;br /&gt;
&lt;b&gt;D. &lt;/b&gt;All of the above.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.softwaretestinggenius.com/categoryDetail.php?catId=162"&gt;Access the complete Question Bank with Answers ...&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=0HxEIZdeKxQ:p7FQ6vtGUqw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=0HxEIZdeKxQ:p7FQ6vtGUqw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?i=0HxEIZdeKxQ:p7FQ6vtGUqw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=0HxEIZdeKxQ:p7FQ6vtGUqw:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=0HxEIZdeKxQ:p7FQ6vtGUqw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <link>http://www.softwaretestinggenius.com/articalDetails.php?qry=592</link>
      <guid isPermaLink="true">http://www.softwaretestinggenius.com/articalDetails.php?qry=592</guid>
      <pubDate>Fri, 09 Oct 2009 08:44:25 +0100</pubDate>
    </item>
    <item>
      <title>Role of Load Testing in Performance Testing approach &amp; its best practices</title>
      <description>&lt;b&gt;Before taking up the issue of Load Testing in Performance Testing approach let us firstly try to understand as to why we should do the Performance Testing?&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Performance testing is usually carried out to discover different bottlenecks or risks associated with the system. The type of risks can have varying impact on the business in terms of added expenses, loss of opportunity, project delays and even the reputation of the organization may be at stake. &lt;br /&gt;
&lt;br /&gt;
The performance testing is a part of software testing that helps us in benchmarking &amp; establishing baselines for carrying out testing in future as well as guiding the stakeholders in understanding the actual quality level of the product under test. &lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;How do we categorize Performance Tests?&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
Performance tests generally fall under three categories like: &lt;br /&gt;
&lt;br /&gt;
1) Performance Testing&lt;br /&gt;
2) Load Testing&lt;br /&gt;
3) Stress Testing&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Each of the above categories of tests carry particular objective as briefly described below&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;1) Performance testing:&lt;/b&gt;&lt;/font&gt; This being the superset of all remaining categories is primarily meant for validating the speed of the system, its stability and scalability. Here main focus remains on achieving desired throughput, response times &amp; optimum utilization of resource to meet the target performance objectives of the application or product. &lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;2) Load testing: &lt;/b&gt;&lt;/font&gt;This category of performance testing is meant for validating the performance related characteristics of the application while it gets loaded to the anticipated volume of loads during the actual production.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;3) Stress testing: &lt;/b&gt;&lt;/font&gt;This category of performance testing is meant for validating the performance characteristics of the application, while it encounters stressful conditions, beyond anticipation during the actual operations. Here focus remains on identifying conditions wherein the application shall ultimately fail plus understanding the mode of failure &amp; pointers for predicting these failures.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;What is load Testing? And why do we do it?&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
All multi-user applications are subjected to simultaneous or concurrent access at some point of time. Hence prior to exposing our new application to simultaneous access by several users under a live scenario, it is ideal to simulate the multi-user conditions &amp; test the application in the lab, before actual deployment.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#ff0000"&gt;&lt;b&gt;This is what we call load testing.&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;What are the positive attributes of Load Testing?&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
Load testing is absolutely indispensable for multi-user systems due to the following:&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.softwaretestinggenius.com/articalDetails.php?qry=591"&gt;Read the full article...&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=oav_v5GAWNw:aBUGk-YUKys:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=oav_v5GAWNw:aBUGk-YUKys:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?i=oav_v5GAWNw:aBUGk-YUKys:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=oav_v5GAWNw:aBUGk-YUKys:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=oav_v5GAWNw:aBUGk-YUKys:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <link>http://www.softwaretestinggenius.com/articalDetails.php?qry=591</link>
      <guid isPermaLink="true">http://www.softwaretestinggenius.com/articalDetails.php?qry=591</guid>
      <pubDate>Wed, 07 Oct 2009 15:38:08 +0100</pubDate>
    </item>
    <item>
      <title>How to Beat the Recession? Seven Golden Tips for a Successful Career</title>
      <description>There is no one who does not aspire to excel in his/her career &amp; reach the star. In today’s era of dynamism &amp; great competition, I don’t think that heavy university degrees can contribute too much in your success. Impressive degrees undoubtedly act as a rock in the soil, but apart from that we need to understand the superiority of smart working over hard working in this environment of fast change. &lt;br /&gt;
&lt;br /&gt;
What we need is a Tip-Top &amp; pleasing personality. Even if you happen to be highly qualified &amp; intelligent, but haven’t cared to improve your personality; you are liable to be branded as an old fashioned owl &amp; you may not achieve the level of success, you think you deserve. Having realized the underlying fact, this is the high time for you to change yourself.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;&lt;u&gt;I am giving below 7-Golden Tips&lt;/u&gt;&lt;/b&gt;&lt;/font&gt;&lt;b&gt; to transform your personality by virtue of which you can beat any type of recession &amp; march on a highway to success in your professional career. &lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;Tip No. - 1: Demonstrate your Importance:&lt;/b&gt;&lt;/font&gt; Keep yourself engrossed in worthwhile / value added activities that could help you develop your importance among your circle. You must be always conscious of your ultimate career goals &amp; most important issue is that you must have chalked out some realistic / may be a bit difficult plan to achieve your career objectives. It is essential that you make your presence felt effectively. For that you must develop patience &amp; remain ever aware of your real talent, that ought to be capitalized effectively &amp; that too at the most appropriate time.&lt;br /&gt;
&lt;br /&gt;
Remember that if you fail to hit the nail right on its head at the proper time, you may miss an opportunity of impressing others about your talent &amp; importance.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.softwaretestinggenius.com/articalDetails.php?qry=590"&gt;Read the full article...&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=4zxlCrStoR8:bcIouDCNyJs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=4zxlCrStoR8:bcIouDCNyJs:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?i=4zxlCrStoR8:bcIouDCNyJs:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=4zxlCrStoR8:bcIouDCNyJs:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=4zxlCrStoR8:bcIouDCNyJs:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <link>http://www.softwaretestinggenius.com/articalDetails.php?qry=590</link>
      <guid isPermaLink="true">http://www.softwaretestinggenius.com/articalDetails.php?qry=590</guid>
      <pubDate>Fri, 02 Oct 2009 16:53:41 +0100</pubDate>
    </item>
    <item>
      <title>Practical Approach for choosing Effective Test Cases</title>
      <description>Every tester begins his testing effort by building test cases. Test case creation is not a simple task as it appears. It is an art - rather a complex art. &lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;This task is fairly complex due to the following reasons:&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
1) Different varieties of test cases are required for different categories or classes of information.&lt;br /&gt;
&lt;br /&gt;
2) All test cases within a particular test suite may or may not be good. Some test cases may be good &amp; effective in many ways. &lt;br /&gt;
&lt;br /&gt;
3) Different testers design their test cases as per a particular style of testing, for example risk-based testing or it may be domain testing. It is well known that good risk-based test cases are quite different from good domain based test cases.&lt;br /&gt;
&lt;br /&gt;
Brian Marick coins a new term for test cases, which are documented lightly. He calls them "A test idea". &lt;br /&gt;
&lt;br /&gt;
According to Brian, "A test idea is nothing but a short statement about something which is required to be tested." For example, if we are testing a square-root function, one test idea can be "test a number having value lower than zero". The motive behind this philosophy is verify as to whether the code is able to handle an error case or not.&lt;br /&gt;
&lt;br /&gt;
For any type of software application, we can create huge number of test cases. But due to constraint of time and money we are not able to execute all of them &amp; restrict our testing effort to few of them only. There is no hard &amp; fast rule or any international standard available with us, which could lay down some selection criterion for the test cases. Generally we restrict our testing to confirm the satisfactory performance of our program as per the specifications &amp; hesitate to go beyond that. Thus the test cases are designed &amp; executed to ensure the program’s functionality within the scope of specifications. &lt;br /&gt;
&lt;br /&gt;
Hence it is very difficult to conclude that our program shall be able to perform according to the specifications for all possible combinations of test cases. For a simple example of a function of a leap year, we can have huge number of likely inputs for testing.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Consider the input domain described in the following figure.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.softwaretestinggenius.com/articalDetails.php?qry=589"&gt;Read the full article...&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=b6gr7ZeqfuA:ldKSEib2nTw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=b6gr7ZeqfuA:ldKSEib2nTw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?i=b6gr7ZeqfuA:ldKSEib2nTw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=b6gr7ZeqfuA:ldKSEib2nTw:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=b6gr7ZeqfuA:ldKSEib2nTw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <link>http://www.softwaretestinggenius.com/articalDetails.php?qry=589</link>
      <guid isPermaLink="true">http://www.softwaretestinggenius.com/articalDetails.php?qry=589</guid>
      <pubDate>Tue, 29 Sep 2009 08:10:09 +0100</pubDate>
    </item>
    <item>
      <title>What is the Motive behind Software Testing?</title>
      <description>&lt;b&gt;Testing is necessary due to the following reasons&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;1) Due to Technical Compulsions:&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
a) Competent developers are not infallible.&lt;br /&gt;
&lt;br /&gt;
b) The implications of requirements are not always foreseeable.&lt;br /&gt;
&lt;br /&gt;
c) The behavior of a system is not necessarily predictable from its components.&lt;br /&gt;
&lt;br /&gt;
d) Languages, databases, user interfaces and operating systems have bugs that can cause application failures.&lt;br /&gt;
&lt;br /&gt;
e) Reusable classes and objects must be trustworthy.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;2) Due to Business Compulsions:&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
a) If you don't find bugs, your customers or users will.&lt;br /&gt;
&lt;br /&gt;
b) Post-release debugging is the most expensive form of development. &lt;br /&gt;
&lt;br /&gt;
c) Buggy software hurts operations, sales and reputation.&lt;br /&gt;
&lt;br /&gt;
d) Buggy software can be hazardous to life and property.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;3) Due to Professional Compulsions:&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
a) Test case design is a challenging and rewarding task. &lt;br /&gt;
&lt;br /&gt;
b) Good testing allows confidence in your work.&lt;br /&gt;
&lt;br /&gt;
c) Systematic testing allows you to be most effective. &lt;br /&gt;
&lt;br /&gt;
d) Increases your credibility, allows proud over your efforts.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;4) Due to Economic Compulsions: &lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
Economics normally plays a very significant role. It is both the driving force and the limiting factor as well. In software development life cycle (SDLC), the earlier the errors are discovered and removed, the lower is the cost of the removal. The cost to fix errors increases drastically from specification phase to test phase and finally to the maintenance phase. This is described in the following figure.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.softwaretestinggenius.com/articalDetails.php?qry=588"&gt;Read the full article...&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=5Q5QNloYUt8:ZSDxbZjNPkA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=5Q5QNloYUt8:ZSDxbZjNPkA:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?i=5Q5QNloYUt8:ZSDxbZjNPkA:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=5Q5QNloYUt8:ZSDxbZjNPkA:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=5Q5QNloYUt8:ZSDxbZjNPkA:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <link>http://www.softwaretestinggenius.com/articalDetails.php?qry=588</link>
      <guid isPermaLink="true">http://www.softwaretestinggenius.com/articalDetails.php?qry=588</guid>
      <pubDate>Sat, 26 Sep 2009 11:05:12 +0100</pubDate>
    </item>
    <item>
      <title>Skill Test - A must for Team Leads / QA Managers: Q. 1 to Q. 90</title>
      <description>&lt;b&gt;This Question Bank contains highly challenging Objective Type questions especially designed for QA Managers / Software Project Managers; who can review their skills &amp; knowledge pertaining to specialized areas in QA / Software Testing&lt;/b&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;(Questions, solution or answers of which must be known to each &amp; every Software QA Manager)&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;Collection of 90 High Quality Questions&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Samples of few questions are given below&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Q. 1: The tester should include the following when documenting a feature-by-feature risk assessment:&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
 &lt;br /&gt;
A. Resources available. &lt;br /&gt;
B. The cost of available resources. &lt;br /&gt;
C. The impact of failure. &lt;br /&gt;
D. A projection of sick days and vacations.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; =================== &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Q. 2: Entry criteria for testing must be:&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
A. Flexible. &lt;br /&gt;
B. Measurable. &lt;br /&gt;
C. Associated with known defects. &lt;br /&gt;
D. Automatable.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; =================== &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Q. 3: Total_work_hours / (hours_available_per_week * productivity_factor) is a formula for:&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
A. Test efficiency. &lt;br /&gt;
B. Test duration. &lt;br /&gt;
C. Test effort. &lt;br /&gt;
D. Tester productivity.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; =================== &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Q. 4: A tester should take a first pass at risk analysis:&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
A. After the vision document is complete. &lt;br /&gt;
B. After high-level requirements are established. &lt;br /&gt;
C. After all requirements are established and accepted by the development team. &lt;br /&gt;
D. After test planning is complete and before test execution begins.&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; =================== &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#000080"&gt;&lt;b&gt;Q. 5: The test environment should be defined in the:&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
A. Functional specification. &lt;br /&gt;
B. Test plan document. &lt;br /&gt;
C. Vision document. &lt;br /&gt;
D. Test scripts.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.softwaretestinggenius.com/categoryDetail.php?catId=161"&gt;Access the complete Question Bank ...&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=U8KsLalkD70:rhHh3faF3do:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=U8KsLalkD70:rhHh3faF3do:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?i=U8KsLalkD70:rhHh3faF3do:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=U8KsLalkD70:rhHh3faF3do:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=U8KsLalkD70:rhHh3faF3do:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <link>http://www.softwaretestinggenius.com/articalDetails.php?qry=578</link>
      <guid isPermaLink="true">http://www.softwaretestinggenius.com/articalDetails.php?qry=578</guid>
      <pubDate>Sat, 26 Sep 2009 09:56:52 +0100</pubDate>
    </item>
    <item>
      <title>Typical Architecture of Automation Frameworks</title>
      <description>&lt;b&gt;An Automation Framework primarily comprises of elements like :&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
A) Function Library&lt;br /&gt;
B) Object Repository&lt;br /&gt;
C) Database&lt;br /&gt;
D) Application Scenario Files&lt;br /&gt;
E) Initialization VB Script&lt;br /&gt;
F) Sequence File&lt;br /&gt;
G) Driver Script&lt;br /&gt;
H) Test Case List File&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;A) Function Library:&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
While creating automation framework the entire coding is done by using VB script functions that are user defined. We store these VB script functions in function library files with (*.vbs) extension. Apart from Driver Scripts, there is no need of doing any script creation beyond the function library.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Every application consists of following two types of function libraries&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
1) Containing common functions that are not dependent on the application functions.&lt;br /&gt;
&lt;br /&gt;
2) Containing functions, which are specific, the application.&lt;br /&gt;
&lt;br /&gt;
The script designer strives to utilize the common functions, which are independent of the application, to the maximum possible extent. However there is no hard &amp; fast rule to always use common functions only. Whenever there is absolute necessity of using some functions, which are essential for the application, the same are created on the spot &amp; are stored in the concerned function library.&lt;br /&gt;
&lt;br /&gt;
"ExecuteScenarioFile" is a function present in our common function library &amp; is called from the Driver Script or from outside the function library. This function is used for accessing the keywords, various objects and all other parameters from the Scenario File. This is also used to call other relevant functions as well from the function library. &lt;br /&gt;
&lt;br /&gt;
The function library files with (*.vbs) extension are stored in the Function Library folder.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;B) Object Repository:&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
Every application being automated contains a single / unique object repository file. The object repository files with (*.tsr) extension are stored in the Object Repository folder. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;font color="#800000"&gt;&lt;b&gt;C) Database:&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
MS Access database module of MS Office is used to store all the test data. While designing the structure of the database the designer tries to keep one independent table for every screen of the application. Test Case ID field is usually designated as the primary key for every table. Test Case ID is unique for every record used by the program for iteration. Test Case ID identifier is quite helpful in navigating through some particular type of data stored in the table. QTP establishes a link with database by building its system DSN and using the same DSN in the script. As a best practice, every application should have an independent database file; however for the sake of conserving the space on the hard disc, multiple applications can share the same database.&amp;nbsp;&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
The MS Access database files with (*.mdb) extension are stored in the Database folder.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.softwaretestinggenius.com/articalDetails.php?qry=525"&gt;Read the full article...&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=aC-NKLO_ATA:-NG8gLZcQCs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=aC-NKLO_ATA:-NG8gLZcQCs:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?i=aC-NKLO_ATA:-NG8gLZcQCs:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=aC-NKLO_ATA:-NG8gLZcQCs:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?a=aC-NKLO_ATA:-NG8gLZcQCs:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/softwaretestinggenius/SCIC?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <link>http://www.softwaretestinggenius.com/articalDetails.php?qry=525</link>
      <guid isPermaLink="true">http://www.softwaretestinggenius.com/articalDetails.php?qry=525</guid>
      <pubDate>Tue, 04 Aug 2009 04:48:27 +0100</pubDate>
    </item>
  </channel>
</rss>
