Here are three examples:
TestName: DIAGNOSTIC, Q No. 72, Q Id. 1017
I do not understand why DateFormat.LONG is the only answer that is acceptable here. According to my
testing, DateFormat.MEDIUM could also be use.
TestName: DIAGNOSTIC, Q No. 53, Q Id. 1012
I do not understand why the answer to this question has to be:
if(s!=null && s.length()>0)
Why could it not be
if(s!=null && s.length()==0)
TestName: DIAGNOSTIC, Q No. 19, Q Id. 1006
interface IFace{}
class CFace implements IFace{}
class Base{}
class DFace extends CFace{}
public class ObRef extends Base{
public static void main(
String[] args) {
ObRef ob = new ObRef();
Base b = new Base();
Object o1 = new Object();
IFace i2 = new CFace();
o1 = new ObRef();
ob = (ObRef)o1;
o1 = i2;
b = ob;
b = b;
}
}