Python Basics

Python Basics

University

6 Qs

quiz-placeholder

Similar activities

Python Basics

Python Basics

6th Grade - University

10 Qs

C Viva

C Viva

University

10 Qs

Week3

Week3

University

10 Qs

Java Certification

Java Certification

9th Grade - University

11 Qs

Week #3

Week #3

University

5 Qs

Plot the Code

Plot the Code

University

10 Qs

Lesson 23

Lesson 23

1st Grade - Professional Development

7 Qs

Teste python- Unesp-Jaboticabal

Teste python- Unesp-Jaboticabal

University

10 Qs

Python Basics

Python Basics

Assessment

Quiz

Computers

University

Hard

Created by

Tasanawan Soonklang

Used 2+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Print the word "Hello" on python shell.

Print("Hello")

print("Hello")

Print(Hello)

print 'Hello'

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Data type of 3 is ___

(int, float, bool, str)

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Data type of '3' is ___

(int, float, bool, str)

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Data type of input() is ___

(int, float, bool, str)

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Data type of True is ___

(int, float, bool, str)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you want to get input x and convert x to real number,

which command will be used?

x = int(input())

x = float(input())

x = input(int)

x = input(float)