Ads block
Showing posts with label Python Programming Quizes. Show all posts
Showing posts with label Python Programming Quizes. Show all posts
Python Quiz 8
Q:1. In Python, a class is created by _________ keyword, and to create ________ of the class, we will have to use constructor of class. Answer : 2. c…
Read more »
Python Quiz 7
Q:1. Naming convention of a module of a python file is ? Answer : 4. All of the above Q:2. The following code is saved in a file hello.py(using p…
Read more »
Python Quiz 6
Q.1 : In Python, Answer : 4. All of the above Q.2: Assume that the 'min' function computes the minimum of two values, and 'max' f…
Read more »
Python Quiz 5
Q.1: What does the following Python3 code do? (using python 3.x version) : n=int(input(" Enter a number? ")) i=1 while( i<…
Read more »
Python Quiz 4
Q:1. How do you declare a dictionary in Python> Answer : 2. dict={" key ":" value "} Q:2. What will be the output of the following …
Read more »
Python Quiz 3
Q:1 . If :- A=set(' python ') B=set(' programming ') Then what will be the output of print(A-B)? Answer…
Read more »
Python QUIZ 2
Q:1. If list=['red','blue','green','yellow'] , What will be the output of : list.pop('blue') …
Read more »
python QUIZ-1 Questions and Answers
Q:1. What is the first step in write a program? Answer : Write Code Q:2.Logical solution is a _______ and clear ________ procedure to solve the probl…
Read more »
SEARCH
LATEST
3-latest-65px
SECCIONS
- Computer Network Unit 1 (10)
- Computer Network Unit 2 (2)
- Computer System Security unit 1 (3)
- Python Programming Quizes (8)
- Python Programming Unit 1 (17)
- Python Programming Unit 2 (12)
- Python Programming Unit 3 (6)
- Python Programming Unit 4 (17)
- Python Programming Unit 5 (6)
Search This Blog
Powered by Blogger.
Blog Archive
- July 2023 (1)
- January 2023 (4)
- December 2022 (1)
- May 2022 (1)
- December 2021 (4)
- November 2021 (12)
- October 2021 (2)
- August 2021 (1)
- July 2021 (19)
- June 2021 (5)
- May 2021 (29)
- April 2021 (11)
- March 2021 (3)
Operators in C
Operators An operator is a symbol that tells the compiler to perform specific mathematical or logical operations, based on the value provi...