मराठी

Science (English Medium) इयत्ता ११ - CBSE Question Bank Solutions for Computer Science (Python)

Advertisements
[object Object]
[object Object]
विषय
मुख्य विषय
अध्याय
Advertisements
Advertisements
Computer Science (Python)
< prev  41 to 60 of 234  next > 

Consider the following string mySubject:

mySubject = "Computer Science"

What will be the output of the following string operation:

print(mySubject[:: -2])

[8] Strings
Chapter: [8] Strings
Concept: undefined >> undefined

Consider the following string mySubject:

mySubject = "Computer Science"

What will be the output of the following string operation:

print(2*mySubject)

[8] Strings
Chapter: [8] Strings
Concept: undefined >> undefined

Advertisements

Write a program to read a list of n integers (positive as well as negative). Create two new lists, one having all positive numbers and the other having all negative numbers from the given list. Print all three lists.

[9] Lists
Chapter: [9] Lists
Concept: undefined >> undefined

Write a program to read a list of elements. Modify this list so that it does not contain any duplicate elements, i.e., all elements occurring multiple times in the list should appear only once.

[9] Lists
Chapter: [9] Lists
Concept: undefined >> undefined

Consider the following tuples, tuple1 and tuple2:

tuple1 = (23,1,45,67,45,9,55,45)
tuple2 = (100,200)

Find the output of the following statement:

print(tuple1.index(45))
[10] Tuples and Dictionaries
Chapter: [10] Tuples and Dictionaries
Concept: undefined >> undefined

Consider the following tuples, tuple1 and tuple2:

tuple1 = (23,1,45,67,45,9,55,45)
tuple2 = (100,200)

Find the output of the following statement:

print(tuple1.count(45))
[10] Tuples and Dictionaries
Chapter: [10] Tuples and Dictionaries
Concept: undefined >> undefined

Consider the following tuples, tuple1 and tuple2:

tuple1 = (23,1,45,67,45,9,55,45)
tuple2 = (100,200)

Find the output of the following statement:

print(len(tuple2))
[10] Tuples and Dictionaries
Chapter: [10] Tuples and Dictionaries
Concept: undefined >> undefined

Consider the following tuples, tuple1 and tuple2:

tuple1 = (23,1,45,67,45,9,55,45)
tuple2 = (100,200)

Find the output of the following statement:

print(max(tuple1))
[10] Tuples and Dictionaries
Chapter: [10] Tuples and Dictionaries
Concept: undefined >> undefined

Consider the following tuples, tuple1 and tuple2:

tuple1 = (23,1,45,67,45,9,55,45)
tuple2 = (100,200)

Find the output of the following statement:

print(min(tuple1))
[10] Tuples and Dictionaries
Chapter: [10] Tuples and Dictionaries
Concept: undefined >> undefined

Consider the following tuples, tuple1 and tuple2:

tuple1 = (23,1,45,67,45,9,55,45)
tuple2 = (100,200)

Find the output of the following statement:

print(sum(tuple2))
[10] Tuples and Dictionaries
Chapter: [10] Tuples and Dictionaries
Concept: undefined >> undefined

Consider the following tuples, tuple1 and tuple2:

tuple1 = (23,1,45,67,45,9,55,45)
tuple2 = (100,200)

Find the output of the following statement:

p r i n t ( s o r t e d ( t u p l e 1 ) )
print(tuple1)
[10] Tuples and Dictionaries
Chapter: [10] Tuples and Dictionaries
Concept: undefined >> undefined

Write a program to input the names of n students and store them in a tuple. Also, input a name from the user and find if this student is present in the tuple or not. We can accomplish these by:

using the built-in function

[10] Tuples and Dictionaries
Chapter: [10] Tuples and Dictionaries
Concept: undefined >> undefined

Every mode of transport utilizes a reservation system to ensure its smooth and efficient functioning. If you analyze you would find many things in common. You are required to identify any one mode of transportation and prepare a reservation system for it. For example, let us look at the Railway reservation system we talked about earlier. The complex task of designing a good railway reservation system is seen as designing the different components of the system and then making them work with each other efficiently. Possible subsystems are shown in Figure 1. Each of them may be modelled using functions.

Write a python code to automate the reservation needs of the identified mode of transport.

Railway reservation system

[10] Tuples and Dictionaries
Chapter: [10] Tuples and Dictionaries
Concept: undefined >> undefined

