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.
2.
Write a short note about Tamil Programming Language.
3.
Does the return type of a function help in overloading a function?
4.
Write down the importance of destructor.
5.
What is the error in the following structure definition.
struct employee{ inteno;charename[20];char dept;}
Employee e1,e2;
6.
What is the syntax to declare two – dimensional array.
7.
What is Parameter and list its types?
8.
Write about strlen() function.
9.
Suppose x and y are two double type variable that you want add as integer and assign to an integer variable. Construct a C++ statement for the doing so.
10.
What is the difference between 56L and 56?
11.
Why is char often treated as integer data type?
12.
Match the following
| A | B |
|---|---|
| (a) Modulus | (1) Tokens |
| (b) Separators | (2) Remainder of a division |
| (c) Stream extraction | (3) Punctuators |
| (d) Lexical Units | (4) get from |
13.
What are keywords? Can keywords be used as identifiers?
14.
What is the difference between an algorithm and a program?
15.
What is recursive problem solving?
16.
Define a loop invariant.
17.
Mention the different server distributions in Linux OS.
18.
What is Open Source?
19.
What is multi-user Operating system?
20.
21.
What are the parameters which influence the characteristics of a microprocessor?
22.
Differentiate Input and output unit.
23.
Write the functions of control unit.
24.
25.
What is a computer?
1.
2.
Based on Python programming language, the first Tamil programming language "Ezhil" (cm) is designed. With the help of this programming language, you can write simple programs in Tamil.
3.
No. The return type of overloaded functions are not considered for overloading same data type.
4.
The purpose of the destructor is to free the resources that the object may have acquired during its lifetime. A destructor function removes the memory of an object which was allocated by the constructor at the time of creating a object.
5.
Errors: (); is missing (ii) spaces are missing at two places (iii) structure name given wrongly.
Corrected structure:
struct employee (int eno; char ename [20];
char dept;}
employee e1, e2;
6.
The declaration of a 2-D array is data-type array_name[row-size][col-size];
In the above declaration, data-type refers to any valid C++ data-type, array_name refers to the name of the 2-D array, row-size refers to the number of rows and col-size refers to the number of columns in the 2-D array.
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.
The strelen() takes a null terminated byte string source as its argument and returns its length. The length does not include the null(\0) character.
9.
double x = 10.5, y = 4.5;
int a;
a = int (x) + int (y);
10.
56L- The suffix L forces the constant to be represented as long, which occupies 4 bytes.
56- This will be represented as int type constant which occupies 2 bytes as per Turbo C++.
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.
| A | B |
|---|---|
| (a) Modulus | (2) Remainder of a division |
| (b) Separators | (3) Punctuators |
| (c) Stream extraction | (4) get from |
| (d) Lexical Units | (1) Tokens |
13.
Keywords are the reserved words which convey specific meaning to the C++ compiler. They are the essential elements to construct C++ programs. Most of the keywords are common to C, C++ and Java. Keywords are reserved and cannot be used as identifiers.
14.
| Algorithm | Program |
| Algorithm is for human readers to understand. | Program is for the computers to execute directly. |
| Knowledge of English is needed. | Knowledge of programming language is required. |
| Easy to understand. | It is difficult to understand. |
15.
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.
16.
In iteration, the loop body is repeatedly executed as long as the loop condition is true. Each time the loop body is executed, the variables are updated.
However, there is also a property of the variables which remains unchanged by the execution of the loop body. This unchanging property is called the loop invariant.
17.
The server distribution in Linux OS:
(i) Ubuntu Linux
(ii) Linux Mint
(iii) Arch Linux
(iv) Deepin
(v) Fedora
(vi) Debian
(vii) Centos
18.
Open source refers to a program or software in which the source code is available in the web to all public, without any cost.
19.
A Multi-user Operating system is a computer operating system (OS) that allows multiple users on different computers or terminals to access a single system with one OS on it.
20.
21.
It depends on
(a) Clock speed
(b) Instruction set
(c) Word size
22.
| Input Unit | Output Unit |
| An input device feeds information to a computer system for processing. | output device reproduces or displays the results of that processing. |
| Input devices only allow for input of data to a computer. | output devices only receive the output of data from another device. |
| It is a peripheral device used to provide data and control signals to an information processing system such as computer. | It is a unit which sends data from the computer to another device. |
| Eg. keyboard, mouse | Eg. printer, monitor |
23.
The control unit controls the flow of data between the CPU, memory I/O devices. It also controls the entire operations of a computer.
24.
25.
Computer is an Electronic Machine, capable of performing basic operations like addition, multiplication, division etc. Computer accepts data as input, process it, produce output and stores it for future.
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