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 book back questions in class 11 Computer Science subject.It will helps to get more idea about question pattern in every book back questions with solution.
latest Book back QuestionsDownload 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.
What is TSCII?
2.
What are the keyboard layouts used in Android?
3.
Write a short note on cracking.
4.
In what multilevel and multiple inheritance differ though both contains many base class?
5.
What is the use of overloading a function?
6.
Define structure .What is its use?
7.
What is Parameter and list its types?
8.
Correct the following code sigment:
if (x = 1)
p = 100;
else
p = 10;
9.
What is a null statement and compound statement?
10.
Consider the following C++ statement. Are they equivalent?
char ch = 67;
char ch = ‘C’;
11.
Why is char often treated as integer data type?
12.
The following constants are of which type?
(i) 39
(ii) 032
(iii) 0XCAFE
(iv) 04.14
13.
What is meant by a token? Name the token available in C++.
14.
What is recursive problem solving?
15.
Does testing the loop condition affect the loop invariant? Why?
16.
Specify a function to find the minimum of two numbers.
17.
How will you log off from Ubuntu OS?
18.
What is the advantage of open source?
19.
What is the use of a file extension?
20.
What are the security management features available in Operating System?
21.
List out any two uses of Operating System?
22.
What is HDMI?
23.
What is the function of memory?
24.
What is the function of an ALU?
25.
1.
TSCII (Tamil Script Code for Information Interchange) is the first coding system to handle our Tamil language in an analysis of an encoding scheme that is easily handled in electronic devices, including non-English computers. This encoding scheme was registered in IANA (Internet Assigned Numbers Authority) unit of ICANN.
2.
Sellinam and Ponmadal - are familiar Tamil keyboard layouts that works on Android operating system in Smart phone using phonetics.
3.
Cracking is where someone edits a program source so that the code can be exploited or modified. "Cracking" means trying to get into computer systems in order to steal, corrupt, or illegitimately view data.
4.
| Multilevel Inheritance | Multiple Inheritance |
| In multilevel inheritance, the constructors will be executed in the order of inheritance. | If there are multiple base classes ,then it starts executing from the left most base class. |
5.
Function overloading is not only implementing polymorphism but also reduces the number of comparisons in a program and makes the program to execute faster. It also helps the programmer by reducing the number of function names to be remembered.
6.
Structure is a user-defined which has the combination of data items with different data types. This allows to group of variables of mixed data types together into a single unit. The structure provides a facility to store different data types as a part of the same logical element in one memory chunk adjacent to each other.
7.
Arguments or parameters are the means to pass values from the calling function to the called function. The variables used in the function definition as parameters are known as formal parameters. The constants, variables or expressions used in the function call are known as actual parameters.
Types : Default arguments and Constant Arguments.
8.
| Given Code | Corrected Code |
| if (x = 1) p = 100; else p = 10; |
if (x ==1) p =100; else p = 10; |
9.
Null statement
The "null or empty statement" is a statement containing only a semi colon. It takes the following
form:
;// it is a null statement.
Null statement are commonly used as place holders in iteration statements or as statements on which to place labels at the end of compound statements or functions.
Compound statement
C++ allows a group of statements enclosed by pair of braces (). This group of statements is called as a compound statement or a block.
The general format of compound statement is:
{
statement 1;
statement 2;
statement 3;
}
for example:
{
int a,b;
a-8;
b=a+8;
}
10.
Both the statements are equivalent as they declare 'ch' to be char and initialize it with the value of 67. Since this is the ASCII code for 'C', the character constant also can he used to initialize 'ch' to 67.
11.
Character data type accepts and returns all valid ASCII characters. Character data type is often said to be an integer type, since all the characters are represented in memory by their associated ASCII Codes. If a variable is declared as char, C++ allows storing either a character or integer value.
12.
(i) 39 - Decimal
(ii) 032 - Octal
(iii) 0XCAFE - Hexadecimal
(iv) 04.14 - Decimal
13.
C++ program statements are constructed by many different small elelments such as commands, variables, constants and many more symbols called as operators and punctuators. Individual elements are collectively called as Lexical units or Lexical elements or Tokens. C++ has the following tokens:
(i) Keywords
(ii) Identifiers
(iii) Literals
(iv) Operators
(v) Punctuators
14.
1. Recursion is a method of solving problems that involves breaking a problem down into smaller and smaller sub problems until user gets in to a small problem that it can be solved trivially.
2. Usually recursion involves a function calling itself. While it may not seem like much on the surface, recursion allows us to write elegant solutions to problems that may otherwise be very difficult to program.
15.
No, the loop condition do not affect the loop invariant. Because the loop invariant is true at four points.
(i) at the start of loop
(ii) at the start of each iteration
(iii) at the end of each iteration
(iv) at the end of the loop
16.
1. --minimum (a,b)
2. -- inputs: a, b are real numbers.
3. --output: result: minimum (a,b)
17.
By choosing an option logout through the session indicator on the far right side of the top panel.
18.
Advantages:
(i) It is free of cost
(ii) Accessible to everybody.
(iii) Not belongs to particular vendor.
(iv) It can be modified, for requirements.
19.
File Extension is the second part of the file name. It succeeds the decimal point in the file name. It is used to identify the type of file and it is normally upto 3 to 4 characters long.
Ex. 1. exe,2. html.
20.
Security Management features:
File access level security, System level security, Network level security.
21.
(i) Keeping track of which portion of memory are currently being used and who is using them.
(ii) Determining which processes (or parts of processes) and data to move in and out of memory.
(iii) Allocation and de-allocation of memory blocks as needed by the program in main memory. (Garbage Collection).
22.
HDMI (High Definition Multimedia Interface) is an audio/video interface which transfer the uncompressed video and audio data from a video controller, to a compatible computer monitor, LCD projector, digital television, etc.
23.
Memory enables the computer to store the program. The memory unit is of two types:
(i) Primary memory
(ii) Secondary memory
The primary memory is used to store data temporarily and secondary memory stores the data permanently.
24.
The ALU is a part of CPU where various computing functions are performed on data. ALU performs arithmetic operations such as addition, subtraction, multiplication, division and logical operations.
25.
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