정보처리기사 2021년 2회 64번

From IT Wiki

과목: 프로그래밍 언어 활용

문제[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번

해설[edit | edit source]

같이 보기[edit | edit source]