Skip to main content
Chapter 8 of 11
Practice Quiz

Strings

Mizoram Board · Class 11 · Computer Science

Practice quiz for Strings — Mizoram Board Class 11 Computer Science. MCQs and questions with answers to test your preparation.

45 questions25 flashcards5 concepts

Interactive on Super Tutor

Studying Strings? Get the full interactive chapter.

Quizzes, flashcards, AI doubt-solver and a step-by-step study plan — built for practice quiz and more.

1,000+ Class 11 students started this chapter today

Quick Quiz: Strings

0/4

Tap an answer to check it instantly. No sign-up needed for these 4.

1

Which of the following is the correct way to create a string in Python?

2

What is the index of the character 'W' in the string 'Hello World'?

3

What does the expression 'Hello' * 3 return?

4

Strings in Python are immutable. This means:

45 Questions·
multiple choicemultiple correct

Sample Questions

1multiple correct

Which operators can be used with strings in Python?

Show answer

+ (concatenation), * (repetition), in (membership)

Strings support + for joining strings, * for repeating strings, and 'in' for checking if a substring exists. Subtraction (-) is not supported for strings.

2multiple choice

What will str1[2:5] return if str1 = 'Programming'?

Show answer

ogr

Slicing str1[2:5] starts from index 2 and ends at index 4 (5 is exclusive). In 'Programming': P=0, r=1, o=2, g=3, r=4. So indices 2, 3, 4 give 'ogr'.

3multiple correct

Which string methods return a boolean value?

Show answer

islower(), isupper(), startswith(), isalnum()

Methods like islower(), isupper(), startswith(), endswith(), isalnum() return True or False. The replace() method returns a modified string, not a boolean.

4multiple choice

What does len('Hello World!') return?

Show answer

12

The len() function counts all characters including spaces and punctuation. 'Hello World!' has 12 characters: H-e-l-l-o-space-W-o-r-l-d-!

+41 more questions available

Practice All

Frequently Asked Questions

What are the important topics in Strings for Mizoram Board Class 11 Computer Science?
Strings covers several key topics that are frequently asked in Mizoram Board Class 11 board exams. Focus on the core concepts listed on this page and practise related questions to build confidence.
How to score full marks in Strings — Mizoram Board Class 11 Computer Science?
Understand the core concepts first, then work through the 45 practice questions available for this chapter. Revise formulas and definitions regularly, and use flashcards for quick recall before the exam.

Sources & Official References

Content is aligned to the official syllabus. Refer to the board website for the latest curriculum.

For serious students

Get the full Strings chapter — for free.

Quizzes, flashcards, AI doubt-solver and a step-by-step study plan for Mizoram Board Class 11 Computer Science.