Advertisements
Chapters
2: Data Abstraction
3: Scoping
4: Algorithmic Strategies
5: Python - Variables and Operators
6: Control Structures
7: Python functions
8: Strings and String manipulation
9: Lists, Tuples, Sets and Dictionary
10: Python Classes and objects
11: Database Concepts
12: Structured Query Language (SQL)
13: Python and CSV files
14: Importing C++ programs in Python
15: Data manipulation through SQL
16: Data visualization using pyplot: line chart, pie chart and bar chart
![Samacheer Kalvi solutions for Computer Science [English] Class 12 TN Board chapter 1 - Function Samacheer Kalvi solutions for Computer Science [English] Class 12 TN Board chapter 1 - Function - Shaalaa.com](/images/computer-science-english-class-12-tn-board_6:5f2b1b2038084cf381bfa42c826a928c.jpg)
Advertisements
Solutions for Chapter 1: Function
Below listed, you can find solutions for Chapter 1 of Tamil Nadu Board of Secondary Education Samacheer Kalvi for Computer Science [English] Class 12 TN Board.
Samacheer Kalvi solutions for Computer Science [English] Class 12 TN Board 1 Function Evaluation [Pages 8 - 10]
Part I - Choose the best answer (1 Mark)
The small sections of code that are used to perform a particular task are called ______
Subroutines
Files
Pseudo code
Modules
Which of the following is a unit of code that is often defined within a greater code structure?
Subroutines
Function
Files
Modules
Which of the following is a distinct syntactic block?
Subroutines
Function
Definition
Modules
The variables in a function definition are called as ______
Subroutines
Function
Definition
Parameters
The values which are passed to a function definition are called ______
Arguments
Subroutines
Function
Definition
Which of the following are mandatory to write the type annotations in the function definition?
Curly braces
Parentheses
Square brackets
indentations
Which of the following defines what an object can do?
Operating System
Compiler
Interface
Interpreter
Which of the following carries out the instructions defined in the interface?
Operating System
Compiler
Implementation
Interpreter
The functions which will give exact result when same arguments are passed are called ______
Impure functions
Partial Functions
Dynamic Functions
Pure functions
The functions which cause side effects to the arguments passed are called ______
impure function
Partial Functions
Dynamic Functions
Pure functions
Part II - Answer the following questions (2 Marks)
What is a subroutine?
Define Function with respect to Programming language.
Write the inference you get from X:=(78).
Differentiate interface and implementation.
Which of the following is a normal function definition and which is a recursive function definition.
let rec sum x y:
return x + y
Which of the following is a normal function definition and which is a recursive function definition.
let disp :
print ‘welcome’
Which of the following is a normal function definition and which is a recursive function definition.
let rec sum num:
if (num!=0) then return num + sum (num-1)
else
return num
Part III - Answer the following questions (3 Marks)
Mention the characteristics of Interface.
Why strlen is called pure function?
What is the side effect of the impure function? Give example.
Differentiate pure and impure functions.
What happens if you modify a variable outside the function? Give an example.
Part IV - Answer the following questions (5 Marks)
What are called Parameters and write a note on Parameter without Type?
What are called Parameters and write a note on Parameter with Type?
Identify in the following program.
let rec gcd a b:=
if b <> 0 then gcd b (a mod b) else return a
Name of the function?
Identify in the following program.
let rec gcd a b:=
if b <> 0 then gcd b (a mod b) else return a
Identify the statement which tells it is a recursive function?
Identify in the following program.
let rec gcd a b:=
if b <> 0 then gcd b (a mod b) else return a
Name of the argument variable.
Identify in the following program.
let rec gcd a b:=
if b <> 0 then gcd b (a mod b) else return a
A statement that invokes the function recursively?
Identify in the following program.
let rec gcd a b:=
if b <> 0 then gcd b (a mod b) else return a
The statement which terminates the recursion?
Explain with example Pure and impure functions.
Explain with an example interface and implementation.
Solutions for 1: Function
![Samacheer Kalvi solutions for Computer Science [English] Class 12 TN Board chapter 1 - Function Samacheer Kalvi solutions for Computer Science [English] Class 12 TN Board chapter 1 - Function - Shaalaa.com](/images/computer-science-english-class-12-tn-board_6:5f2b1b2038084cf381bfa42c826a928c.jpg)
Samacheer Kalvi solutions for Computer Science [English] Class 12 TN Board chapter 1 - Function
Shaalaa.com has the Tamil Nadu Board of Secondary Education Mathematics Computer Science [English] Class 12 TN Board Tamil Nadu Board of Secondary Education solutions in a manner that help students grasp basic concepts better and faster. The detailed, step-by-step solutions will help you understand the concepts better and clarify any confusion. Samacheer Kalvi solutions for Mathematics Computer Science [English] Class 12 TN Board Tamil Nadu Board of Secondary Education 1 (Function) include all questions with answers and detailed explanations. This will clear students' doubts about questions and improve their application skills while preparing for board exams.
Further, we at Shaalaa.com provide such solutions so students can prepare for written exams. Samacheer Kalvi textbook solutions can be a core help for self-study and provide excellent self-help guidance for students.
Concepts covered in Computer Science [English] Class 12 TN Board chapter 1 Function are Introduction to Function, Function with Respect to Programming Language, Interface Vs Implementation, Pure Functions.
Using Samacheer Kalvi Computer Science [English] Class 12 TN Board solutions Function exercise by students is an easy way to prepare for the exams, as they involve solutions arranged chapter-wise and also page-wise. The questions involved in Samacheer Kalvi Solutions are essential questions that can be asked in the final exam. Maximum Tamil Nadu Board of Secondary Education Computer Science [English] Class 12 TN Board students prefer Samacheer Kalvi Textbook Solutions to score more in exams.
Get the free view of Chapter 1, Function Computer Science [English] Class 12 TN Board additional questions for Mathematics Computer Science [English] Class 12 TN Board Tamil Nadu Board of Secondary Education, and you can use Shaalaa.com to keep it handy for your exam preparation.