Exploring Python Fundamentals

Exploring Python Fundamentals

University

15 Qs

quiz-placeholder

Similar activities

CodeQuest-R1

CodeQuest-R1

University

20 Qs

Programacion

Programacion

University

10 Qs

Mini Game ^_^

Mini Game ^_^

University

18 Qs

Mimas

Mimas

University

16 Qs

Python Quiz For Starters

Python Quiz For Starters

3rd Grade - Professional Development

17 Qs

CODEATHON'22

CODEATHON'22

University

20 Qs

AlgoPro Python - Sesi 1

AlgoPro Python - Sesi 1

University

10 Qs

Intro to DDP2

Intro to DDP2

University

10 Qs

Exploring Python Fundamentals

Exploring Python Fundamentals

Assessment

Quiz

Other

University

Medium

Created by

Ravindra Kumar

Used 2+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to declare a variable in Python?

let x = 10

x = 10

var x : int = 10

x := 10

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which operator is used for addition in Python?

+

-

/

*

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the main data types available in Python?

char, array, complex

float, string, number

list, set, array

int, float, str, list, tuple, dict, set, bool

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you convert an integer to a float in Python?

Apply str(integer) to change an integer to a string.

Use float(integer) to convert an integer to a float.

Use int(float) to convert a float to an integer.

Use round(integer) to convert an integer to a float.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of indentation in Python?

To add comments in the code.

To define variable types.

To increase the speed of the program.

To define code blocks and control flow.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the scope of a variable defined inside a function?

Block scope

Static scope

Local scope

Global scope

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare a variable with a numeric value in Python?

x = 5

var x = 5;

x : 5

let x = 5;

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?