This week's book giveaway is in the Design and Architecture forum. We're giving away four copies of Communication Patterns: A Guide for Developers and Architects and have Jacqui Read on-line! See this thread for details.
Hi Jay, I think it is looking for last CCC element, from which BBB obviously is preceding sibling. <AAA> <BBB> <CCC/> <DDD/> </BBB> <XXX> <DDD> <EEE/> <DDD/> <CCC/> <FFF/> <FFF> <GGG/> </FFF> </DDD> </XXX> <CCC> <------ last CCC Element <DDD/> </CCC> </AAA> Please corect me if I am wrong.
I have selected "False" as there is no such MultiThreadModel, but the answer is "True". The explaination for that is: MultiThreadModel is not a standard interface. It may be a user defined interface and in that case, the given statement is correct. Could someone please explain it. I just wonder if such type of questions that might have double answer will be in the real exam. Thanks, Arun
Hi all, Why does s+=i; compile correctly but s = b*2; does not ? Given short s=1; byte b=1; int i=1; I think in both case right operands prometed to int. Isn't so ? Thanks Arun