When selecting rows from database, is filtering being done by SQL or by java. Referencing and de-referencing objects, especially in recursion. File processing, are you buffering your reads or reading … more →
Wake up and smell the javajavasnippet wrote 8 months ago: What is a Marker Interface? – An interface with no methods. Example: Serializable, Remote , Cl … more →
sk wrote 1 year ago: Q: What is the difference between an Interface and an Abstract class? A: An abstract class can have … more →
James wrote 1 year ago: I happened to read about a funny java interview. Here are some excerpts: (Beware: Never answer like … more →
karthicksundararajan wrote 2 years ago: This post is the continuation of my previous post about interviews. People started asking that did I … more →
javafoo wrote 4 years ago: When selecting rows from database, is filtering being done by SQL or by java. Referencing and de-ref … more →
javafoo wrote 4 years ago: We do a lot of this unconsciously during code reviews, but when asked we turn a blank face. First th … more →
javafoo wrote 4 years ago: Always pass by value, if you ever say pass by reference, you will be rejected for sure. (in the inte … more →
javafoo wrote 4 years ago: Checked exceptions are checked at compile time (not exactly checked, but the compiler knows will occ … more →
javafoo wrote 4 years ago: Interface only provides the contract, does not add default behaviour, whereas abstract classes provi … more →