정보처리기사 2022년 2회 65번

From IT Wiki
Revision as of 01:01, 22 October 2022 by Maintenance script (talk | contribs) (Imported from text file)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

문제[edit | edit source]

65. 다음 Python 프로그램의 실행 결과가 [실행결과]와 같을 때, 빈칸에 적합한 것은?

x=20
if x==10:
print('10')
( ) x==20:
print('20')
else:
print('other')

실행결과: 20

  • ① either
  • ② elif
  • ③ else if
  • ④ else

풀어보기[edit | edit source]

정답[edit | edit source]

  • 2번

해설[edit | edit source]

같이 보기[edit | edit source]