Using the following DataTable value Property, what does the number indicate? X= Datatable.value (“Column1”,1)
That you want the data from the first row in the table
That you want the data from the first column in the table
To get the data from the data sheet
To access the data from the data sheet with the index Value ‘1’
The Object Properties (Mandatory & Assistive) for the “Test Object Classes” can be defined using one of the following
Object Spy
Object Repository Manager
Object Identification
All the above
Hierarchical sequence follows
front to back, top to bottom and left to right
top to bottom, front to back and left to right
top to bottom, left to right and front to back
left to right, front to back and top to bottom
How many SSAs can be coded maximum in a call statement?
5
10
15
25
Where SSA should be defined in an application program?
In WORKING-STORAGE SECTION
In LINKAGE SECTION
In File Section
In Configaration Section
How many PSB’s are possible for an application program?
1
255
Given: 34. HashMap props = new HashMap(); 35. props.put("key45", "some value"); 36. props.put("key12", "some other value"); 37. props.put("key39", "yet another value"); 38. Set s = props.keySet(); 39. // insert code here What, inserted at line 39, will sort the keys in the props HashMap?
Arrays.sort(s);
s = new TreeSet(s);
Collections.sort(s);
s = new SortedSet(s);
Which sign can be used to indicate a logical OR ?
*
#
&
Given: 23. Object [] myObjects = { 24. new Integer(12), 25. new String("foo"), 26. new Integer(5), 27. new Boolean(true) 28. }; 29. Arrays.sort(myObjects); 30. for(int i=0; i
Compilation fails due to an error in line 23.
Compilation fails due to an error in line 29.
A ClassCastException occurs in line 29.
A ClassCastException occurs in line 31.
The value of all four objects prints in natural order.
Which command code forces IMS to find the last segment, that satisfies the SSA ?
P
D
C
L