1. 3)
2. 3) номер столбца или строки от 0 до 7, 7 в двоичном 111, 3 бита т.е. поле - это номер строки + номер столбца = 3+3 = 6 бит
3. 4) в байте 8 бит, 32/8
4. 4)
5. 2)
6. 3)
7. 3)
8. 1)
9. 4)
10. 1)
11. 4)
12. 2)
13. 3)
14. 3)
15. 3)
16. 4)
17. переключения между запущенными приложениями
18. C:\DAY\GAMES\tetris.com
19. txt
20. текстовые редакторы
21. C:\MY\GAMES\lines.exe
Program n1;
Uses CRT;
Const n=5;
Var x: array[1..n,1..n] of integer;
a: array[1..n] of integer;
i,p,s,j: integer;
begin
ClrScr;
Randomize;
For i:=1 to n do
For j:=1 to n do
x[i,j]:=random(100);
j:=1;
Repeat
For i:=1 to n do
If a[j]<x[i,j] then a[j]:=x[i,j];
write(a[j]:4);
j:=j+1;
Until j=n+1;
p:=1;
writeln;
For i:=1 to n do
If i mod 2=0 then s:=s+a[i]
else p:=p*a[i];
writeln('Proizvedenie =',p,',Summa =',s);
readln
end.