English

Science (English Medium) Class 11 - CBSE Question Bank Solutions for Computer Science (Python)

Advertisements
[object Object]
[object Object]
Subjects
Popular subjects
Topics
Advertisements
Advertisements
Computer Science (Python)
< prev  21 to 40 of 362  next > 

Prove with the help of an example that the variable is rebuilt in case of immutable data types.

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

TypeError occurs while statement 2 is running. Give reason. How can it be corrected?

>>> tuple1 = (5)         #statement 1
 >>> len(tuple1)         #statement 2
[0.1] Tuples and Dictionaries
Chapter: [0.1] Tuples and Dictionaries
Concept: undefined > undefined

Advertisements

Write a program to read the email IDs of n number of students and store them in a tuple. Create two new tuples, one to store only the usernames from the email IDs and the second to store domain names from the email IDs. Print all three tuples at the end of the program. [Hint: You may use the function split()]

[0.1] Tuples and Dictionaries
Chapter: [0.1] 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:

writing a user-defined function

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

A bank is a financial institution that is involved in borrowing and lending money. With advancements in technology, online banking, also known as internet banking allows customers of a bank to conduct a range of financial transactions through the bank’s website anytime, anywhere. As part of the initial investigation, you are suggested to

  • collect a bank application form. After careful analysis of the form, identify the information required for opening a savings account. Also, enquire about the rate of interest offered for a saving account.
  • The basic two operations performed on an account are Deposit and Withdrawal. Write a menu-driven program that accepts either of the two choices of Deposit and Withdrawal, then accepts an amount, performs the transaction, and accordingly displays the balance. Remember, every bank has a requirement for a minimum balance which needs to be taken care of during withdrawal operations. Enquire about the minimum balance required in your bank.
  • Collect the interest rates for opening a fixed deposit in various slabs in a savings bank account. Remember, rates may be different for senior citizens.

Finally, write a menu-driven program having the following options (use functions and appropriate data types):

  • Open a savings bank account
  • Deposit money
  • Withdraw money
  • Take details, such as the amount and period for a Fixed Deposit, and display its maturity amount for a particular customer.
[0.1] Tuples and Dictionaries
Chapter: [0.1] Tuples and Dictionaries
Concept: undefined > undefined

Participating in a quiz can be fun as it provides a competitive element. Some educational institutes use it as a tool to measure the knowledge level, abilities, and/or skills of their pupils either on a general level or in a specific field of study. Identify and analyze popular quiz shows and write a Python program to create a quiz that should also contain the following functionalities besides the one identified by you as a result of your analysis.

  • Create an administrative user ID and password to categorically add, modify, or delete a question.
  • Register the student before allowing her or him to play a quiz.
  • Allow selection of category based on the subject area.
  • Display questions as per the chosen category.
  • Keep the score as the participant plays.
  • Display the final score.
[0.1] Tuples and Dictionaries
Chapter: [0.1] Tuples and Dictionaries
Concept: undefined > undefined

Our heritage monuments are our assets. They are a reflection of our rich and glorious past and an inspiration for our future. UNESCO has identified some Indian heritage sites as World heritage sites. Collect the following information about these sites:

  • What is the name of the site?
  • Where is it located?
    District
    State
  • When was it built?
  • Who built it?
  • Why was it built?
  • The website link (if any).

Write a Python program to

  • create an administrative user ID and password to add, modify or delete an entered heritage site in the list of sites.
  • display the list of world heritage sites in India.
  • search and display information about a world heritage site entered by the user.
  • display the name(s) of world heritage site(s) on the basis of the state input by the user.
[0.1] Tuples and Dictionaries
Chapter: [0.1] Tuples and Dictionaries
Concept: undefined > undefined

Give the full form of ASCII.  

[0.02] Encoding Schemes and Number System
Chapter: [0.02] Encoding Schemes and Number System
Concept: undefined > undefined

How does a computer understand the following text?

(hint: 7-bit ASCII code).

HOTS

