For x 110010 of type BITVECTOR5 DOWNTO 0 determine the valu
     For x = \"110010\", of type BIT_VECTOR(5 DOWNTO 0), determine the values of the shift operations listed in the column on the left below. 
  
  Solution
Solution:
With reference from google .. I got the complete question
a)x SLL 3 = \"010000\"
b)x SLA -2= \"111100\"
c)x SRA 2 = \"111100\"
d)x ROL 1= \"100101\"
e)x ROR -3 = \"010110\"
here are the answers for your question:
a)x(2 DOWNTO 0) & \"000\";
b) x(5) & x(5) & x(5 DOWNTO 2);
c) x(5) & x(5) & x(5 DOWNTO 2);
d) x(4 DOWNTO 0) & x(5);
e)x(2 DOWNTO 0) & x(5 DOWNTO 3);

