Coding in AI - Quiz 1

Coding in AI - Quiz 1

1st - 10th Grade

5 Qs

quiz-placeholder

Similar activities

S1 Microbit Assessment

S1 Microbit Assessment

7th Grade

10 Qs

Year 6 Operators

Year 6 Operators

6th Grade

10 Qs

Python Selection

Python Selection

8th - 9th Grade

10 Qs

Python Math

Python Math

1st - 12th Grade

10 Qs

Python Inputs

Python Inputs

7th - 8th Grade

10 Qs

Python Basic

Python Basic

6th - 8th Grade

10 Qs

Python Statements

Python Statements

5th - 7th Grade

10 Qs

Loops

Loops

9th - 12th Grade

10 Qs

Coding in AI - Quiz 1

Coding in AI - Quiz 1

Assessment

Quiz

Computers

1st - 10th Grade

Hard

Created by

Kim Lim

Used 3+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the datatype which represents a whole number?

String

Boolean

Float

Integer

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output when following code is executed?


print("D", end = ' ')

print("C", end = ' ')

print("B", end = ' ')

print("A", end = ' ')

DCBA

A, B, C, D

D C B A

D, C, B, A will be displayed on separate rows

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

What is the expected output, when the following code is executed?

Hello MARY

Hello..MARY

Hello MARY

None

Hello MARY

Hello MARY

sayHello('MARY')

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

What is the output of the following?

1 2 3 4 5 6 7 will be displayed on separate rows

1 2 3 4 5 6 will be displayed on separate rows

1 2 3 4 5 6

none of the above

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

What is the missing expression for the following code?

'p' in data

any((c == 'p') for c in data)

data.find('p')==-1

data[0:3]=='p'