This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Web Component Certification (SCWCD/OCPJWCD) and the fly likes question from SCWCD mock test Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Certification » Web Component Certification (SCWCD/OCPJWCD)
Reply Bookmark "question from SCWCD mock test" Watch "question from SCWCD mock test" New topic
Author

question from SCWCD mock test

shivam singhal
Ranch Hand

Joined: Jul 15, 2012
Posts: 166

<html>
<body>
Result is ${"2" > 3}
</body>
</html>


a. Result is true
b. Result is false


correct ans is :: b

how can we compare a string literal with a number??
can EL automatically convert string into number??
gurpeet singh
Ranch Hand

Joined: Apr 04, 2012
Posts: 895

hi ,

yes el treates "2" as integer for the comparison. you should keep few things in mind when you come across such questions

1. EL is not java.

2 el is forgiving. it will coerce the operands to fit into the context of operators.

there are vastly different number of combinations of such expressions possible in EL . the best way to do is to make a small program and play with such expressions. cook your own expression , see the results and then analyse it.

regards
Gurpreet


OCPJP 6(100 %) OCEWCD 6(91 %)
shivam singhal
Ranch Hand

Joined: Jul 15, 2012
Posts: 166

thanks gurpeet ..
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: question from SCWCD mock test
 
Similar Threads
display data on first jsp on start of application
EL Query
Cannot forward after response has been committed
Niko's exam doubt
print value outside while loop