Given:1111101Binary to Decimal-each value is multiplied by 2^(n) — starting from left to right — followed by added all togethern is increasing1 x 2⁰ = 10 x 2¹ = 01 x 2² = 41 x 2³ = 81 x 2⁴ = 161 x 2⁵ = 321 x 2⁶ = 641+4+8+16+32+64= 125Binary to Octal-divide sections by 3 then use 421 Method0|0|1 1|1|1 1|0|14|2|1 4|2|1 4|2|11 4+2+1 4+1= 175Binary to Hexadecimal-divide sections by 4, then use 8421-uses 1,2,3,4,5,6,7,8,9,A,B,C,D,E,F0|1|1|1 1|1|0|18|4|2|1 8|4|2|14+2+1 8+4+1=7 =13 or D=7D