1. Przeanalizuj podany fragment programu i określ, co jest w nim zawarte:
Fragment programu:
#include <iostream.h>
int suma(int a, int b);
void main() {
const int x=3, a=4, b=5;
suma (a,b);
cout<< x;
};
int suma(int a, int b) {
int x = a + b;
return x;
};
A. trzy definicje funkcji.
B. dwie definicje funkcji
C. definicja jednej stałej.
D. wywołanie dwóch funkcji.
2.
Najszybszym kablem jest:
A. 10BASE5
B. 100BASET
C. 100VGAny LAN
D. 10GBASELR
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
1-D
2-C
Pozdrawiam :-)