3주차 파이썬 퀴즈

3주차 파이썬 퀴즈

9th - 12th Grade

12 Qs

quiz-placeholder

Similar activities

Python Strings

Python Strings

8th - 12th Grade

14 Qs

MOAC Excel 2016 Lesson 03

MOAC Excel 2016 Lesson 03

8th - 12th Grade

10 Qs

Seberapa pengetahuanmu tentang analisis data ? Kita uji kuy !

Seberapa pengetahuanmu tentang analisis data ? Kita uji kuy !

1st - 12th Grade

15 Qs

Retake Review 1

Retake Review 1

9th Grade

10 Qs

ICT Grade 10 Final Exam Practice Test

ICT Grade 10 Final Exam Practice Test

9th - 12th Grade

10 Qs

웹프로그래밍실무 - 시맨틱태그

웹프로그래밍실무 - 시맨틱태그

11th Grade

10 Qs

Excel Changing Properties and Printing

Excel Changing Properties and Printing

10th - 12th Grade

12 Qs

Workflow in the Printing Industry

Workflow in the Printing Industry

9th - 12th Grade

15 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?