Question 3 5 Marks Given the following costs and monthly sales forecasts of snow-boots of Lefarge Company create an aggregate production plan for this company, using the current workforce level of 10 workers who can each produce 200 units per month, plus by
<p><img alt="(cl) (15 p) The following Matlab code is executed. What is Matlabs output? (One graph and one numerical value.) x = [zeros(1,3)-1-2-3*ones(1,3)]; plot(x); y - sum(abs (x)); disp(y); (c2)
<p>Cryptography problem:</p><p>A ciphertext C = “TEBKFKQEBZLROPBLCERJXKBSBKQP” is known to beenciphered using the Caesar cipher (monoalphabetic). Decipher theciphertext C by using the φ(i) correlation model (statiscalanalysis). Reference on how to use
<p>What is the output of the below program with input “3”</p><p>#include<stdio.h></p><p>int fonksiyon ( int gln ) {</p><p>if( gln <= 1 )</p><p>return 1;</p><p>else return (gln*fonksiyon(gln– 1)); }</p><p>int main ( void )