Tag: testing
Questions Related to testing
Actual complexity metric refers to the number of independent path traversed during testing
Risk is defined as
What is the editor that is used for creating batch scripts
What does the following code snippet do? IF EXISTS c:\test.txt del c:\test.txt Dir %WinDir%\ >> c:\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