Q11 Flashcards

1
Q
Which of these is NOT a type of testing?
 A. functional testing
 B. user testing
 C. performance and load testing
 D. none of the above
A

D. none of the above

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

The three U’s of user testing include?
A. usability, utility, understandability
B. usability, utility, user interface
C. usability, user experience, user interface
D. none of the above

A

B. usability, utility, user interface

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Which of these is NOT correct about test plan guidelines?
A. make use of lengthy and detailed paragraphs to explain broad ideas
B. avoid redundancy and superfluousness
C. have the test plan reviewed a number of times
D. update the plan as and when necessary

A

A. make use of lengthy and detailed paragraphs to explain broad ideas

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
The test process includes...?
 A. user testing
 B. feature testing
 C. security testing
 D. durability testing
A

B. feature testing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which of these is one of the three potential problems of testing?
A. we can only test with our understanding of what the code should do
B. tests don’t tell us anything about the system
C. both a and b
D. none of the above

A

C. both a and b

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Which of these is NOT correct about feature testing?
A. we approach feature testing with the viewpoint of the user
B. features may be satisfied by one or more components/units
C. feature tests are documented by looking at our original user stories
D. usefulness tests test how the units implement the feature

A

D. usefulness tests test how the units implement the feature

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Functional Testing looks to answer the question of how good is the functionality of entire system
A. True
B. False

A

A. True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

During alpha testing you distribute early versions to users for comments
A. True
B. False

A

B. False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Security testing looks to answer the question of does system maintain integrity
A. True
B. False

A

A. True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

We approach feature testing with the viewpoint of the developer
A. True
B. False

A

B. False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Ideally test plans should be run by an independent party
A. True
B. False

A

A. True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Whenever you do a PHP SQL command you need to do error checking and handling
A. True
B. False

A

A. True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q
Which keyword is used to set the default value for an INPUT on a form?
 A. value=
 B. default=
 C. set=
 D. none of the above
A

A. value=

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

PHP can access the name of the “current” file by the value of $_SERVER[‘SCRIPT_NAME’].
A. True
B. False

A

A. True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

The ACTION of “DeleteUser.php/id=7” will pass the value of 7 to the file DeleteUser.php.
A. True
B. False

A

B. False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q
Which METHOD is specified the first time a PHP file is loaded in a browser?
 A. NEW
 B. NONE
 C. ONE
 D. none of the above
A

D. none of the above

16
Q

The mysqli_error function allows us to ‘trap’ an error (detect the error and provide code to handle it) .
A. True
B. False

A

B. False

17
Q

If we want to use session variables:
A. session_start() must be the first php command
B. session variable are browser cookies
C. we reference them by $_POST[‘SESSION’]
D. we can specify a duration for how long they will be active

A

A. session_start() must be the first php command