What code optimizations techniques you follow in general
practice?
Answers were Sorted based on User's Feedback
Answer / meena
1. Elimination repeated sub-expressions.
2. Eliminating the dead- code.
3. Replacing multiplication and division by bit shift operators.
Is This Answer Correct ? | 10 Yes | 0 No |
Answer / guest
Using Design Patterns Such as FlyWeight.
Use of static variables when-ever possible
using StringBuffer instead of String coz they are immutable
Using interfaces for reducing coupling
Avoiding creating new objects, reusing existing ones
Is This Answer Correct ? | 2 Yes | 1 No |
What is prime number in java?
Give a practical example of singleton class usage?
What is general methodology?
What does it mean that strings are immutable?
Can we use different return types for methods when overridden?
Can an interface have a constructor?
What is the use of StringTokenizer class?
What is command line used for?
Whats the difference between notify() and notifyall()?
What are the advantages of java over C++?
When abstract methods are used?
What about interthread communication and how it takes place in java?