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: 21/11/2019
Number Systems
Download Tamil Nadu 11th Standard Computer Science 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 Science Test

1.
NAND is called as ......Gate
Fundamental Gate
Derived Gate
Logical Gate
Universal gate
2.
NOR is a combination of ?
NOT(OR)
NOT(AND)
NOT(NOT)
NOT(NOR)
3.
Which amongst this is not an Octal number?
645
234
876
123
4.
What is the 1's complement of 00100110?
00100110
11011001
11010001
00101001
5.
How many bytes does 1 KiloByte contain?
1000
8
4
1024
6.
What are derived gates?
7.
Write the associative laws?
8.
What Is Boolean Algebra?
9.
Write the 1's complement procedure.
10.
What is data?
11.
Convert the Following - (3674)8 \(\rightarrow \) (?2) = (?)10
12.
Explain the Derived gates with expression and truth table.
13.
Add 11010102 + 1011012
14.
Write the procedure to convert fractional Decimal to Binary.
15.
What is radix of a number system? Give example
16.
Write the steps to find 2's complement
17.
Complete the following Octal numbers 365, 366, 367,.......
18.
Perform the following expressions. (COFFEE)16 = (?)2
19.
Write the De Morgan's law.
1.
(b)
Derived Gate
2.
(a)
NOT(OR)
3.
(c)
876
4.
(b)
11011001
5.
(d)
1024
6.
Derived gates are the gates which are derived from the fundamental logical gates. Ex. NAND, NOR, XOR, XNOR.
7.
A + (B + C) = ( A + B) + C
A. (B. C) = (A . B) .C
8.
Boolean algebra is a mathematical discipline that is used for designing digital circuits in a digital computer. It describes the relation between inputs and outputs of a digital circuit.
9.
Step 1: Convert given Decimal number into Binary
Step 2: Check if the binary number contains 8 bits if less add 0 at the left most bit, to make it as 8 bits.
Step 3: Invert all bits (i.e. Change 1 as 0 and 0 as 1).
10.
The term data comes from the word datum, which means a raw fact. The data is a fact about people. places or some objects.
Example : Rajesh 16, XI
11.
(3674)8 in binary From
3 6 7 4
011 110 111 100
(3674)8 = (011110111100)2
(3674)8 in decimal Form
(3674)8 = 3 x 83 + x 82 + 7 x 81 + 4 x 80
= 1536 + 384 + 56 + 4 = (1980)10
Thus (3674)8 \(\rightarrow \) (0111110111100)2 = (1980)10
12.
The logic gates like NAND, NOR, XOR and XNOR are derived gates which are derived from the fundamental gates AND, OR NOT.
(1) NAND gate:
The NAND is the combination of NOT and AND. The NAND is generated by inverting the output of an AND operation.
Output: y = \(\overline { \left( A.B \right) } \)
The truth table for NAND gate is
| Input | Output | |
| A | B | y = \(\overline { \left( A.B \right) } \) |
| 0 | 0 | 1 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 0 |
(ii) NOR gate:
The NOR is the combination of NOT and OR. The NOR is generated by inverting the output of an OR operation.
Logic function: y = \(\overline { \left( A+B \right) } \)
the truth table for NAND gate is
| Input | Output | |
| A | B | y = \(\overline { \left( A+B \right) } \) |
| 0 | 0 | 1 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 0 |
(iii) XOR gate:
The XOR (exclusive - OR) gate acts in the same way as the logical either /or.
the truth table
| Input | Output | |
| A | B | C |
| 0 | 0 | 0 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 1 | 1 | 0 |
(iv) XNOR gate:
XNOR (exclusive - NOR) gate is a combination of XOR gate followed by an inverter.
Logic function: y= \(\overline { A \ B } \)
the truth table
| Input | Output | |
| A | B | C |
| 0 | 0 | 1 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 1 |
Boolean function:
\(\mathrm{C} =\overline{\mathrm{A} \oplus \mathrm{B}} \)
\(=\overline{{\overline{\mathrm{A}}} \cdot \mathrm{B}+\mathrm{A} \cdot \overline{\mathrm{B}}} \)
\(=\overline{\overline{\mathrm{A}} \cdot \mathrm{B}} \cdot \overline{\mathrm{A} \cdot \overline{\mathrm{B}}} \)
\(=(\overline{\mathrm{A}}+\overline{\mathrm{B}})(\overline{\mathrm{A}}+\overline{\bar{B}}) \)
\(=(\mathrm{A}+\overline{\mathrm{B}})(\overline{\mathrm{A}}+\mathrm{B}) \)
\(=\mathrm{A} \overline{\mathrm{A}}+\overline{\mathrm{AB}}+\mathrm{AB}+\mathrm{B} \overline{\mathrm{B}} \quad \mathrm{A \overline {A }}=\mathrm{O}\)
\(\mathrm{C} =\overline{\mathrm{A}} \overline{\mathrm{B}}+\mathrm{AB}\)
13.
11010102 + 1011012
1101010
+101101
________
10010111
________
11010102 + 1011012 = 100101112
14.
The method of repeated multiplication by 2 has to be used to convert such kinds of decimal fractions.
The steps involved in the method of repeated multiplication by 2.
Step 1: Multiply the decimal fraction by 2 and note. the integer part. The integer part is either 0 or 1.
Step 2: Discard the integer part of the previous product. Multiply the fractional part of the previous product by 2. Repeat Step 1 until the same fraction repeats or terminates (0).
Step 3: The resulting integer part forms a sequence of 0's and 1's that become the binary equivalent of a decimal fractions.
Step 4: The final answer is to be written from first. integer part obtained till the last integer part is obtained.
15.
The radix refers to the base of a number system: the total number of possible digits.
The decimal number system that we all use is base ten, as it has ten distinct digits (0,1,2,3,4,5,6,7,8,9). Eg: Binary system- Radix 2
16.
Step 1: Find 1's complement (Replace 1 by 0 and 0 by 1
Step 2: Add 1 to the 1's complement
17.
(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

18.
(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
19.
De Morgan's
\(\bar { A+B } =\bar { A } .\bar { B } \)
\(\left( \bar { A.B } \right) =\bar { A } +\bar { B } \)
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