මේකට එන පිළිතුර මොකක්ද පැහැදිලි කිරීමකුත් අවශ්යයි 



| Suppose n is a variable of the type Byte and we wish to put OFF its fourth bit (from right) without disturbing any other bits. Which of the following statements will do this correctly? |
| [A]. n = n && HF7 [A]. n = n & 16 [C]. n = n & 0xF7 [D]. n = n & HexF7 [E]. n = n & 8 |
Last edited: