%abc = %\$def which option is correct when $def = \%any_hash ?
%abc = %\$def
$def = \%any_hash
all key value pairs are copied but in random order
all key value pairs are copied in proper order
all key value pairs from def may not be copied into abc
syntax error
what is the output for printf ("%06.2f", \$amt) when \$amt = 9.355 ?
9.3550
9.4
009.40
Error
($t, @u, $v, @w ) = qw( India US Japan Spain Mexico China ). How many elements are assigned to @u,@w?
($t, @u, $v, @w ) = qw( India US Japan Spain Mexico China )
1 and 2
5 and 0
1 and 3
none of the above
Out of below four cases
1 and 4
2 and 4
3 and 1
2 and 3
which is correct?
1 can only be called with predecleration of complex_num
1 and 2 are same
2 can only be called with predecleration of complex_num
1 is reference to a subroutine
Which of the following is an activity in the fundamental test process?
Test Planning and Design
Test Analysis and Control
Test Planning and Control
Test execution and reoprting
What is the main benefit of designing tests early in the life cycle?
It is cheaper than designing tests during the test phases
It helps prevent defects from being introduced into code
Tests designed early are more effective than tests designed later
It saves time during the testing phases when testers are busy
With which of the following categories is a test comparator tool usually associated?
Tool support for performance and monitoring
Tool support for static testing
Tool support for test execution and logging
Tool support for management of testing tools
Which type of test design techniques does the following statement best describe a procedure to derive test cases based on the specification of a component?
White Box Techniques
Black Box Techniques
Glass Box Techniques
Experience Based Techniques
Reviews,static analysis and dynamic testing have the same objective
Identifying defects
Fixing defects
Both A & B
None of the above