557 views

2 Answers

3 votes
3 votes
A

Steps:

Convert AE27 to Binary= 1010 0111 0010 1110

Octal: Group 3 bits from right, and convert into equivalent octal number- 123456

Base-4: Group 2 bits from right, and convert into equivalent number (0,1,2,3): 22130232
0 votes
0 votes

(A72E)16

convert each digit and letter to binary 

(A72E)16=(1010011100101110)2=(make grouping of 3 digits from left side and convert each to octal)=(001 010 011 100 101 110)=(123456)8

for converting it to base 4.. make grouping of 2 digits as (10 10 01 11 00 10 11 10)2=(22130232)4

hence answer is A.

Related questions

0 votes
0 votes
0 answers
1
Sankaranarayanan P.N asked Oct 27, 2016
308 views
IN a binary tree, the number of internal nodes of degree one is 5 and the number of internal nodes of degree 2 is 10. The number of leaf nodes in the binary tree isA) 15B...
0 votes
0 votes
0 answers
2
Sankaranarayanan P.N asked Oct 27, 2016
329 views
The maximum number of edges in an acyclic undirected graph with n verticesA) n - 1B) nC) n +1D) 2n -1
0 votes
0 votes
1 answer
3
0 votes
0 votes
0 answers
4
Sankaranarayanan P.N asked Oct 27, 2016
371 views
Let P be a singly linked list. Let Q be the pointer to an intermediate node X in the list. What is the worst case time complexity of the best known algorithm to delete no...