Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
30 views

important-question-answers-string-manipulation-in-python-class-11

Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views

important-question-answers-string-manipulation-in-python-class-11

Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

(c)

(d)

i
e et
Pr
by
Chapter – 5: STRING MANIPULATION
Very Short answer Type Questions
Q.1
m
which of the following is not a Python legal string operation?
co
(a)‟abc‟+‟abc‟ (b) „abc‟*3 (c)‟abc‟ + 3 (d)‟abc‟.lower()
u.

Ans: (c) ‗abc‘ + 3


Q.2 Out of the following operators, which ones can be used with strings?
bl

=, -, *, /, //, %, >, <>, in, not in, <=


ib

Ans: /, // and %
R

Q.3 From the string S = “CARPE DIEM”. Which ranges return “DIE” and “CAR”?
on

Ans: S[6:9] for ―DIE‖ and S[0:3] for ―CAR‖


d
de
oa
pl
U
Q.4 Given a string S = “CARPE DIEM”. If n is length/2 then what would following return?
(a) S[:n] (b) S[n:] (c) S[n:n] (d) S[1:n] (e) S[n:length-1]
Ans: (a) “CARPE‖ (b) “DIEM” (c) „ ‟ (d) “ARPE” (e) “DIE”

Q.5 What would following expression return?


(a) ”Hello World”.upper().lower() (b) ”Hello World”.lower().upper()
(c) ”Hello World”.find(“Wor”,1,6) (d) ”Hello World”.find(“Wor”)
(e) ”Hello World”.find(“wor”) (f) ”Hello World”.isalpha()
(g) ”Hello World”.isalnum() (h) ”Hello World”.isdigit()
(i) “123FGH”.isdigit()
Ans: (a) 'hello world' (b) 'HELLO WORLD'

i
(c) -1 (d) 6

et
(e) -1 (f) False

e
(g) False (h) False

Pr
(i) False
Short Answer Type Questions

by
Q.1 What is a string slice? How is it useful?

m
Ans: String Slice is a part of a string containing some contiguous characters from the string. It is
accessed from the string by providing a range in ―[ ]‖ brackets i.e. S [n:m]. Python returns all
co
the characters at indices n, n+1, n+2 . . . m-1 e.g.
u.

‗Barabanki‘.[4:7] will return ‗ban‘.


bl

Q.2 Write a python script that traverses through an input string and prints its characters
ib

in different lines – two characters per line.


Ans:
R
on
d
de
oa

Q.3 Which functions would you chose to use to remove leading and trailing white spaces
pl

from a given string?


U

Ans: Python String strip() function will remove leading and trailing whitespaces. If you want to
remove only leading or trailing spaces, use lstrip() or rstrip() function instead.
Q.4 Suggest appropriate functions for the following tasks –
(a) To check whether the string contains digits.
(b) To find the occurrence a string within another string.
(c) To convert the first letter of a string to upper case.
(d) To convert all the letters of a string to upper case.
(f) To check whether all the letters of the string are in capital letters.
(g) to remove all the white spaces from the beginning of a string.
Ans: (a) isalnum() (b) find() (c) capitalize()
(d) upper() (f) isupper() (g) lstrip()
Q.5 Find the errors -
s=”PURA VIDA”
Print(s[9] + s[9:15])
Ans: Here the error is : Sting index out of range.

Q.6 Find the output – if we give input as “Hello”

i
e et
Ans: output 1 output2

Pr
by
m
co
u.

Skill Based Questions


bl

Q.1 WAP to print following pattern without using any nested loop.
#
ib

## Ans:
R

###
on

####
#####
d

Q.2 WAP to print the number of occurrences of a substring into a line.


de

Ans:
oa
pl
U
Prepared By: Sanjeev Bhadauria & Neha Tyagi

Q.3 WAP to check the given string is palindrome or not.


Ans:

i
e et
Pr
Q.4 WAP that:
o Prompt the user for a string

by
o Extract all the digits from the string.
If there are digits

m
o
Sum the collected digits together.
co
Printout:
u.

The original string


bl

The digits
ib

The sum of the digits


o If there are no digits
R

Print the original string


on

A message “Has no Digits”


Ans:
d
de
oa
pl
U

Chapter – 6: DEBUGGING PROGRAMS


Short answer Type Questions
Q.1 What do you understand by Syntax errors and Semantics errors?

You might also like