-
Memory Allocation
What is the difference between below 2 statements? String s1=new String("abc");String s2="abc";How it will allocate in memory?
-
Primitive Types
What happens when you add a primitive type (e.g. double) value to a collection?
-
Dependency injection
What is dependency injection ?
-
What is ACID
Answered by Jey on 2005-05-08 17:27:45: ACID is releated to transactions. It is an acronyam of Atomic, Consistent, Isolation and Durable. Transaction must following the above four properties to be a better one Atomic: It means a transaction must execute all or nothing at all. Consistent: Consistency is a transactional characteristic that must be enforced by both the transactional system...
-