Question Question Content Learning
No Objective (if
Provided)
1. Full Form of IDLE Knowledge
A. INDUSTRIAL DEVELOPMENT LEARNING
ENVIRONMENT
B. INTEGRATE DRIVE LEARNING ENVIRONMENT
C. INTEGRATED DEVELOPMENT LEARNING
ENVIRONMENT
D. INTEGRATED DEVELOPMENT LEARNING
ENGINEERING
2. Python is ……………….language Knowledge
A. High level language
B. Low level language
C. Medium level language
D. Machine language
3. Which statement is correct Understanding
A. Python is Upper case sensitive
B. Python is Case-Sensitive
C. Python is Lower case sensitive
D. Python is Case-Insensitive
4. Which statement is correct Knowledge
A. It is free language
B. It is open source language
, C. It is free and open source language
D. None of the above
5. Tick the correct statement to print hello. Application
A. print(hello)
B. print(“hello”)
C. Print(“hello”)
D. Print(hello)
6. Python programs are executed by which language processor? Knowledge
A. Compiler
B. Interpreter
C. Assembler
D. All of the above
7. Which of the statement is correct? Understanding
A. Python is not portable and platform independent.
B. Python is portable and platform dependent.
C. Python is portable and platform independent.
D. Python is not portable and platform dependent.
8. Which of the following is not high level programming language? Analysis
A. JAVA
B. Visual basic
C. Python
D. Machine language
,9. Which of the following is not compiler based programming Analysis
language.
A. Python
B. C
C. C++
D. JAVA
10. Find the output of the following program Evaluation
A=0
print(a)
A. A
B. a
C. 0
D. error
11. What is a program?
A. A set of rules.
B. A set of ordered instructions.
C. A set consist of 0 and 1.
D. A set of unordered instructions.
12. Computer understands a low level language. A low level Analysis
language consist of a set of digits
A. (1,2,3,4)
B. (0,1,2,3,4,5,6,7,8,9)
C. (0,1)
, D. (0,1,2,3,4,5,6,7)
13. Which function can be used to display the output in python Analysis
A. show()
B. print()
C. display()
D. output()
14. Tick the correct statement to print Hello World. Evaluation
A. print(hello)(world)
B. Print(“hello world”)
C. Print(hello world)
D. print(“Hello World ”)
15. . Find the output of the following program Evaluation
A=0
print(A)
A. A
B. a
C. 0
D. 1
16 Question: Python uses ____ to convert its instructions into Understanding,
machine language.
(A)Interpreter
(B)Compiler
(C)Both of the above
(D)None of the above