wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

11th IP 1st Periodical

Total questions: 40

Worksheet time: 1hrs 24mins

Name
Class
Date
1.

which of the following are syntactically correct strings?

a)

"this course is great"

b)

"good day'

c)

hello"

2.

what is the difference between a keyword and an identifier

a)

keyword is a user defined name and identifier is a special word that has a special meaning

b)

keyword is a special word that has a special meaning and identifier is a user defined name

c)

both are user defined

3.

find out invalid strings from the following

a)

"Hello"

b)

'Hello'

c)

"Hello'

d)

'Hello"

4.

who developed python?

a)

guido van rossum

b)

richard in 1990

5.

find the output?

x=10

y=5

print(x*y)

(a)  

6.

find the output?

a=14

print("MY FAVOURITE NO IS ",a)

(a)  

7.

find the output?

x,y=2, 6

x,y=y, x+2

print(x,y)

(a)  

8.

ALU and control unit of a computer into a single unit is known as -----

a)

cpu

b)

input unit

c)

output unit

9.

comments in python begin with ------ symbol

(a)  

10.

The input() returns the value as ----- type

(a)  

11.

python uses ----- to convert source code to object code.

(a)  

12.

------ literal represents the absence of a value

a)

numerical

b)

boolean

c)

string

d)

None

13.

facebook , whatsapp, youtube are examples of ------

a)

hardware

b)

software

c)

language processor

14.

The smallest individual unit of a program is known as -------

(a)  

15.

----- operators need only one operand to operate upon.

a)

unary

b)

binary

c)

arithmetic

16.

find input device from the following

a)

printer

b)

keyboard

c)

speaker

17.

select the keywords

a)

input()

b)

if

c)

print()

d)

all of the above

18.

data carrying part of a system bus is called -----

a)

control bus

b)

data bus

c)

i / o bus

19.

----- is a word having special meaning reserved by programming language.

a)

identifiers

b)

keywords

c)

tokens

20.

loading the operating system to the main memory of the computer is called ----

(a)  

21.

what is mean by " case sensitive" ?

a)

uppercase and lowercase letters are same meaning

b)

uppercase and lowercase letters are having different meaning

c)

english like language

22.

----- represents a real number written with a decimal point.

a)

int

b)

float

c)

boolean

23.

find the example of a unary operation.

a)

-3

b)

a-b

c)

10+20

24.

the physical electronic components of a computer are called ----

(a)  

25.

---- is a special high speed storage mechanism

(a)  

26.

A solid state drive is a -----

a)

hard disk

b)

storage mechanism

c)

printer

27.

An Antivirus s/w is an example of -------

a)

customised s/w

b)

utility software

c)

operating system

28.

which one is not a language processor?

a)

assembler

b)

interpreter

c)

compiler

d)

compression tools

29.

Microsoft internet explorer is made available as----

a)

free s/w

b)

freeware

30.

OSS means ----

(a)  

31.

Find the size of the string

"HELLO WORLD"

(a)  

32.

Find the output of the following program,

if we enter 5 as n in compile time?

n=int(input("enter a number"))

s=n*n

print(s)

(a)  

33.

write a python program to enter a number and print it.

a)

n=input("enter a number")

print(n)

b)

n=int(input("enter a number"))

print(n)

c)

n="enter a nunber"

print(n)

34.

write a python program to find the sum of two values. Give the provision to enter floating point values also.

a)

"x"=float(input("enter a value"))

"y"=float(input("enter another value"))

"z"=x+y

print("z")

b)

x=float(input("enter a value"))

y=float(input("enter another value"))

z=x+y

print(z)

c)

x=int(input("enter a value"))

y=input("enter another value")

z=x+y

print(z)

35.

data items having fixed values are called ---

(a)  

36.

python is a case sensitive language (true / false)

a)

True

b)

False

37.

to convert the read value through input() into integer type, int() is used.

a)

True

b)

False

38.

Find the output

p=q=r=39

print(q)

(a)  

39.

A secondary storage device

a)

RAM

b)

ROM

c)

pendrive

40.

write a program to display the name Sundar?

a)

print("My name is Sundar")

b)

input(my name is Sundar)