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 an abstract class and abstract method?
why java is platform independent?
Is 0 true or false?
what do you mean by classloader in java?
What do you understand by an io stream?
What is sorting algorithm in java?
Name few "optional" classes introduced with java 8 ?
Explain access specifiers?
0 Answers Thomson Reuters, Virtusa,
Can an integer be null java?
What are parsing rules?
What is meant by serialisation and deserialisation?
How do you add spaces in java?