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: 29/06/2021
QB365 provides detailed and simple solution for every Creative Questions in class 11 Computer Science Subject. It will helps to get more idea about question pattern in every Creative questions with solution.
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.
Write a program to find the difference between Simple Interest and Compound Interest when Principal, Rate and Time are given, (principal = 500, Rate = 10, Time = 2).
2.
Explain the punctuators used in C++.
3.
Explain logical bitwise operator with an example.
4.
Explain increment and decrement operator with an example.
5.
Write the benefits of C++;
1.
#include < iostream.h >
#include< math.in >
void main ( )
{
int p, t;
double r; si, amt, ci, d;
d=0;
p = 5000; r=10; t -'2;
amt = p * (pow (l +r/100,t);
ci = amt - p;
si=p*r*t/100;
d=ci-si;
cout << "The compount interest=" << (float) ci << endl";
cout << "The simple interest=" << si << endl";
cout << "The difference between C.I and SI=" << (float) d << end1";
}
2.
Punctuators are symbols, which are used as delimiters, while constructing a C++ program. They are also called as "Separators". The following punctuators are used in C++; most of these symbols are very similar to C and Java.
| Separator | Description |
|---|---|
| Curly braces { } | Opening and closing curly braces indicate the start and the end of a block of code. A block of code containing more than one executable statement. These statements together are called as "compound statements". |
| Parenthesis ( ) | Opening and closing parenthesis indicate function calls and function parameters. |
| Square brackets [ ] | It indicates single and multidimensional arrays. |
| Comma, | It is used as a separator in an expression. |
| Semicolon ; | Every executable statement in C++ should terminate with a semicolon. |
| Colon: | It is used to label a statement. |
| Comments // /* */ |
All statements that begin with II are treated as comments. Comments are simply ignored by compilers. i.e., the compiler does not execute any statement that begins with a // // Single line comment /* */ Multiline comment. |
3.
(i) Logical bitwise operators:
&Bitwise AND (Binary AND)
I Bitwise OR (Binary OR)
^ Bitwise Exclusive OR (Binary XOR)
1. Bitwise AND (&) will return 1 (True) if both the operands are having the value 1 (True); Otherwise, it will return 0 (False)
2. Bitwise OR ( I) will return 1 (True) if any one of the operands is having a value 1 (True); It returns 0 (False) if both the operands are having the value 0 (False).
3. Bitwise XOR (") will return 1 (True) if only one of the operand is having a value 1 (True). If both are True or both are False it will return 0 (False).
The truth table for bitwise operators (AND, OR, XOR).
| A | B | A&B | A|B | A^B |
|---|---|---|---|---|
| 1 | 1 | 1 | 1 | 0 |
| 0 | 0 | 0 | 1 | 1 |
| 0 | 1 | 0 | 1 | 1 |
| 0 | 0 | 0 | 0 | 0 |
Example:
If a = 65, b=15
Equivalent binary values of 65 = 0100 0001;
15 = 0000 1111
| Operator | Operation | Result | |||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| & | a&b |
|
|||||||||||||||||||||||||||
| | | alb |
|
|||||||||||||||||||||||||||
| ^ | a^b |
|
4.
| Operator | Operation | Example (Assume n=2; what will be value of n) | |
|---|---|---|---|
| Prefix | Postfix | ||
| ++ | Increment | ++n; | n++; |
| n=n+1; Value of n; | Value of n; n=n+1; | ||
| Value of n = 3 | Value of n = 2 | ||
| -- | Decrement | --n; | n--; |
| n=n-1; Value of n; | Value of n; n=n-1; | ||
| Value of n = 1 | Value of n = 2 | ||
5.
(i) C++ is highly portable language and is often the language of choice for multi-device, multi-platform app development.
(ii) C++ is an object-oriented programming language and includes classes, inheritance, polymorphism, data abstraction and encapsulation.
(iii) C++ has a rich function library
(iv) C++ allows exception handling, and function overloading which are not possible in C.
(v) C++ is a powerful, efficient and fast language. It finds a wide range of applications from GUI applications to 3D graphics for games to real-time mathematical simulations.
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