0% found this document useful (0 votes)
43 views4 pages

11 Ip KV Secl Dhanpuri Hly

Uploaded by

no1adampur
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
43 views4 pages

11 Ip KV Secl Dhanpuri Hly

Uploaded by

no1adampur
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

KENDRIYA VIDYALAYA SANGATHAN, JAIPUR REGION

KV SECL DHANPURI
INFORMATICS PRACTICES (065)
HALF YEARLY EXAMINATION 2020-21
CLASS: XI
Time: 3 Hrs Max.Mark: 70
General Instructions:
1. This question paper contains two parts A and B. Each part is compulsory.
2. Part-A has Multiple choice Question/short answer questions, to be answered in one word or one
line or one option is to be selected.
3. Part - B is Descriptive Paper which have some internal options.

PART-A (15 Marks)


(Each Question Carry 1 Marks)
Q.1 Which of the following is referred to as the brain of computer?
(a) Processor (b) ROM
(c) RAM (d) Hard drive
Q.2 The Central Processing Unit (CPU) consists of:
(a) input, output and processing
(b) control unit, primary storage & secondary storage
(c) control unit, arithmetic-logic unit, primary storage
(d) control unit, processing, primary storage
Q.3 UNIVAC is
A) Universal Automatic Computer B) Universal Array Computer
C) Unique Automatic Computer D) Unvalued Automatic Computer
Q.4 First time ,Integrated Circuits (ICs) are related to which generation of computers?
A) First generation B) Second generation
C) Third generation D) Fourth generation
Q.5 Which generation of computer is still under development
A) Fourth Generation B) Fifth Generation
C) Sixth Generation D) Seventh Generation
Q.6 Python is a level language.
Q.7 RAM and ROM are the types of memory.
Q.8 Range function produces a :
(a) Sequence (b) Integer
(c) Character (d) String

Q.9 In computer terminology, information means


(a) raw data (b) data in more useful or intelligible form
(c) alphanumeric data (d) program
Q.10 An Antivirus software is an example of
(a) Application Software (b) System software
(c) Utility software (d) None of these
Q.11 To print the value of a variable in Python, python uses :-
(a) Print() function (b) Print statement()
(c) print statement (d) print() function
Q.12 What is the value of the expression 75 // 25?
(a) 3 (b)3.0
(c) 2.5 (d) none of these
Q.13 What will be the output of following python statement:
- print(“foo\\bar”)
(a) foo\\bar (b) foo\bar
(c) “foo\\bar” (d) none of these
Q.14 Which of the following is a valid statement in python?
(A) abc = 1,000,000 (B) a b c = 1000 2000 3000
(C) a,b,c = 1000, 2000, 3000 (D) a_b_c = 1,000,000
Q.15 What is the maximum possible length of an identifier?
(A) 32 characters (B) 63 characters
(C) 79 characters (D) None of the above
Q.16 Which of the following is correct way to declare string variable in Python?
(A) fruit = “banana” (B) fruit = "banana’
(C) fruit = banana (D) fruit = (banana)
Q.17 Which of the following symbols are used for comments in Python?
(A) // (B) ''
(C) /**/ (D) #
Q.18 19 % 2 in python:-
(A) 17 (B) 2
(C) 1 (D) None of these
Q.19 Select the correct code to print
cppbuzz-chicago
(A) print('cppbuzz-' + 'chicago') (B) print('cppbuzz' + '-chicago')
(C) print('cppbuzz' + '-' + 'chicago') (D) All of the above

Q.20 The mode of Python gives instant result of typed statement.


(a) Interactive mode (b) Script mode
(c) Combination of interactive and script modes (d) All of these
PART-B

Q.21 Arrange the following in ascending order of memory capacity: 1


(i) TB, Byte, KB, PB, MB, GB
(ii) Identify which among the following are Output device/s. Projector, WebCam, 3
Speakers, OCR, Microphone, Scanner
OR
Siya has discarded old, broken and malfunctioning Hard Disk without taking care to
delete data. Is it harmful in respect of security concern ? Justify your answer.
(iii) Name the input/output device used to do the following: 3
To output audio
To enter textual data
To make hard copy of a text file
To display the data/information
To enter audio-based command
To assist a visually impaired individual in entering data
(iv) Write down the type of memory needed to do the following: 3
To store data permanently
To execute the program
To store the instructions which can not be overwritten.
OR
Which data type will be used to represent the following data values?
Number of days in a month
Resident of India or not (iii)Phone number
Price of book
Area of a circle
Name of an employee
Q.22(i) Give any two features of Python? 2

(ii) Name the two modes to do programming in Python. Give any one difference 2
between them.
(iii) Differentiate between Keywords and Identifiers with the help of 2
suitable examples.
(iv) Write the corresponding Python assignment statements. 2
Assign 10 to a variable height and 20 to a variable weight
Assign the sum of height and weight to a variable total.
Q.23 Identify the following identifiers as valid/invalid in Python.
(i) Total_Marks 2
Total$Marks
1st_class
_average
(ii) What are comments? Why do we use comments in Python Programming? Explain 2
with Example.
(iii) Identify the types of following python literals? 2
23.789 “TRUE” 1232
False
(iv) Give the output of the following when num1=4,num2=3,num3=2 1
num1 = num2 + num3 print (num1)
(v) Which of the following are syntactically correct strings ? “Informatics Practices” 2
“Stay safe stay healthy’ ‘Social distancing’
“ Examination
Q.24 The following code is not giving desired output. We want to input value as 10 and
(i) obtain output as 20(10+10). Identify the error in the below code and Re-write the
code underlining each correction.
number=input(“Enter Number”) 1
changenum=number+10 print(changenum)

(ii) What will be the output given by following code? value1 =”Avoid” 1
value2 = “Crowded” print(value1,”going to”,value2,”places”)

(iii) Identify the error in the following Python code. name=”Imran” 1


print(“Good Morning”,name)

(iv) What will be the output given by following python code statements ? 2
(i) print(17 % 5)
(ii) print(25%5 + 7 >= 9//2) (iii)print(“Hello”+”World”)
(iv)print( 6**2 > 32//2 and 5**2==25)
(v) Write a Python Program to find the smallest of three number. 3

(vi) Write a program to swap two number. 3

(vii) Write a program to find the sum of first 100 natural number 3

(viii) Write a program to input date and display the date in Gregarian format: 4
Example: if input is
23/12/2020
The output is
23 rd December 2020
(ix) Write a program to input two time and display the added time. 5

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy