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: 13/05/2022
QB365 provides detailed and simple solution for every
Creative Questions in class 11 Computer Technology Subject. It will helps to get more idea about question pattern in every Creative questions with solution.
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.
Suppose a number system has been designed with radix 10 with symbols (ordered from small to large) A, B, C, D, G, H, I, L, M, N. Convert the following number to equivalent hexadecimal number; (lNDIAN)10
2.
Explain Unicode.
3.
Explain the Derived gates with expression and truth table.
4.
How AND and OR can be realized using NAND and NOR gate.
5.
Explain the fundamental gates of expression and truth table.
1.
A, B, C, D, G, H, I, L, M, N are presents 0,1,2,3,4, 5, 6, 7, 8, 9 respectively of decimal number system (base 10) so, (INDIAN)IO = (693609)10
To find its hexadecimal equivalent

Thus (INDIAN)10 = (693609)10 = (A9569)16
2.
(i) Unicode is the newest concept in digital coding. In Unicode, every number has a unique character.
(ii) Unicode is the universal character encoding standard used for the representation of text for computer processing
(iii) It can be used to store and process all significant current and past languages. Unicode provides a unique hex encoded number for every character.
(iv) Unicode is a 16-bit code, which allows for about 65,000 different representations. This is enough to encode the popular Asian languages (Chinese, Korean, Japanese, etc.)
(v) It also turns out that ASCII codes are preserved. Therefore, conversion between ASCII and Unicode is a simple method (take all one byte ASCII codes and zero-extend them to 16 bits).
(vi) This will be the Unicode version of the ASCII characters. The C, C++ programs use the ASCII Code, and Java programs have already used Unicode. The Unicode Standard has been adopted by industry leaders such as Apple, HP, IBM, Microsoft, Oracle, SAP, Sun, Sybase, and Unisys. Unicode is required by web users and
modem standards.
3.
The NOR gate circuit is an OR gate followed by an inverter. Its output is "true" if both inputs are "false" Otherwise, the output is "false". In other words, the only way to get 'I' as output is to have both inputs '0'. Otherwise the output is O. The logic circuit of the NOR gate is
.png)
The output of NOR gate is
C = \(\overline { \left( A+B \right) } \)
Read this as "C equals NOT of A OR B" or "C equals the complement of A OR B".
For example if both the input are o
C = \(\left( 0+0 \right) \) = \(\bar { 0 } \) = 1
The truth table for NOR gate is
| Input | Output | |
| A | B | C |
| 0 | 0 | 1 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 0 |
NAND Gate:
The NAND gate operates an AND gate followed by a NOT gate. It acts in the manner of the logical operation "AND" followed by inversion. The output is "false" if both inputs are "true", otherwise,' the output is "true". In other words the output of the NAND gate is 0 if and only if both the inputs are 1, otherwise the output is 1. The logic circuit of NAND gate is
.png)
The logical Symbol of NAND gate is
.png)
The output of the NAND gate is
C = \(\overline { \left( A.B \right) } \)
Read this as "C" equals NOT of A AND B" or "e" equals the complement of A AND B".
For example, if both the inputs are 1
C = \(\overline { \left( 1.1 \right) } \) = \(\bar { 1 } \) = 0
the truth table for NAND gate is
| Input | Output | |
| A | B | C |
| 0 | 0 | 1 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 1 | 1 | 0 |
4.
AND and OR operation from NAND gates are shown below
.png)
A.B = (A NAND B) NAND ( A NAND B)
OR operation
.png)
A+B (ANAND A)NAND (B NANDY Y)
b) AND AND OR operation from NOR gates are shown below.
.png)
A - B = (A NORA A) NOR (B NOR B)
.png)
A+ B = (A NOR B) NOR (A NOR B)
5.
AND Gate:
The AND gate can have two or more input signals and produce an output signal.
The output is "true" only when both inputs are "true", otherwise, the output is "false". In other words, the output will be 1 if and only if both inputs are 1; otherwise the output is O. The output of the AND gate is represented by a variable say C, where A and B are two and if input boolean variables. In boolean algebra, a variable can take either of the values '0' or '1'. The logical symbol of the AND gate is AND gate is

One way to symbolize the action of an AND gate by writing the boolean function.
C = A AND B
In boolean algebra the multiplication sign stand for the AND operation. Therefore, the output of the AND gate is
C = A.B or
Simply C = A .B
Read this as "C equals A AND B". Since there an two input variables here, the truth table has four entries, because there are four possible inputs: 00 01, 10 and 11
For instance both inputs are 0,
C = A.B
= 0 .0
= 0
The Truth Table For AND Gate is
| Input | Output | |
| A | B | C |
| 0 | 0 | 0 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 1 |
OR Gate:
The OR gate gets its name from the face that behaves like the logical inclusive "OR" The output is "true" if either or both of the inputs are "true", both inputs are "false" then the output is "false", other words the output will be 1 if and only if 0, or both inputs are 1; otherwise, the output is 0, the logical symbol of the OR gate is

The OR gate output is
C = A or B
We use the + sign to denote the OR function therefore
C = A + B
Read this C equals A or B
For instance, if both the input are 1
C = A + B = 1 + 1 = 1
The truth table For OR Gate is
| Input | Output | |
| A | B | C |
| 0 | 0 | 0 |
| 0 | 1 | 1 |
| 1 | 0 | 0 |
| 1 | 1 | 1 |
NOT Gate;
The NOT gate, called a logical inverter, has only one input. It reverses the logical state. In other words the output C is always the complement of the input. The logical symbol of the NOT gate is

The Boolean function of Not Gate is
C = NOT A
In boolean algebra, the overbar stands for NOT operation. Therefore,
C = \(\bar { A } \)
Read This as "C" equals Not "A" or "C" equals the complement of "A''
If A is 0
C = \(\bar { 1 } \) = 0
On the other hand, if A is 1
C = \(\bar { 1 } \) = 0
The truth table for NOT gate is
| Input | Output |
| A | C |
| 1 | 0 |
| 0 | 1 |
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