Concept:Convert the binary base to base ten, then evaluate the power, and finally convert back to binary.Explanation:101two=1×22+0×21+1×20=4+0+1=5ten.So (101two)3=(5ten)3=125ten.Convert 125ten to binary: 125=64+32+16+8+4+1.This gives 125ten=1111101two.Answer:(101two)3=1111101two.Correct option: C.