web technology Online Quiz - 8
Description: web technology Online Quiz - 8 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: web technology |
Which of the following container is sub class of Panel Container
Which of the following is the default value of creationPolicy property of any application?
Which of the following component can be used to present a dialog box style window?
The method in Array which is used to sort the Objects in Array on specific property in the Object is
Which of the following is correct code to define a contructor in ActionScript class?
Which of the following component is used to encapsulate data and behaviours related to the data processed by the appliation
What is NOT possible with mx:DataGrid ?
You have a requirement to create a itemrenderer which need to be used in more than one column in a datagrid. Which type of ItemRender will be good practice?
How do you get access to the object corresponding to the datagrid row inside an itemRenderer?
You need to reposition the children of a container when loadin the application based on some custom logic. Which is the correct place to trigger the logic?
//INDD DD DSN=XXXX.XXXX.INPUT,DISP=SHR,UNIT=SYSDA //OUTDD DD DSN=XXXX.XXXX.OUTPUT,DISP=(NEW,CATLG), //INDD DD DSN=XXXX.XXXX.INPUT,DISP=SHR,UNIT=SYSDA //OUTDD DD DSN=XXXX.XXXX.OUTPUT,DISP=(NEW,CATLG), // _________________ To use the same unit, that has been used by a prior DD Statement,
It is possible to modify a constant variable which is intitialized
public class Name { private String first, last; public Name(String first, String last) { this.first = first; this.last = last; } public boolean equals(Object o) { if (!(o instanceof Name)) return false; Name n = (Name)o; return n.first.equals(first) && n.last.equals(last); } public static void main(String[] args) { Set s = new HashSet(); s.add(new Name("Donald", "Duck")); System.out.println(s.contains(new Name("Donald", "Duck"))); } } What is the output?
The jewel of Java Ring is
In which case would you use a FULL OUTER JOIN ?