Preeti celebrated her birthday with her family. She was excited to share the moments with her friend Himanshu. She uploaded selected images of her birthday party on a social networking site so that Himanshu can see them. After a few days, Preeti had a fight with Himanshu. The next morning, she deleted her birthday photographs from that social networking site, so that Himanshu cannot access them. Later in the evening, to her surprise, she saw that one of the images which she had already deleted from the social networking site was available with their common friend Gayatri. She hurriedly enquired Gayatri “Where did you get this picture from?”. Gayatri replied, “Himanshu forwarded this image a few minutes back”.

Help Preeti to get answer to the following question. Give justification for your answer so that Preeti can understand them clearly.

How could Himanshu access an image which I had already deleted?

[11] Societal Impact
Chapter: [11] Societal Impact
Concept: undefined >> undefined

Preeti celebrated her birthday with her family. She was excited to share the moments with her friend Himanshu. She uploaded selected images of her birthday party on a social networking site so that Himanshu can see them. After a few days, Preeti had a fight with Himanshu. The next morning, she deleted her birthday photographs from that social networking site, so that Himanshu cannot access them. Later in the evening, to her surprise, she saw that one of the images which she had already deleted from the social networking site was available with their common friend Gayatri. She hurriedly enquired Gayatri “Where did you get this picture from?”. Gayatri replied, “Himanshu forwarded this image a few minutes back”.

Help Preeti to get the answer to the following question. Give justification for your answer so that Preeti can understand them clearly.

Had these images not been deleted from my digital footprint?

[11] Societal Impact
Chapter: [11] Societal Impact
Concept: undefined >> undefined

Preeti celebrated her birthday with her family. She was excited to share the moments with her friend Himanshu. She uploaded selected images of her birthday party on a social networking site so that Himanshu can see them. After a few days, Preeti had a fight with Himanshu. The next morning, she deleted her birthday photographs from that social networking site, so that Himanshu cannot access them. Later in the evening, to her surprise, she saw that one of the images which she had already deleted from the social networking site was available with their common friend Gayatri. She hurriedly enquired Gayatri “Where did you get this picture from?”. Gayatri replied, “Himanshu forwarded this image a few minutes back”.

Help Preeti to get the answer to the following question. Give justification for your answer so that Preeti can understand them clearly.

Can anybody else also access these deleted images?

[11] Societal Impact
Chapter: [11] Societal Impact
Concept: undefined >> undefined

List down the steps you need to take in order to ensure -

smart and safe Internet surfing.

[11] Societal Impact
Chapter: [11] Societal Impact
Concept: undefined >> undefined

Neerja is a student of Class XI. She has opted for Computer Science. Neerja prepared the project assigned to her. She mailed it to her teacher. The snapshot of that email is shown below.

Find out which of the following email etiquettes are missing in it. Justify your answer.

  1. The subject of the mail
  2. Formal greeting
  3. Self-explanatory terms
  4. Identity of the sender
  5. Regards
[11] Societal Impact
Chapter: [11] Societal Impact
Concept: undefined >> undefined

Suhana is down with fever. So, she decided not to go to school tomorrow. Next day, in the evening she called up her classmate, Shaurya and enquired about the computer class. She also requested him to explain the concept. Shaurya said, "Mam taught us how to use tuples in python". Further, he generously said, "Give me some time, I will email you the material which will help you to understand tuples in python". Shaurya quickly downloaded a 2-minute clip from the Internet explaining the concept of tuples in python. Using video editor, he added the text "Prepared by Shaurya" in the downloaded video clip. Then, he emailed the modified video clip to Suhana. This act of Shaurya is an example of:

[11] Societal Impact
Chapter: [11] Societal Impact
Concept: undefined >> undefined

What is the advantage of preparing digital content in the Indian language using UNICODE font?

[2] Encoding Schemes and Number System
Chapter: [2] Encoding Schemes and Number System
Concept: undefined >> undefined
< prev  41 to 60 of 234  next > 
Advertisements
Advertisements
CBSE Science (English Medium) इयत्ता ११ Question Bank Solutions
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ Biology
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ Chemistry
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ Computer Science (C++)
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ Computer Science (Python)
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ English Core
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ English Elective - NCERT
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ Entrepreneurship
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ Geography
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ Hindi (Core)
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ Hindi (Elective)
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ History
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ Mathematics
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ Physics
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ Political Science
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ Psychology
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ Sanskrit (Core)
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ Sanskrit (Elective)
Question Bank Solutions for CBSE Science (English Medium) इयत्ता ११ Sociology
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×