메뉴로 건너 뛰기 내용으로 건너 뛰기
커뮤니티 COMMUNITY
제목 [Jason Lee] APCSA FRQ
0 0
작성자 ste*** 등록일 2020-05-14 오후 1:28:09

선생님 자꾸 질문 드려서 정말 죄송합니다ㅠ

여전히 Demo practice exam의 subquestion중 open question을 어떤식으로 서술해야 할지 감이 잘 안오는데ㅠ 혹시 가능하시다면 샘플 답안같은게 있으시다면 이 질문 답변 혹은 이메일로 보내주실수 있을까요?

불가능하시다면 정말 죄송하고ㅠ 가능하시다면 정말 감사드릴거 같아요

혼자 쌤 인강으로 독학을 하다보니 질문 가능한 곳이 여기 게시판 밖에 없네요

제 이메일은 zzzspa@naver.com 입니다!

혹시 가능하시다면 여기 질문 답변칸 혹은 이메일로 보내드리면 정말 감사할거 같아요ㅠ

다시 한번 똑같은 질문 드린점 죄송합니다ㅠ

2020-05-16 오전 1:50:23

1. header

public Gizmo getCheapestGizmoByMaker(String maker) 

2. identify: new or modified variables, constants, constructors, or methods

include: what(name) + brief purpose

- need a new variable to store price for each Gizmo : let's call it 'price'

- need a accessor method to return the value of variable 'price'

- this variable 'price' needs to be instantiated in the Constructor

3. describe: visibility, type(or return type), parameters, implementation.

- the variable 'price' is private and type double. 

  it is a instance variable in class Gizmo, to be instantiated in its constructor

- the accessor method is public and has return type double(same as 'price')

  no parameters necessary, just accesses and returns the value of 'price'

- constructor of class Gizmo needs to receive a double value as parameter, 

  which then can set the value of price.

Top