정보처리기사 2021년 2회 64번
From IT Wiki
Revision as of 01:00, 22 October 2022 by Maintenance script (talk | contribs) (Imported from text file)
과목: 프로그래밍 언어 활용
문제[edit | edit source]
64. 다음 파이썬(Python) 프로그램이 실행되었을 때의 결과는?
class FourCal:
def setdata(sel, fir, sec):
sel.fir=fir
sel.sec=sec
def add(sel):
result=sel.fir+sel.sec
return result
a=FourCal()
a.setdata(4, 2)
print(a.add( ))
- ① 0
- ② 2
- ③ 4
- ④ 6
풀어보기[edit | edit source]
정답[edit | edit source]
- 4번