⟩ Explain What is Basis Path Testing?
A white box test case design technique that uses the algorithmic flow of the program to design tests.
A white box test case design technique that uses the algorithmic flow of the program to design tests.
Can you explain What is Acceptance Testing?
Explain Which of the following is a black box design technique? a. statement testing b. equivalence partitioning c. error- guessing d. usability testing
Explain When should you stop testing? a. when time for testing has run out. b. when all planned tests have been run c. when the test completion criteria have been met d. when no faults have been found by the tests run
Explain What is Ad Hoc Testing?
Explain Which is not true-The black box tester a. should be able to understand a functional specification or requirements document b. should be able to understand the source code. c. is highly motivated to find faults d. is creative to find the system?s weaknesses
Explain Which of the following is the odd one out? a. white box b. glass box c. structural d. functional
Explain Which of the following is true? a. Component testing should be black box, system testing should be white box. b. if u find a lot of bugs in testing, you should not be very confident about the quality of software c. the fewer bugs you find,the better your testing was d. the more tests you run, the more bugs you will find.
Explain Which of the following is a static test? a. code inspection b. coverage analysis c. usability assessment d. installation test
Explain Given 1. package test; 2. 3. class Target { 4. public String name = "hello"; 5. } What can directly access and change the value of the variable name? A. any class B. only the Target class C. any class in the test package D. any class that extends Target
Explain Which Man class properly represents the relationship "Man has a best friend who is a Dog"? A. class Man extends Dog { } B. class Man implements Dog { } C. class Man { private BestFriend dog; } D. class Man { private Dog bestFriend; } E. class Man { private Dog<bestFriend>; } F. class Man { private BestFriend<dog>; }