Python Basics

Python Basics

University

6 Qs

quiz-placeholder

Similar activities

CS Open House

CS Open House

University

10 Qs

Summer Code Camp - Lesson 1

Summer Code Camp - Lesson 1

University

10 Qs

Basic Computer

Basic Computer

8th Grade - University

10 Qs

C++ Array Quiz

C++ Array Quiz

University

10 Qs

Node.js

Node.js

University

10 Qs

PHP Introduction - Assignment 1

PHP Introduction - Assignment 1

University

10 Qs

margaret hamilton

margaret hamilton

University

10 Qs

BASIC HTML

BASIC HTML

University

9 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)