0% found this document useful (0 votes)
340 views6 pages

Microeconomics (Sandeep Garg)

This document contains an assignment on computers for an 11th grade class. It includes multiple choice questions about computer hardware and software components. It also includes questions to fill in blanks about memory types, operating systems, and logical expressions. True/false questions cover topics like Boolean values and universal gates. Calculation questions involve converting between number systems, using formulas for area and interest, and determining odd/even numbers.

Uploaded by

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

Microeconomics (Sandeep Garg)

This document contains an assignment on computers for an 11th grade class. It includes multiple choice questions about computer hardware and software components. It also includes questions to fill in blanks about memory types, operating systems, and logical expressions. True/false questions cover topics like Boolean values and universal gates. Calculation questions involve converting between number systems, using formulas for area and interest, and determining odd/even numbers.

Uploaded by

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

G. A. V.

INTERNATIONAL SCHOOL
Assignment
Name- Subject- Computer
Class : XI Date:

A. Multiple choice questions -

1. Which component of a computer connects the processor to the other hardware?


a. System Bus b. CPU c. Memory d. Input Unit

2. What is the name of programs that control the computer system?


a. Hardware b. Keyboard c. Software d. Mouse

3. What is the name of the component that used to both read and writes data?
a. ROM b. RAM c. Hard Drive d. Cache Memory

4. The value of radix in binary number system is ________


a. 2 b. 8 c. 10 d. 16

5. The value of radix in hexadecimal number system is ________


a. 2 b. 8 c. 10 d. 16

6.The hexadecimal digits are 1 to 0 and A to _______


a. E . b. F c. G d. D

7. Which gate produces 0 when all inputs are high ?


a. NOT b. NAND c. AND d. NOR

8. Which gate produces 1 when all inputs are low?


a. NOT b. NAND c. AND d. NOR

9. Escape sequences are treated as _______


a. Strings b. Characters c. Integers d. None of these

10. The input() returns the value as __________ type.


a. Integer b. String c. Floating point d. None of these

B. Fill in the blanks.

1. RAM and ROM are the types of ________ memory. ( Primary )


2. Windows OS is a type of _______ . ( System Software )
3. Antivirus software is a type of _____ . ( Security utility program )
4. In Python, the comments begin with _____ character. ( # )
5. A logical expression which is always TRUE for all inputs, is termed as _______. ( Tautology )
6. A logical expression which is always FALSE for all inputs, is termed as _______. ( Fallacy )
7. Truth values are _____ and ____. ( True & False )
8. The NOT gate takes only _______ input. ( one )

C. True or False.

1. A computer system consists of both hardware and software. TRUE


2. Anything ANDed with a 1 is equal to 1. FALSE
3. A Boolean value is internally treated as an integer value. TRUE
4. A mobile system also contains a CPU. TRUE
5. 0123 is a legal literal value in Python. TRUE
6. A computer can work with decimal number system. FALSE
7. List is an immutable data type. FALSE
8. NAND and NOR are called universal gates. TRUE
D. Answer the following:-

1. Conversion decimal to binary :-


a) 13 b) 3.25 c) 84

2. Conversion of hexadecimal to decimal :- do it yourself


a) 9E1A b) 6BD

3. What will be the output of following code :- Instead of program focus on output ( sample run )
a) length = float(input("Enter length of the rectangle: "))
breadth = float(input("Enter breadth of the rectangle: "))
area = length * breadth
print ("Rectangle specifications")
print ("Length = ", length, end = '')
print ("breadth = ", breadth)
print ("Area = ", area)

Solutions:-

b) A triangle has three sides a, b, c as 17, 23, 30. Calculate and display its area using Heron’s formula as
S = (a + b + c)/2 , Area = sqrt(s(s – a)(s – b)(s – c))
Solutions :-

c) P = float(input(“Enter money lent: “))


R = float(input(“Enter rate of interest:”))
T = float(input(“Enter time in years:”))
SI = (PRT) / 100
amount_payable = P + SI
print(“Amount payable is: Rs.”, amount_payable)
Solutions :-
d) num =int (input(“Enter an integer :”))
if num % 2 ==0
print (num, “is EVEN number.”)
else:
print (num, “is ODD number.”)
Solutions:-

e)

f)

g)
h)

i)

j)
k)

l)
m)

n)

You might also like