1 1 vote In compiler design ‘reducing the strength’ refers to reducing the range of values of input variables code optimization using cheaper machine instructions reducing efficiency of program none of the above Compiler Design code-optimization ugcnetcse-dec2012-paper2 compiler-design + – Sanjay Sharma 4.7k views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
Best answer 2 2 votes Code optimization using cheaper machine instructions. Instead of Multiplication by 2 we can use left shift by 2 etc. Digvijay Pandey answered Jun 1, 2016 • selected Jun 1, 2016 by Sanjay Sharma Digvijay Pandey comment Share Follow See all 3 Comments 3 3 Comments reply ManojK commented Jun 5, 2016 reply Follow flag @Digvijay How Repetitive addition is cheaper machine instruction than multiplication. and How x*x is cheaper machine instruction than x2 . 0 0 replyShare Arjun commented Jun 5, 2016 reply Follow flag it depends on the architecture. But repetitive addition is never cheaper than multiplication. If there is a MUL instruction doing MUL x, x is cheaper than computing the power to 2. 2 2 replyShare Ritwik commented Jun 22, 2017 reply Follow flag Ans (B) Reference link 0 0 replyShare Please log in or register to add a comment.