Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

1 fill in the blank 5 points using the ascii table linked in the introd…

Question

1 fill in the blank 5 points using the ascii table linked in the introduction to this assignment, convert the word \cat\ to binary digits. do not include quotations. each letters binary digit should be entered in the corresponding box. type your answer... type your answer... type your answer... 2 fill in the blank 5 points what text does the below binary code convert to? use the ascii table provided. 0110000 0110001 01101001 01101110 01110100 type your answer...

Explanation:

Step1: Find ASCII decimal for 'C'

ASCII decimal for 'C' is 67. Convert to 8-bit binary: $67 = 64 + 2 + 1 = 2^6 + 2^1 + 2^0$, so binary is $01000011$

Step2: Find ASCII decimal for 'a'

ASCII decimal for 'a' is 97. Convert to 8-bit binary: $97 = 64 + 32 + 1 = 2^6 + 2^5 + 2^0$, so binary is $01100001$

Step3: Find ASCII decimal for 't'

ASCII decimal for 't' is 116. Convert to 8-bit binary: $116 = 64 + 32 + 16 + 4 = 2^6 + 2^5 + 2^4 + 2^2$, so binary is $01110100$

Step4: Convert binary to text (Q2)

  • $01110000$: Decimal value is $128*0 + 64*1 + 32*1 + 16*1 + 8*0 + 4*0 + 2*0 + 1*0 = 112$, which is 'p'
  • $01100001$: Decimal value is $64 + 32 + 1 = 97$, which is 'a'
  • $01101001$: Decimal value is $64 + 32 + 8 + 1 = 105$, which is 'i'
  • $01101110$: Decimal value is $64 + 32 + 8 + 4 + 2 = 110$, which is 'n'
  • $01110100$: Decimal value is $64 + 32 + 16 + 4 = 116$, which is 't'

Combine these letters: "paint"

Answer:

  1. $01000011$

$01100001$
$01110100$

  1. paint