MCQOPTIONS
Saved Bookmarks
| 1. |
Which of these lines of code will give better performance? 1. p | 8 + r >> q & 10; 2. (p | ((( 8 * r) >> q ) & 10 )) |
| A. | 2 will give better performance as it has parentheses. |
| B. | Dependent on the computer system. |
| C. | 1 will give better performance as it has no parentheses. |
| D. | Both 1 & 2 will give equal performance. |
| E. | None of these |
| Answer» E. None of these | |