3주차 파이썬 퀴즈

3주차 파이썬 퀴즈

9th - 12th Grade

12 Qs

quiz-placeholder

Similar activities

MOAC Word 2016 Lesson 1

MOAC Word 2016 Lesson 1

8th Grade - University

10 Qs

5.4 Excel Quizizz

5.4 Excel Quizizz

8th - 12th Grade

15 Qs

Systeminfo

Systeminfo

10th Grade

10 Qs

프로그래밍 1학기 정리

프로그래밍 1학기 정리

10th Grade

10 Qs

Excel 2016 Lesson 3 - Using Office Backstage

Excel 2016 Lesson 3 - Using Office Backstage

9th - 12th Grade

10 Qs

Word 2016 Lesson 1

Word 2016 Lesson 1

9th - 12th Grade

10 Qs

Python

Python

6th - 10th Grade

17 Qs

3주차 파이썬 퀴즈

3주차 파이썬 퀴즈

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

이은미 이은미

Used 1+ times

FREE Resource

12 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

아래 코드의 결과는 무엇인가요?

text = 'abcdefg'

print ( text [ 3 ] )

d

abc

c

efg

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

아래 코드의 결과는 무엇인가요?

text = 'abcdefg'

print ( text [ -2 ] )

b

ab

fg

f

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

다음 코드의 실행 결과로 알맞은 것은?

number = [ 21, 32, 13, 4, 15, 56, 47, 78 ]

print ( number [ 0 : 6 : 2 ] )

[21, 13, 15]

[21, 32, 13, 4, 15]

[32, 13, 4, 15, 56 ]

[21, 13]

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

'20180311Rainy' 와 같이 날짜와 날씨의 데이터가 있어요.

날씨만 따로 출력하려면?

info = '20180311Rainy'

weather = ________

print ( weather )

info[ 8 : ]

info[ 8 : 12 ]

info[ 9 : ]

info[ 9 : 13 ]

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

다음 코드의 실행 결과는?

a = range ( 1, 11, 1 )

print ( a )

range(1, 10)

range(1, 11)

[1,2,3,4,5,6,7,8,9,10]

[1,2,3,4,5,6,7,8,9,10,11]

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

다음 코드의 실행 결과는?

height = range(140, 180, 10 )

print( list(height) )

[140,150,160,170,180]

140,150,160,170,180

[140,150,160,170]

140,150,160,170

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

아래 코드의 실행 결과는?

a = [1, 2, 3]

b = [1, 2, 3]

print( a == b )

False

a=b

True

[1, 2, 3]

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?