[0.02] Encoding Schemes and Number System
Chapter: [0.02] Encoding Schemes and Number System
Concept: undefined > undefined

How does a computer understand the following text?

(hint: 7-bit ASCII code).

Main

[0.02] Encoding Schemes and Number System
Chapter: [0.02] Encoding Schemes and Number System
Concept: undefined > undefined

How does a computer understand the following text?

(hint: 7-bit ASCII code).

CaSe

[0.02] Encoding Schemes and Number System
Chapter: [0.02] Encoding Schemes and Number System
Concept: undefined > undefined

Encode the word ‘COMPUTER’ using ASCII and convert the encoded value into binary values.

[0.02] Encoding Schemes and Number System
Chapter: [0.02] Encoding Schemes and Number System
Concept: undefined > undefined

Explain the following along with their applications.

Artificial Intelligence

[0.03] Emerging Trends
Chapter: [0.03] Emerging Trends
Concept: undefined > undefined

What is the difference between the else and elif construct of the if statement?

[0.06] Flow of Control
Chapter: [0.06] Flow of Control
Concept: undefined > undefined

Write a program that takes the name and age of the user as input and displays a message about whether the user is eligible to apply for a driving license or not. (the eligible age is 18 years).

[0.06] Flow of Control
Chapter: [0.06] Flow of Control
Concept: undefined > undefined

Write a program to check if the year entered by the user is a leap year or not.

[0.06] Flow of Control
Chapter: [0.06] Flow of Control
Concept: undefined > undefined

Write a program to find the grade of a student when grades are allocated as given in the table below.

Percentage of Marks  Grade
Above 90% A
80% to 90% B
70% to 80% C
60% to 70% D
Below 60% E

The percentage of the marks obtained by the student is input into the program.

[0.06] Flow of Control
Chapter: [0.06] Flow of Control
Concept: undefined > undefined

Consider the following string mySubject:

mySubject = "Computer Science"

What will be the output of the following string operation:

print(mySubject[0: len(mySubject)])

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

Consider the following string mySubject:

mySubject = "Computer Science"

What will be the output of the following string operation:

print(mySubject[-7: -1])

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

Consider the following string mySubject:

mySubject = "Computer Science"

What will be the output of the following string operation:

print(mySubject[::2])

[0.08] Strings
Chapter: [0.08] Strings
Concept: undefined > undefined
< prev  21 to 40 of 362  next > 
Advertisements
Advertisements
CBSE Science (English Medium) Class 11 Question Bank Solutions
Question Bank Solutions for CBSE Science (English Medium) Class 11 Biology
Question Bank Solutions for CBSE Science (English Medium) Class 11 Chemistry
Question Bank Solutions for CBSE Science (English Medium) Class 11 Computer Science (C++)
Question Bank Solutions for CBSE Science (English Medium) Class 11 Computer Science (Python)
Question Bank Solutions for CBSE Science (English Medium) Class 11 English Core
Question Bank Solutions for CBSE Science (English Medium) Class 11 English Elective - NCERT
Question Bank Solutions for CBSE Science (English Medium) Class 11 Entrepreneurship
Question Bank Solutions for CBSE Science (English Medium) Class 11 Geography
Question Bank Solutions for CBSE Science (English Medium) Class 11 Hindi (Core)
Question Bank Solutions for CBSE Science (English Medium) Class 11 Hindi (Elective)
Question Bank Solutions for CBSE Science (English Medium) Class 11 History
Question Bank Solutions for CBSE Science (English Medium) Class 11 Mathematics
Question Bank Solutions for CBSE Science (English Medium) Class 11 Physics
Question Bank Solutions for CBSE Science (English Medium) Class 11 Political Science
Question Bank Solutions for CBSE Science (English Medium) Class 11 Psychology
Question Bank Solutions for CBSE Science (English Medium) Class 11 Sanskrit (Core)
Question Bank Solutions for CBSE Science (English Medium) Class 11 Sanskrit (Elective)
Question Bank Solutions for CBSE Science (English Medium) Class 11 Sociology
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×