Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What is the test coverage?
From the following code, atleast how many test cases are needed to guarantee 100%coverage
Input Number_of_Coins
Total=0
While Number_of_Coins>0
Input Value_of_Coin
Total=Total + Value_of_Coin
Number_Of_Coins=Number_of_Coins - 1
End Loop
Print "Your coins are worth" & Total
What is the correct option with explanation?
✍: Guest
3
1
4
2
2014-11-24, 1744👍, 0💬
Popular Posts:
How can I search for data in a linked list? Unfortunately, the only way to search a linked list is w...
How many types of validation controls are provided by ASP.NET ? There are six main types of validati...
How To Create an Array in PL/SQL? - Oracle DBA FAQ - Introduction to PL/SQL If you want create an ar...
What will be printed as the result of the operation below: main() { int a=0; if (a==0) printf("Cisco...
How To Divide Query Output into Groups? - MySQL FAQs - SQL SELECT Query Statements with GROUP BY You...