Number of Questions: 120 | Duration: 120 minutes | Qualifying Score: 40% | Negative marking for Wrong Answer
End Test Now
The file which is used for recovering from the run time errors known as
QRS
TSR
PNG
DAT
None of these
Among the following recording modes, which method uses both the objects and mouse coordinates
Normal
Low level
Analog
All of the above
Where do you set the action iterations for a specified action?
Action Settings
Action Properties
Action Run Properties
Action Call Properties
Where do you mark an action as reusable?
After running a test that contains both input and output parameters, where can the results of an output parameter be found?
Local Data Sheet
Global Data Sheet
Run-time Data Table
Design-time Data Table
If you have a Virtual Object Collection stored on your machine, and you don't want to use it what you must do?
Disable Virtual Objects in Test Settings
Remove the Collection from your machine
Disable Virtual Objects in General Options
Remove the Collections from the Resources list
For a 25MHz processor, what is the time taken by the instruction which needs 3 clock cycles,
120 nano secs
120 micro secs
75 nano secs
75 micro secs
For 1 MB memory, the number of address lines required,
11
16
20
24
Semaphore is used for
synchronization
dead-lock avoidance
box
none
all of these
OLE is used in
Inter connection in UNIX
Interconnection in WINDOWS
Interconnection in WINDOWS NT
None
All of these
Preprocessor does not do which one of the following
macro
conditional compliclation
in type checking
including load file
Piggy backing is a technique for
Flow control
Sequence
Acknowledgement
retransmission
In signed magnitude notation what is the minimum value that can be represented with 8 bits
-128
-255
-127
0
When an array is passed as parameter to a function, which of the following statement is correct
The function can change values in the original array
In C parameters are passed by value. The function cannot change the original value in the array
It results in compilation error when the function tries to access the elements in the array
Results in a run time error when the function tries to access the elements in the array
The type of the controlling statement of a switch statement cannot be of the type
int
char
short
float
What is the value of the statement (3^6) + (a^a)?
3
5
6
a+18
Consider the following program: # include class x { public: int a; x(); }; x::x() { a=10; cout< class b:public x { public: b(); }; b::b() { a=20; cout< main () { b temp; } What will be the output of this program?
10
2010
1020
main() { int x=5,*p=&x; printf("%d",++(*p)); }
4
main() { int x=5,*p=&x; printf("%d",(*p)++); }
main(){ int i; for(i=0;i<=10;i++)printf("%d",i);
0-10
0-9
0-11
Y=10; if( Y++>9 && Y++!=10 && Y++>10) printf("........ Y); else printf(" ".... )
1
12
13
f=(x>y)?x:y
f points to max of x and y
f points to min of x and y
error
.......
if x is even, then (x%2)=0 x &1 !=1 x! ( some stuff is there)
only two are correct
three are correct
,
all are correct
which of the function operator cannot be over loaded
<=
?:
*
b and d
u r given two statements a=(10.15); b=10,15; if they are executed what is the output printf("%d%d",a,b);
10,15
15,10
10,10
15,15
define null 0
#define inc(x) x++ main() { int t=1; printf("%d",inc(t++)); }