Which of these lines of Java code will give better performance?
1. a | 4 + c >> b & 7; 2. (a | ((( 4 * c ) >> b ) & 7 ))
1. a | 4 + c >> b & 7; 2. (a | ((( 4 * c ) >> b ) & 7 ))Which of these lines of Java code will give better performance?
1. a | 4 + c >> b & 7; 2. (a | ((( 4 * c ) >> b ) & 7 )) Correct Answer Both 1 & 2 will give equal performance
মোঃ আরিফুল ইসলাম
Feb 20, 2025