11th Standard Syllabus & Materials
11th Standard
TN 11th Tamil இயற்கை வேளாண்மை,சுற்றுச்சூழல் -செய்யுள் - மனோன்மணீயம் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil என்னுயிர் என்பேன் -துணைப்பாடம் - இசைத்தமிழர் இருவர் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil மொழி கலை -செய்யுள் - ஒவ்வொரு புல்லையும் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil பீடு பெற நில் - இலக்கணம் - பகுபத உறுப்புகள் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil பீடு பெற நில் - துணைப்பாடம் - வாடிவாசல் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil பீடு பெற நில் - செய்யுள் - குறுந்தொகை Important Questions And Answers Study Material - QB365 Set A

Published on: 28/07/2018
Based on the chapter Number Systems, some of the important questions are covered in this question paper. The questions are prepared from the book back and the creative questions.
Download Tamil Nadu 11th Standard Computer Technology question papers, model tests, one-mark questions, important questions, and public exam papers in PDF format. Free study materials and answer keys for TN State Board students.
Questions + Answers key
Take MCQ Computer Technology Test

1.
How the message represented in computers?
Information
data
Knowledge
all of these
2.
The singular form of data is ______
Record
File
Datum
Values
3.
Data means ______
a set of values
a set of information
a set of records
a set of files
4.
NAND is called as ______ Gate
Fundamental Gate
Derived Gate
Logical Gate
Electronic gate
5.
A + A =?
A
O
I
A
6.
Which gate is called as the logical inverter?
AND
OR
NOT
XNOR
7.
2\(\wedge \)50 is referred as
Kilo
Tera
Peta
Zetta
8.
Expansion for ASCII
American School Code for Information Interchange
American Standard Code for Information Interchange
All Standard Code for Information Interchange
American Society Code for Information Interchange
9.
How many bytes does 1 KiloByte contain?
1000
8
4
1024
10.
Which refers to the number of bits processed by a computer's CPU?
Byte
Nibble
Word length
Bit
11.
How many procedures for converting from decimal binary to what are they?
12.
Name the frequently used number system
13.
How the sequence of Octal numbers looks like?
14.
Write the radix of Decimal, Binary, Octal, Hexadecimal Number systems.
15.
Name the four types of Number system.
16.
Name the Number system is used in general
17.
What are the advantages of two's complement number?
18.
Write the three common ways of representing a signed binary number?
19.
Complete the following Octal numbers 365, 366, 367,.......
20.
Perform the following expressions. (COFFEE)16 = (?)2
21.
(101010)2 \(\rightarrow \) (?10) \(\rightarrow \) (?10)
22.
Why is the number conversion necessary?
23.
Convert the Following - (101.10)16 \(\rightarrow \) (?2) = (?)10
24.
Write the steps for converting Decimal to Binary numbers.
1.
(d)
all of these
2.
(c)
Datum
3.
(a)
a set of values
4.
(b)
Derived Gate
5.
(a)
A
6.
(c)
NOT
7.
(c)
Peta
8.
(b)
American Standard Code for Information Interchange
9.
(d)
1024
10.
(c)
Word length
11.
(i) There are two procedures for converting from decimal to binary.
(ii) They are
Expansion Method
Repeated division by 2.
12.
A decimal number system is the frequently used number system.
13.
Each successive number after 7 is a combination of 2 or more unique symbols of Octal system
14.
The radix of Decimal is 10, Binary is 2, Octal is 8 and Hexadecimal is 16
15.
(i) Decimal Number system
(ii) Binary Number system
(iii) Octal Number system
(iv) Hexadecimal Number system
16.
The decimal Number system is the number system used in general.
17.
The most popular way of representing negative numbers in computer systems is two's complement. The advantages of using this method are :
(i) There are no two ways of representing a zero as in the case with the above two methods.
(ii) Addition and subtraction can be performed effectively
18.
In computer technology, there are three common ways of representing a signed Binary number.
(i) Prefixing an extra sign bit to a Binary number.
(ii) Using one's complement.
(iii) Using two's complement
19.
(365)8 = 3 x 82 x 6 x 81 + 5 x 80
= 192 + 48 + 5 = (245)10
(366)8 = 3 x 82 + 6 x 81 + 6 x 80
= 192 + 42 + 6 = (246)10
(367)8 = 3 x 82 + 6 x 81 + 7 x 80
= 192 + 42 + 6 = (247)10
In decimal form, the given sequence will be 245, 246, 247, 248, 249, 250. To complete the sequence of Octal number, we need to find the octal equal of 248, 249 and 250

20.
(COFFEE)16
\(\overset { C }{ \underset { 1100 }{ \downarrow } } \)\(\overset { O }{ \underset { 0000 }{ \downarrow } } \)\(\overset { F }{ \underset { 1111 }{ \downarrow } } \)\(\overset { F }{ \underset { 1111 }{ \downarrow } } \)\(\overset { E }{ \underset { 1110 }{ \downarrow } } \)\(\overset { E }{ \underset { 1110 }{ \downarrow } } \)
(COFFEE)16 = (110000001111111111101110)2
21.
1010102
= 0010 0010
= 2 10
= 2 A
(101010)2 = (2A)16
(101010)2 = (1 x 25) + ( 0 x 24) + (1 x 23) + (0 x 22) + ( 1x 21) + (0 x 20)
= 32 + 0 + 8 + 0 + 2 + 0 = 4210
(101010)2 = (2A)16 = 42(10)
22.
The number conversion is necessary because us enters the data into the computer in decimal fon only and the computer is then expected to convert the decimal number to other number systems which it understands.
23.
(101.10)16 in binary From
= 1 0 1 1 0
0001 0000 0001 0001 0000
(101.10)2 = (000100000001.00010000)2
(101.10)16 in Decimal Form
(101.10)2 = 1 x 162 + x 161 + 1 x 160 + 1 x 16-1 + 0 x 16-2
= 256 + 0 + 1 + 0.0625 + 0 =(275.0625)10
24.
Steps for Decimal to Binary Conversion.
Step 1: Divide the decimal number which is to be converted by two which is the base of the binary number.
Step 2: The remainder which is obtained from step 1 is the least significant bit of the new binary number.
Step 3: Divide. the quotient which is obtained from the step 2 and the remainder obtained from this is the second least significant bit of the binary number
Step 4: Repeat the process until the quotient becomes zero.
Step 5: The last remainder obtained from the division is the most significant bit of the binary number. Hence, arrange the number from the most significant bit to the least significant bit (i.e., from bottom to top).
11th Standard Syllabus & Materials
11th Standard
TN 11th Tamil பீடு பெற நில் - செய்யுள் - காவடிச்சிந்து Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil பீடு பெற நில் - உரைநடை - மலை இடப்பெயர்கள் : ஓர் ஆய்வு Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil மாமழை போற்றுதும் - துணைப்பாடம் - யானை டாக்டர் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil மாமழை போற்றுதும் - செய்யுள் - ஐங்குறுநூறு Important Questions And Answers Study Material - QB365 Set A
Tamilnadu Stateboard 11th Standard Subjects

Maths

Commerce

Economics

Biology

Business Maths and Statistics

Accountancy

Computer Science

Physics

Chemistry

Maths

Biology

Economics

Physics

Chemistry

History

Business Maths and Statistics

Computer Science

Accountancy

Computer Applications

History

Computer Technology

Commerce

Computer Applications

Computer Technology

Tamil

English

French
Tamilnadu Stateboard Standards