Answer:
"software binary".
Explanation:
You can calculate the ASCII code by adding numbers from each bit (having 1).
Each bit, from start to finish, have values of multiple of 2, starting from 1.
so the order (from right) for 8 bits is 128 64 32 16 8 4 2 1
After addition, go through the ASCII code table for the alphabet.
////////////////////////////////////////////////////////
0111-0011 = 115 ASCII code = 's'
0110-1111 = 111 ASCII code = 'o'
0110-0110 = 102 ASCII code = 'f'
0111-0100 = 116 ASCII code = 't'
0111-0111 = 119 ASCII code = 'w'
0110-0001 = 97 ASCII code = 'a'
0111-0010 = 114 ASCII code = 'r'
0110-0101 = 101 ASCII code = 'e'
////////////////////////////////////////////////////////
0110-0010 = 98 ASCII code = 'b'
0110-1001 = 105 ASCII code = 'i'
0110-1110 = 110 ASCII code = 'n'
0110-0001 = 97 ASCII code = 'a'
0111-0010 = 114 ASCII code = 'r'
0111-1001 = 121 ASCII code = 'y'