NCERT Solutions Class 11 Computer Science Chapter 8 Strings

Question 1: Explain capitalize( ) method in Python. Answer: The method capitalize( ) returns a copy of the string with only its first character capitalized. Question 2: Write the syntax for capitalize( ) method. Answer: Following is the syntax for…

NCERT Solutions Class 11 Computer Science Chapter 1 Software Concepts

Question 1: Name any two popular word processing software. Answer: Two popular word processing software are : 1. OO-writer 2. MS-word Question 2: Expand OS. Answer: OS stands for Operating System. Question 3: Name the categories in which the software are classified. Answer…

NCERT Solutions Class 11 Computer Science Programming Methodology

NCERT Solutions for Class 11 Computer Science Programming Methodology Very Short Answer Type Questions-I  Question 1: On which step programming methodology used ? Answer:  Before writing program.  Question 2: What do you mean by modular approach…

NCERT Solutions Class 11 Computer Science Chapter 5 Operators in Python

NCERT Solutions for Class 11 Computer Science Chapter 5 Operators in Python Very Short Answer Type Questions Question 1: Write the output of the given Python code : a = 0 a+ =2 print (a) Answer: 2 Question 2: Write the output of the given Python code : print (3 + 4) print (3…

NCERT Solutions Class 11 Computer Science Chapter 1 Microprocessor and Memory Concepts

NCERT Solutions for Class 11 Computer Science Chapter 1 Microprocessor and Memory Concepts Very Short Answer Type Questions  Question 1: What do you mean by registers ? Answer:  It is a small amount of very fast memory that is built into the CPU. It is very…

NCERT Solutions Class 11 Computer Science Chapter 10 Lists Dictionaries and Tuples

NCERT Solutions for Class 11 Computer Science Chapter 10 Lists Dictionaries and Tuples Very Short Answer Type Questions Question 1: How many types of built-in types of sequences in Python. Answer: Python has six built-in types of sequences. Question 2: Write…

NCERT Solutions Class 11 Computer Science Chapter 5 Introduction to Python

1. Python It is a general purpose interpreted, interactive, object oriented and high level programming language. It was initially designed by Guido Van Rossum in 1991 and developed by Python Software Foundation. 2. Python Character Set Character set is a set of…

NCERT Solutions Class 11 Computer Science Chapter 5 Getting Started with Python

Question 1: What are the two modes in Python ? Answer: Interactive Mode Programming and Script Mode Programming. Question 2: Write any two Standard Data Types in Python. Answer: List and String. Question 3: Is List a standard data type ? Answer: …

NCERT Solutions Class 11 Computer Science Chapter 7 Functions

NCERT Solutions for Class 11 Computer Science Chapter 7 Functions Very Short Answer Type Questions  Question 1: What is sys.argv? Answer:  A list containing the program name and all the command-line arguments to a program. Question 2: What can you do…

NCERT Solutions Class 11 Computer Science Data Representation

NCERT Solutions for Class 11 Computer Science Data Representation Short Answer Type Questions Question 1: Explain octal and hexadecimal number. Answer:  Octal (base 8) was previously a popular choice for representing digital circuit numbers in a form…

NCERT Solutions Class 11 Computer Science Conditional and Looping Constructs

NCERT Solutions for Class 11 Computer Science Conditional and Looping Constructs Very Short Answer type Questions Question 1: Why do we use ‘break’ statement ? Answer: The ‘break’ statement can be used to terminate the loop. Question 2: What gets printed with…

NCERT Solutions Class 11 Computer Science Computer overview and its Basics

NCERT Solutions for Class 11 Computer Science Computer overview and its Basics Very Short Answer Type Questions  Question 1: Which part interprets program instructions and initiate control operations ? Answer : Control unit. Question 2: What is primary…

NCERT Solutions Class 11 Computer Science Algorithms and Flowcharts

NCERT Solutions for Class 11 Computer Science Algorithms and Flowcharts Very Short Answer Type Questions  Question 1: Write the alternate name of infinite loop. Answer:  endless loop. Question 2: Define looping Answer:  Looping is repeating…