Q1 use the following method printprimes for questions a-f

Assignment Help Software Engineering
Reference no: EM13356260

Q1) Use the following method printPrimes() for questions a-f below.

1. /** *****************************************************

2. * Finds and prints n prime integers

4. ********************************************************* */

5. private static void printPrimes (int n)

6. {

7. int curPrime; // Value currently considered for primeness

8. int numPrimes; // Number of primes found so far.

9. boolean isPrime; // Is curPrime prime?

10. int [] primes = new int [MAXPRIMES]; // The list of prime numbers.

11.

12. // Initialize 2 into the list of primes.

13. primes [0] = 2;

14. numPrimes = 1;

15. curPrime = 2;

16. while (numPrimes < n)

17. {

18. curPrime++; // next number to consider ...

19. isPrime = true;

20. for (int i = 0; i <= numPrimes-1; i++)

21. { // for each previous prime.

22. if (isDivisible (primes[i], curPrime))

23. { // Found a divisor, curPrime is not prime.

24. isPrime = false;

25. break; // out of loop through primes.

26. }

27. }

28. if (isPrime)

29. { // save it!

30. primes[numPrimes] = curPrime;

31. numPrimes++;

32. }

33. } // End while

34.

35. // Print all the primes out.

36. for (int i = 0; i <= numPrimes-1; i++)

37. {

38. System.out.println ("Prime: " + primes[i]);

39. }

40. } // end printPrimes

(a) Draw the control flow graph for the printPrimes() method.

(b) Consider test cases t1 = (n = 3) and t2 = (n = 5). Although these tour the same prime paths in printPrimes(), they do not necessarily find the same faults. Design a simple fault that t2 would be more likely to discover than t1 would.

(c) For printPrimes(), find a test case such that the corresponding test path visits the edge that connects the beginning of the while statement to the for statement without going through the body of the while loop.

(d) Enumerate the test requirements for node coverage, edge coverage, and prime path coverage for the graph for printPrimes().

(e) List test paths that achieve node coverage but not edge coverage on the graph.

(f) List test paths that achieve edge coverage but not prime path coverage on the graph.

 

Q2) Consider the following program segment

main()

{

char string[80];

int index;

printf("Enter the string for checking its characters");

scanf("%s", string):

for(index=0; string[index] !='\0'; ++index) {

            if((string[index] >='0'&&(string[index] <='9'))

                        printf("%c is a digit", string[index]);

            else if ((string[index] >='A' && string[index] < 'Z') || (string[index] >='a' && string[index] < 'z'))

                        printf("%c is an Alphabet", string[index]);

            else

                        printf("%c is a Special Character", string[index]);

}

}

(a)    Draw the DD graph for the program

(b)   Calculate the cyclomatic complexity of the program using all the methods.

(c)    List all the independent paths

(d)   Design test cases from independent paths.

 

Q3) A program has been designed to determine the nature of root of quadratic equation. The quadratic equation takes three input values from the range [0, 100]. Design the test cases using cause effect graphing technique.

 

Q4)      Draw a decision table for US Income Tax System;

If income is                          Tax is

$0 - 20K                      15% of total income

$20 -50K                     $3K + 25% of amount over $20K

Above $50K               $10.5K + 40% of amount over $50K

 

Q5)      Draw program's Flow Graph for the following code fragment and Find minimal number of test cases for the following coverage types:

a)      Statement Coverage

b)      Path Coverage

c)      Branch Coverage

d)     Basic Path Coverage

1          d = b + c;

2          if (d > 20)

3          a = 3 * a + d;

4          if (b < a) {

5              a = 1;

6              if (d < 2 * b)

7                  b = 2;

8          }

 

Q6) Explain the significance of boundary value analysis. What is the purpose of worst case testing?

Reference no: EM13356260

Questions Cloud

Find the reorder pointscrumptious spices manufactures a : find the reorder point.scrumptious spices manufactures a special blend of beef marinade. the company buys one of the
Q1 what is a test plan list out the processes that are : q.1 what is a test plan? list out the processes that are covered in a test plan.q.2 what is the need to identify test
Q1 what is regression testing explain various types of : q.1 what is regression testing? explain various types of regression testing.nbspq.2 what are the various steps by which
Q1 differentiate between alpa and beta testingq2 write : q.1 differentiate between alpa and beta testing.q.2 write short notes on levels of software testing.q.3 why threaded
Q1 use the following method printprimes for questions a-f : q1 use the following method printprimes for questions a-f below.1. 2. finds and prints n prime integers4. 5. private
Q1nbsp discuss the limitations of software testing how do : q1nbsp discuss the limitations of software testing. how do we say that complete testing is impossible?q2 define
Human papilloma virus read this review on how hpv controls : human papilloma virus. read this review on how hpv controls the expression of its genes and explain to the class how
Learning outcomes assessedthis assignment will summative : learning outcomes assessedthis assignment will summative assess the following learning outcome it should be able to
Find the reorder pointscrumptious spices manufactures a : find the reorder point.scrumptious spices manufactures a special blend of beef marinade. the company buys one of the

Reviews

Write a Review

Software Engineering Questions & Answers

  Process of formal software testing

Discuss and explain software testing as a career path, and consider what skills would be desirable for a software tester.

  Compare x.509 pki and pgp pki in different aspects

Compare X.509 PKI and PGP PKI in different aspects, e.g. Certs format, user identification, key management, scalability, usage, applications, business models, etc.

  Produce the xsl file needed to associate

In this exercise, produce the XSL file needed to associate with the attached XML file to display the XML data in a format similar to the data shown in an unrelated invoice in attachment photo (see sample_invoice.jpg in attachment).

  Calculate the monthly management fee payable

Which manages rental properties and charges the owner a management fee - the For Realz Accountant has devised the following rules to calculate the monthly management fee payable.

  1 you have to design a wireframe prototype to meet the

1. you have to design a wireframe prototype to meet the needs of the personas and requirements.mainly preparing the

  Erp project implementation

Based upon the preliminary information developed by CCC (Toledo Pizza Company - ERP Implementation (A)) and further analysis using benchmarking information, the following information became available:

  Er diagram to monitor students-write desirable constraints

Represent entire scenario with the help of ER Diagram. Also write desirable constraints and justify your design approach even in a single small step.

  Preparing final table list and rationale

Assume you are now going to construct the final table list for Fernando's Skate Shop. Use the following preliminary field list and list of subjects to get started.

  Office automation project in the printing industry

Discuss possible ramifications of these opposing objectives on the project and Which strategy do you favour? Justify your answer with relevant theory.

  Calculating a discount that customers receive

Computing a discount that consumers receive based on the value of their order. If the total value ordered is less than $20, no discount will be given.

  Write procedures to manipulate queues

An accumulator is a procedure that is called repeatedly with a single numeric argument and accumulates its arguments into a sum. Each time it is called, it returns the currently accumulated sum. Write a procedure make-accumulator that generates ac..

  Draw the cash-flow diagram for this situation

What will his annual payment be - construct a loan amortization table, similar to the one shown in table 6-2, showing the principal and interest seperated for the first 6 months of FunSoft's loan.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd