11th Standard Syllabus & Materials
11th Standard
Tamilnadu 11th Standard Tamil மொழி கலை -செய்யுள் - ஒவ்வொரு புல்லையும் Important Questions And Answers Study Material - QB365
NEW11th Standard
Tamilnadu 11th Standard Tamil கேடில் விழுச்செல்வம் - உரைநடை - தமிழகக் கல்வி வரலாறு Important Questions And Answers Study Material - QB365
NEW11th Standard
Tamilnadu 11th Standard Tamil பீடு பெற நில் - இலக்கணம் - பகுபத உறுப்புகள் Important Questions And Answers Study Material - QB365
NEW11th Standard
Tamilnadu 11th Standard Tamil பீடு பெற நில் - செய்யுள் - குறுந்தொகை Important Questions And Answers Study Material - QB365 Set B
NEW11th Standard
Tamilnadu 11th Standard Tamil பீடு பெற நில் - செய்யுள் - குறுந்தொகை Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
Tamilnadu 11th Standard Tamil பீடு பெற நில் - செய்யுள் - காவடிச்சிந்து Important Questions And Answers Study Material - QB365 Set B

Published on: 01/08/2018
Some of the important questions from the chapter Specification and Abstraction covered in this question paper.it covers the important one mark, two, three marks from the book back and PTA question.
Students, subscribe and get plenty of question paper with answer key. For subscription please click here.
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

Part A
1.
Which of the following activities is not algorithmic in nature?
Multiply two numbers
Draw a kolam
Walk in the park
Swapping of two numbers
2.
Omitting details inessential to the task and representing only the essential features of the task is known as
specification
abstraction
composition
decomposition
3.
Stating the input property and the input-output relation a problem is known
specification
statement
algorithm
definition
4.
If 0 < i before the assignment i := i-1 after the assignment, we can conclude that
0 < i
0 \(\le \) i
i = 0
0 \(\ge \) i
5.
How many basic building blocks are there to construct algorithms?
1
2
4
3
6.
Which of the following not used to construct algorithm?
Data
Process
Control flow
Functions
7.
In computers, operations on data performed by ________.
instructions
program
process
all of these
8.
What is the specification of the algorithm?
divide (A + B)
square - root(n)
square - root (x)
adding (A, B)
9.
_________statement is used to store a value in a variable.
Assignment
Sequential control flow
Alternative control flow
Iterative
10.
The data stored in a varibale is also called a_______.
process
data
value
constant
11.
Each part of algorithm is known as _________.
input
function
variable
program
12.
_________is the left side of the assignment.
Variable
Value
Operator
All the above
Part B
13.
Define an algorithm.
14.
Distinguish between an algorithm and a process
15.
Initially, farmer, goat, grass, wolf = L, L, L, L and the farmer crosses the river with goat. Model the action with an assignment statement.
16.
Specify a function to find the minimum of two numbers.
17.
Mention the three different types of Chameleons.
Part C
18.
What is the difference between assignment operator and equality operator?
19.
How do you know whether the state changes in an algorithm?
20.
What is control flow?
21.
Name the control flow statements used in an algorithm.
22.
Write the specification format of an algorithm for computing the square root of a number.
23.
Which defines the rights and responsibilities of the designer and user of the algorithm?
Part D
24.
Explain the types of control flow statements.
25.
Explain the three control flow statement.
Part A
1.
(d)
Swapping of two numbers
2.
(b)
abstraction
3.
(a)
specification
4.
(b)
0 \(\le \) i
5.
(c)
4
6.
(b)
Process
7.
(a)
instructions
8.
(b)
square - root(n)
9.
(a)
Assignment
10.
(c)
value
11.
(b)
function
12.
(c)
Operator
Part B
13.
An algorithm is a step by step sequence of statements intended to solve a problem. An algorithm starts execution with the input data, executes the statements and finishes execution with the output data.
14.
| Algorithm | Process |
| An Algorithm is a sequence of instructions to solve a problem. | A process is executing of instructions to accomplish the intended task. |
| Elements of a process are abstracted in algorithms. | A process is actual execution of the steps to solution. |
| Example: Algorithm can be compared to a recipe. | Example: A process can be compared to cooking. |
15.
Model of the action with an assignment statement:
1. --farmer, goat, grass, wolf = L,L.L.L.
2. Farmer, goat:= R, R
3. -farmer, goat, grass, wolf = R.R.L,L
4. --farmer: = L
5. --farmer, goat, grass, wolf = L,R,L.L
6. farmer, grass: = R, R
7. --farmer, goat, grass, wolf = R,R,R,L
8. farmer, goat: = L, L
9. --farmer, goat, grass, wolf = L,L,R,L
10. farmer, wolf: = R.R
11. --farmer, goat, grass, wolf = R,L,R,R
12. farmer: = L
13. --farmer, goat, grass, wolf = L,L,K,R
14. farmer, goat: = R,R
15. -- farmer, goat, grass, wolf = R,R,R,R
16.
1. --minimum (a,b)
2. -- inputs: a, b are real numbers.
3. --output: result: minimum (a,b)
17.
There are three different types of chameleons: red chameleons, green chameleons, and blue chameleons.
Part C
18.
| Assignment Operator | Equality Operator |
| Assignment operator is used to assign the values to the variable. | The equality operator is used to compare the values of both the variables and the result is true or false. |
19.
As the values of the variables are changed, the state changes
20.
The order in which the statements are executed may differ from the order in which they are written in the algorithm. This order of execution of statements is known as the control flow.
21.
(i) Sequential Control Flow
(ii) Alternative Control Flow
(iii) Iterative Control Flow.
22.
square_root(n)
--inputs: n is a real number, n > O.
--outputs: y is a real number such that y2 = n.
23.
Specification of an algorithm serves as a contract between the designer of the algorithm and the user of the algorithm because it defines the rights and responsibilities of the designer and the user.
Part D
24.
There are three important control flow .statements to alter the control flow depending on the state.
(i) In sequential control flow, a sequence of statements are executed one after another in the same order as they are written.
(ii) In alternative control flow, a condition of the state is tested, and if the condition is true, one statement is executed; if the condition is false an alternative statement is executed.
(iii) In iterative control flow, a condition of the state is tested, and if the condition is true, a statement is executed. The two steps of testing the condition and executing the statement are repeated until the condition becomes false.
25.
There are three important control flow statements to alter the control flow depending on the state.
(i) In sequential control flow, a sequence of statements are executed one after another in the same order as they are written
(ii) In alternative control flow, a condition of the state is tested, and if the condition is true, one statement is executed; if the condition is false, an alternative statement is executed.
(iii) In iterative control flow, a condition of the state is tested, and if the condition is true, a statement is executed. The two steps of testing the condition and executing the statement are repeated until the condition becomes false.
11th Standard Syllabus & Materials
11th Standard
Tamilnadu 11th Standard Tamil பீடு பெற நில் - செய்யுள் - காவடிச்சிந்து Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
Tamilnadu 11th Standard Tamil பீடு பெற நில் - உரைநடை - மலை இடப்பெயர்கள் : ஓர் ஆய்வு Important Questions And Answers Study Material - QB365 Set B
NEW11th Standard
Tamilnadu 11th Standard Tamil பீடு பெற நில் - உரைநடை - மலை இடப்பெயர்கள் : ஓர் ஆய்வு Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
Tamilnadu 11th Standard Tamil மாமழை போற்றுதும் - செய்யுள் - ஐங்குறுநூறு Important Questions And Answers Study Material - QB365 Set B
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