Python FA-01 Pre-Test

Python FA-01 Pre-Test

7th - 11th Grade

10 Qs

quiz-placeholder

Similar activities

PI Mod 1 quiz

PI Mod 1 quiz

9th - 12th Grade

10 Qs

PRA TEST KE 2 INFORMATIKA

PRA TEST KE 2 INFORMATIKA

10th Grade

14 Qs

Getting Started with Python

Getting Started with Python

11th Grade

15 Qs

PYTHON PROGRAMMING FUNDAMENTALS

PYTHON PROGRAMMING FUNDAMENTALS

11th Grade

15 Qs

CodeTigers Python 101

CodeTigers Python 101

KG - Professional Development

10 Qs

Python - Y8 lesson 1

Python - Y8 lesson 1

8th Grade

12 Qs

CO - 1 Quiz - 1-DB_Python Basic

CO - 1 Quiz - 1-DB_Python Basic

10th Grade - University

15 Qs

Python

Python

8th Grade

11 Qs

Python FA-01 Pre-Test

Python FA-01 Pre-Test

Assessment

Quiz

Computers

7th - 11th Grade

Hard

Created by

NIRMALRAJ M

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which are all the features of Python Programming

Interactive

Interpreted

Object-Oriented

High-level Language

General Purpose

Answer explanation

Python is a popular general-purpose interpreted, interactive, object-oriented, and high-level programming language.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Who developed Python Programming Language?

Guido van Rossum

Wick van Rossum

Rasmus Lerdorf

Niene Stom

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Select the correct statement:

  1. 1. In Interactive mode, user can save & edit python code

  2. 2. In Interactive mode, user can see the result immediately

  1. 1. true 2. false

  1. 1. false 2. true

Both are true

Both are false

Answer explanation

Media Image

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

a program that reads the high level program (source code) and executes the program line by line. Then, finally performs computations and prints the output

Compiler

Interpreter

Assembly Code

Machine Code

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Python command used for output function is

print("Hello");

printf("Hello");

print("Hello")

printf("Hello");

Answer explanation

In Python, print() function prints the message to the screen or any other standard output device.

Syntax: print(object(s), sep=separator, end=end, file=file, flush=flush)


Eg: print("Hello")

x = "apple"

print(x)

6.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which are following are true about Python Variables

A location in memory to store data

We do not need to declare variables before using them or declare their type

It is “statically typed”

All the Above

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of this program

a = 10

b = 3

result = a // b

print("result", result)

1

3

3.33

3.4

Answer explanation

The // operator in Python is used to perform floor division, which returns the largest integer less than or equal to the quotient of the division

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?