정보처리기사 2021년 1회 79번

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

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

문제[edit | edit source]

79. 다음은 파이썬으로 만들어진 반복문 코드이다. 이 코드의 결과는?

>> while(True) :
print('A')
print(’B‘)
print(’C‘)
continue
print(’D‘)

  • ① A, B, C 출력이 반복된다.
  • ② A, B, C
  • ③ A, B, C, D 출력이 반복된다.
  • ④ A, B, C, D 까지만 출력된다.

풀어보기[edit | edit source]

정답[edit | edit source]

  • 1번

해설[edit | edit source]

같이 보기[edit | edit source]