testing Online Quiz - 9
Description: testing Online Quiz - 9 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: testing |
Which of them are reason for failure? a)testing fault b)software fault c)design fault d)documentation fault e)environment fault
To test a function, the Programmer have to write a _________ which calls the function and passes it test data
Test are prioritised so that we
When a new tool is purchsed , it should be used first by
Data collected during testing should include
choose the correct combination
A reliable application will be one with
A regression test
Defect management process doesnot includes
Equivalence partitioning is
Actual complexity metric refers to the number of independent path traversed during testing
Risk is defined as
What is the output of the following code snippet @echo off %1 %2\%3 .\ Save the above as “test.bat” Execute the batch file with the commandline parameters test.bat xcopy d: test.txt
What is the output of the following code snippet?
@echo off
set /a number = 5
:loop
set /a number = %number% +1
If %number% == 10
(goto :label)
else
(echo %number% >> c:\test.txt)
goto :loop
What is the output of the following code snippet? @echo off Copy /? > d:\test.txt
What is the output of the following code snippet @echo off xcopy %userprofile%* %2