1
Instrukcja
Marks: 1
z = (a - b) ? 1 : O; jest równoważna instrukcji wyboru if (a - b == O) z = 1; else z = O;
Answer: jrue x
® False yf
Correct
Marks for this submission: 1/1.
2
Marks: 2
Dany jest fragment deklaracji klasy Robot:
class Robot {
protected:
int size[3]; // szer., di., wys. w cm bool mobile;
float velocity; //w m/s // dalej już tylko metody ...
Napisz implementację konstruktora kopiującego.
Answer:
Incorrect
Marks for this submission: 0/2. You were not penalized for this submission.