Master test plan may contain;
I . Items to be tested, out of scope test items
II . Testing schedule, budget
III . Entry and exit criteria for each level and relationship among each level
IV . Business value of testing
XYZ Company develops websites for individual users / companies. The testing team tests each build of the software once development releases it. Once testers complete the testing, they also work on coding the next build of the software. All testers and developers report to project manager. What type of independency is achieved above as per ISTQB syllabus?
Which of the following are "white-box" test techniques?
I . Decision Testing
II . Condition Testing
III . LCSAJ (loop testing)
IV . State transition testing
An internet service provider (ISP) offers its services mainly to home users. With this group, a major target is home users with children. One of its key selling points is its Parental Control (PC) system. The PC system allows the user with Master rights to set the internet access privileges of the other users. Its categories of user are: Mature Teen (M), General Teen (G), Kids only (KO).
# A Mature Teen can have 24-hour access, can access websites in the M category and can visit chat rooms.
# A General Teen can have '9--5' access, can access websites in the G category and can visit chat rooms.
# A Kid can have access up to 1 hour per day, can access websites in the KO category only, but cannot visit chat rooms.
Which of the following types of testing would be best suited to checking the source code for data flow errors?
Use the following code;
x=1
y=2
z=3
If (x = = 2)
{
print "Hi There !";
}
else
{
print "Good bye";
}
z=x + y;
if (z ==4)
{
print "Welcome Back!";
}
else
{
print "Thank you";
}
How many test cases, at minimum, are required for statement coverage?