Hint: Convert the decimal number first to binary, from binary it is easy to convert to octal and hexadecimal by spiting the binary number into 3-bit or 4-bit groups.
1.2. 776.1(8) ® ? (16);
® ? (3);
® ? (2/10);
Hint: First convert the octal number to binary, from binary to hexadecimal and decimal, from decimal to base 3.
1.3. 1001010110.00100101 (2/10) ® ? (16);
® ? (8).
Hint: First convert the binary-decimal number to decimal, after that to binary. From binary to octal and hexadecimal is a piece of lemon cake.