

InterviewSolution
Saved Bookmarks
1. |
Which of the following expressions can be used to multiply a given number ‘a’ by 4?(a) a4This question was addressed to me in final exam.I need to ask this question from Bitwise in section Precedence and Associativity, Bitwise & Boolean of Python |
Answer» The CORRECT OPTION is (a) a<<2 |
|