Which of the following is least applicable in black box
testing?
A) Specification of the system
B) Understand the environment in which the software will be
deployed
C) Source code
D) Use cases
Which of the following “quality dimensions” are
applicable for WebApps:
A) usability, performance, interoperability
B) security, maintainability, navigability
C) content, structure, function
D) all of the above
An objective of content testing is:
A) to uncover syntactic errors (e.g., typos, grammar mistakes) in
text-based documents, graphical representations, and other
media
B) to uncover semantic errors (i.e., errors in the accuracy or
completeness of information) in any content object presented as
navigation occurs
C) to find errors in the organization or structure of content that
is presented to the end-user
D) all of the above E) none of the above
Decision table technique should be used in a situation
where
A) Variables are physical variables
B) Inputs are not independent
C) Variables are logical variables
D) code is available to the tester
Which of the following construct that cannot be modeled
by the finite state model
A) Sequence
B) selection
C) concurrency
D) repetition
Which of the following is a NOT a factor that software
testers used to design equivalent class based test
cases
A) valid inputs
B) invalid inputs
C) output
D) System configuration
E) Cyclomatic complexity
Equivalent partitioning is common a common technique
used in black-box testing.
Which of the following may not be a considered in
determining equivalent class
A) Valid Input data
B) Invalid input data
C) Minimum system requirement to run the software
D) Outputs
E) Use case diagram
Which of the following JUnit tag is used in initializing
object instances before running
test cases against them
A) @BeforeClass
B) @AfterClass
C) @Before
D) @After
Which of the following statements best describe the
functionality of the following JUnit test
@Test
public void Test2() {
int d=31, m=1, y=2010;
Date date = new Date(m, d, y);
date.increment();
assertEquals("test", "2/1/2010", date.toString());
}
A) It checks if the date.toString() method call returns the string
“test”
B) It checks of the date.toString() method returns the
"2/1/2010"
C) It checks if the incremt() method of the object.
D) None of the above
1 Solution ) BLACK BOX TESTING is defined as a testing technique in which functionality of the Application Under Test (AUT) is tested without looking at the internal code structure, implementation details and knowledge of internal paths of the software. This type of testing is based entirely on software requirements and specifications. In BlackBox Testing we just focus on inputs and output of the software system without bothering about internal knowledge of the software program.
OPtion A is correct
Get Answers For Free
Most questions answered within 1 hours.