Showing posts with the label Using Python Libraries (Preeti Arora)

Using Python Libraries || Multiple Choice Questions || Class 12

Using Python Libraries || Multiple Choice Questions || Class 12 1. What will b…

Using Python Libraries || True or False || Class 12

Using Python Libraries || True or False || Class 12 1. A library in Python is a…

Using Python Libraries || Fill in the Blanks || Class 12

Using Python Libraries || Fill in the Blanks || Class 12 1. Commonly-used modul…

Why is a package attached to site-packages folder of Python installation?

Q. Why is a package attached to site-packages folder of Python installation? Ca…

What is the procedure to create own library/package in Python?

Q. What is the procedure to create own library/package in Python? Answer = …

What happens when Python encounters an import statement in a program?

Q. What happens when Python encounters an import statement in a program? What w…

Write a module to input total number of days and find the total number of months and remaining days after months

Q. Write a module to input total number of days and find the total number of mo…

What is the utility of built-in function help()?

Q. What is the utility of built-in function help()? Answer = Python's…

What are the possible outcome(s) executed from the following code?

Q. What are the possible outcome(s) executed from the following code? Also spec…

What is a Python module? What is its significance?

Q. What is a Python module? What is its significance? Answer = A " m…

Write a program with a user-defined function with string as a parameter which replaces all vowels in the string with *.

Q. Write a program with a user-defined function with string as a parameter whic…

Write definition of a method ZeroEnding(SCORES) to add all those values in the list of SCORES

Q. Write definition of a method ZeroEnding(SCORES) to add all those values in t…

Write a method in Python to find and display the prime numbers between 2 to N. Pass argument to the method.

Q. Write a method in Python to find and display the prime numbers between 2 to …

What do you understand by local and global scope of variables?

Q. What do you understand by local and global scope of variables? How can you a…

Write a program to print the number of occurrences of a substring into a line using built-in string function find().

Q. Write a program to print the number of occurrences of a sub-string into a li…

Find and write the output of the following Python code: a = 10 def call()

Q. Find and write the output of the following Python code: a = 10 def call() : …

What is a module, package and a library?

Q. What is a module, package and a library? Answer = Module : A module is a…

Why is a banner saying RESTART always displayed in Python module/program execution?

Q. Why is a banner saying "RESTART" always displayed in Python module…

Define module and package.

Q. Define 'module' and 'package'. Answer = Each Python prog…

What are the rules for local and global variables in Python?

Q. What are the rules for local and global variables in Python? Answer = In…

Load More That is All