1Z0-805 무료 덤프문제 온라인 액세스
| 시험코드: | 1Z0-805 |
| 시험이름: | Upgrade to Java SE 7 Programmer |
| 인증사: | Oracle |
| 무료 덤프 문항수: | 90 |
| 업로드 날짜: | 2026-05-30 |
Two companies with similar robots have merged. You are asked to construct a new program that allows the features of the robots to be mixed and matched using composition. Given the code fragments:
public class CrusherRobot {
public void walk () {}
public void positionArm (int x, int y, int z) {}
public void raiseHammer() {}
public void dropHammer() {}
}
public class GripperRobot {
public void walk() {}
public void moveArm (int x, int y, int z) {}
public void openGripper () {}
public void closeGripper() {}
}
When applying composition to these two classes, what functionality should you extract into a new class?