1. Каков результат выполнения этой программы? Basic Pascal C++ Public Dim a As Integer a=3 Function f(b As Integer) As Integer Dim a As Integer a=2 f=a*b End Function a=f(f(a)) Print a End var a: integer; function f(b: integer): integer; begin a:=2; f:=a*b; end; begin a:=3; a:=f(f(a)); write(a); end. #include #include using namespace std; int a=2; int f(int b) { return a*b; } int main() { int a=3; a=f(f(a)); cout << a; getch(); return 0; } 1) 2; 2) 8; 3) 12; 4) 16.