data type

data type

Professional Development

5 Qs

quiz-placeholder

Similar activities

CSH-15-06-2021

CSH-15-06-2021

Professional Development

10 Qs

KUIS TENTANG MATRIKS

KUIS TENTANG MATRIKS

1st Grade - Professional Development

10 Qs

Optimalisasi Pemanfaatan Akun Belajar.id

Optimalisasi Pemanfaatan Akun Belajar.id

Professional Development

10 Qs

Topic Quiz-1 : Python Basics

Topic Quiz-1 : Python Basics

Professional Development

10 Qs

Apache Spark

Apache Spark

Professional Development

10 Qs

Power Apps Introduction

Power Apps Introduction

Professional Development

10 Qs

Prova de Análise e Projeto de Sistemas

Prova de Análise e Projeto de Sistemas

Professional Development

10 Qs

JavaScript Quiz

JavaScript Quiz

Professional Development

10 Qs

data type

data type

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Shashi Weerasooriya

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following code example would print the data type of x, what data type would that be?

x = 5

print(type(x))

str

int

flot

bool

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following code example would print the data type of x, what data type would that be?

x = "Hello World"

print(type(x))

bool

int

flot

str

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following code example would print the data type of x, what data type would that be?

x = 20.5

print(type(x))

int

bool

str

float

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following code example would print the data type of x, what data type would that be?

x = ["apple", "banana", "cherry"]

print(type(x))

int

str

bool

list

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following code example would print the data type of x, what data type would that be?


x = True

print(type(x))

str

int

bool

list