Coding in AI - Quiz 1

Coding in AI - Quiz 1

1st - 10th Grade

5 Qs

quiz-placeholder

Similar activities

Python Variables

Python Variables

6th Grade

10 Qs

MOAC Excel 2016 Lesson 7

MOAC Excel 2016 Lesson 7

8th - 12th Grade

10 Qs

Python Basics

Python Basics

6th - 12th Grade

9 Qs

Python Basics !!!!!!!!!!!!!

Python Basics !!!!!!!!!!!!!

3rd - 8th Grade

6 Qs

Python for beginners #1

Python for beginners #1

8th Grade

10 Qs

Intro to coding

Intro to coding

8th Grade

8 Qs

Intro to Python

Intro to Python

KG - University

10 Qs

Grade 6- PRINT statement in Python

Grade 6- PRINT statement in Python

6th 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'