Yes, if A and B are computable then AB is computable.

To decide if xAB, run u(x), defined as follows.

  u(x):
  if xA or xB then
    answer yes
  else
    answer no
The tests for membership in A and B can be done because A and B are computable.