Answer:
final thoughts
Explanation:
it is generally what we should do so that people can know what your opinion on it at the end
Answer:
the answer is a, b,d on edg.
Explanation:
Answer:Amino Acid
Explanation:
All proteins have amino acids
Answer:
A is the input array
B = []
; %B is initially an empty array
for i = 1:length(A)/2 %iterates over A until the midpoint of A
B(i) = A(i) + A(end + 1 - i); %This adds the numbers from the first half and %second half of A, and stores in B
end
disp(B)