Answer:
Check the explanation
Explanation:
% iterate through each column (outer loop) , then iterate rows-1 (inner loop)
%take product of adjacent rows
mat = input('enter 5 by 5 matrix : ');
[R,C] = size(mat);
max_prod =0;
for c =[1:C]
for r=[1:(R-1)]
temp = mat(r,c)*mat((r+1),c);
if max_prod<temp
max_prod=temp;
end
end
end
fprintf('Greatest product : %i\n', max_prod)
Kindly check the output in the attached image below.
Answer Explanation:
Business intelligence is defined as the strategies and technologies used by companies for the data analysis of business information it tell us also about predictive views of business operation.
THE MOST CONSISTENT ITEMS REGARDLESS OF SOFTWARE USED IN BI ARE :
- data analyst has the most responsibility of BI he is the most important part of BI
- It is the interconnected process of inspection changing and modeling
- data analysis is hugely aided by data mining
Answer:
1 1 1 1 1 1
Explanation:
You copy the first location to the second, and then the second to the third, and so on. Effectively the value of the first location (1) is copied to all locations.