Revision-class 11

Revision-class 11

11th Grade

10 Qs

quiz-placeholder

Similar activities

python basics(vaishali)

python basics(vaishali)

11th - 12th Grade

9 Qs

CSA Lessons 1 - 4

CSA Lessons 1 - 4

10th - 12th Grade

15 Qs

Python(1)

Python(1)

11th Grade

10 Qs

Iteration

Iteration

9th - 12th Grade

15 Qs

Python Strings

Python Strings

8th - 12th Grade

14 Qs

Python Quiz for Grade 11 List, Tuple &  Strings

Python Quiz for Grade 11 List, Tuple & Strings

11th Grade

10 Qs

Java Strings

Java Strings

9th - 12th Grade

12 Qs

Hangman Game - Programming Questions

Hangman Game - Programming Questions

7th - 11th Grade

15 Qs

Revision-class 11

Revision-class 11

Assessment

Quiz

Computers

11th Grade

Hard

Created by

DeepaSanil DeepaSanil

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Binary equivalent of 25 is__________

110011

1001

11001

10011

2.

FILL IN THE BLANK QUESTION

2 mins • 1 pt

Evaluate the following expression if a=4, b=7 and c=6

       F=a+(b-c*a)+40

3.

FILL IN THE BLANK QUESTION

2 mins • 1 pt

Write the output:

x=10

x=x*15

x=x-30

x,y=x-5,10

print(x,y)

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Suppose L=[ 23,13,"string",[7,8,9],90.5,65,"tuple"]

a) print(L[4:])

b) print(len(L))

c) print(L[3][1])

d) print(L[-3])

e) print(L[-7:-5])

Write the output based on the above list.

a) [90.5, 65, 'tuple']

b) 8

c) 7

d) 65

e) [23, 13,"string"]

a) [90.5]

b) 7

c) 8

d) 90.5

e) [23, 13."string"]

a) [90.5, 65,]

b) 9

c) 8

d) 90.5

e) [23, 13]

a) [90.5, 65, 'tuple']

b) 7

c) 8

d) 90.5

e) [23, 13]

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Consider the following string myAddress:

s1 = "Exams@2023"

a) print(s1.isdigit ())

b) print(s1.islower())

c) print(s1.isalpha())

d) print(s1[1:4])

e) print(s1[-4:-1])

a) True

b) True

c) True

d) xam

e) 202

a) True

b) True

c) False

d) Exam

e) 2023

a) False

b) False

c) False

d) Exam

e) 2023

a) False

b) False

c) False

d) xam

e) 202

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Write the output of the following code fragment:

for i in range(10,20,2):

if i%3==0:

print("Welcome")

Welcome

Welcome

Welcome

Welcome

Welcome

Welcome

Welcome

Welcome

Welcome

Welcome

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

L=[22,33,44,55,66,78,10]

print(L[1]+L[-1])

print(len(L))

0

8

0

7

43

8

43

7

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?