Read and download the CBSE Class 12 Computer Science User Defined Functions Assignment for the 2026-27 academic session. We have provided comprehensive Class 12 Computer Science school assignments that have important solved questions and answers for User Defined Functions. These resources have been carefully prepared by expert teachers as per the latest NCERT, CBSE, and KVS syllabus guidelines.
Download Class 12 Computer Science User Defined Functions Homework PDF
Every Class 12 Computer Science student should solve these problems regularly to build strong core knowledge. These printable assignments offer a great way to test yourself on User Defined Functions, featuring questions of all difficulty levels for better exam scores.
Download Assignment: User Defined Functions (Class 12 Computer Science)
Question. In C, the program execution starts from?
Answer: main() function
Question. A function that perform no action?
Answer: dummy function
Question. The default return data type in function is?
Answer: int
Question. The parameter passing mechanism used in C is?
Answer: Call by Value and call by Reference
Question. The function main() is?
Answer: A user define function
Question. How many main() functions can be defined in a C program?
Answer: one
Question. ____________ function is used to calculate the power of a number.
Answer: pow()
Question. The functions are predefined and supplied along with the compiler?
Answer: Built-in functions
Question. Function declaration ends with a _?
Answer: ; (semicolon)
Question. A function that does not return anything has return type?
Answer: void
Question. Functions are commonly divided into __ types.
Answer: two
State Whether True or False?
Question. Is it compulsory to have one return statement in a function?
Answer: False
Question. Is it possible that a function can contain more than one return statement?
Answer: True
Question. Can we pass a constant through a function?
Answer: True
Question. Function can return more then one values using return statement?
Answer: False
Question. To get back from a function, we must use return statement?
Answer: True
Exercise Questions
Question. Distinguish between arguments and parameters?
Answer: These are variables used in function. These are the optional part of the function. Their existence depends on the requirement of the user. It means there may be zero or more arguments. These arguments are of two types:
• Arguments (Actual parameters)
• Parameters (Formal parameters)
Arguments: Variables used in a function call are called arguments. These are written within the parentheses ( ) after the function name in the function call. They are also called actual parameters.
Parameters: Variables used in the function definition are called parameters. They are also called formal parameters. They receive values form the calling function. Parameters must be written within the parentheses ( ) after the function name in function definition.
Question. What is the need of function declaration?
Answer: Function declaration is also called Function Prototyping. It is different from function definition. It does npot have any body. It is terminated with semicolon (;). Function declaration provides the information to the compiler about the type of function, its name and arguments. When we call a function to use it, compiler verifies the function call with its declaration. If function declaration does not found, compiler will display an error message.
Question. How does a function definition differ from function declaration?
Answer: Function declaration is also called Function Prototyping. It is different from function definition. It does npot have any body. It is terminated with semicolon (;). Function declaration provides the information to the compiler about the type of function, its name and arguments. When we call a function to use it, compiler verifies the function call with its declaration. If function declaration does not found, compiler will display an error message.
Function Definition defines the working of the function. In the definition of a function, we define the type, name, arguments and body of the function.
Question. What role does the return statement play?
Answer: Return is a keyword. It is used in the definition of functions. This keyword is used in those functions which return a value to their calling function. Return statement must be the last statement in the body of the function. For
example:
int sum(int a, int b)
{
int c=a+b;
return c;
}
In the above example, the function sum() returns the value of c to its calling functions with the help of return statement.
Question. When will the execution of the function terminates?
Answer: Function is the logical grouping of statements. Functions are used to solve a complex problem by dividing it into smaller parts. A function once defined can be used many times. When a function is called, it starts its execution. This execution goes on till the end of the body of the function. When function completes its execution, program control is returned to the calling function.
Question. Explain the advantages or uses of function?
Answer: Using functions have a number of advantages. The main advantages of using a function are:
• It becomes easy to solve a complex program by dividing it into small functions.
• It becomes easy to debug the program.
• It is easy to maintain and modify a function.
• It allows the reusability of code. A function can be called any number of times but defined only once.
• Small functions are self-documenting.
• It allows the programmer to build a library of the commonly used functions.
• It facilitates top-down modular programming approach.
Other Important Questions
Question. What are functions? Write their types.
Answer: A function is a subprogram. It is also called a Routine or Procedure. It is a logical grouping of statements in a program. Functions are used to solve a complex problem by dividing it into smaller parts. A function once defined can be used many times. In every executable programs, there must be a main() function in the program. Program execution starts from this main function. In other words, we can say that main function act as a entry point of execution on the program. Types of Functions:
Functions can be classified mainly into two categories:
1. Library or Built-in functions
2. User defined functions
Question. What are Library Functions?
Answer: Those functions, which are in-built or pre-defined in the C language, are called standard or library functions. All these functions are organized in header files (also called library files). To use any library function, we must include the corresponding header file (in which it is defined) in our program. For example: clrscr( ), printf(), scanf(), sqrt(), strcpy() etc. are the predefined functions. The input output functions scanf( ) and printf( ) are defined in the stdio.h header file. So, we have to include this file in our program if we want to use these functions. Similarly, string functions strlen( ), strcpy( ), strcat( ), strcmp( ), strupr( ), strlwr( ) etc. are defined in the string.h header file. So, we must include string.h header file to use these string functions in our program.
Question. What are User Defined Functions?
Answer: Those functions, which are defined by the user, are called user defined functions. User can define his own functions to fulfil his requirements. The function main() is an example of user defined function. Its body is defined by user.
Question. What are Storage Classes?
Answer: Storage classes are used to define the scope, life and location of a variable in the program. In C, four storage classes are used to define scope, life and location of variable. These are:
1. Automatic Variables 2. Register Variables 3. Static Variables 4.External Variables
Free study material for Computer Science
User Defined Functions Printable Assignments & Solutions for Class 12 Computer Science
Class 12 Computer Science User Defined Functions Printable Assignments
Access the latest User Defined Functions assignments designed as per the current CBSE syllabus for Class 12. We have included all question types, including MCQs, short answer questions, and long-form problems relating to User Defined Functions. You can easily download these assignments in PDF format for free. Our expert teachers have carefully looked at previous year exam patterns and have made sure that these questions help you prepare properly for your upcoming school tests.
Key Advantages of Solving User Defined Functions Assignments
- Academic Growth: Consistent revision of User Defined Functions ensures deep comprehension and accurate responses during tests.
- Syllabus Compliance: Questions strictly follow current CBSE sample papers and official marking frameworks.
- Diverse Question Types: Each User Defined Functions assignment integrates Case Studies, objective items, and descriptive problems with answers.
- Efficiency & Speed: Routine problem-solving on User Defined Functions sets builds critical speed and calculation precision.
Steps to Complete User Defined Functions Assignments Successfully
- Core Preparation: Go through the NCERT book for Class 12 Computer Science to build strong fundamentals before practice.
- Solo Problem Solving: Try working through the User Defined Functions questions independently before checking our solutions.
- Helpful Assets: Use our Revision Notes and Class 12 worksheets if any specific topic creates confusion.
- Progress Monitoring: Note down complex formulas or concepts, clearing them up with our online MCQ tests.
Expert Study Habits for Class 12 Computer Science Exams
For optimal success, solve a single assignment for User Defined Functions on a routine daily basis. Practicing under timed constraints boosts overall problem-solving efficiency and ensures readiness for official CBSE tests.
FAQs
You can download free PDF assignments for Class 12 Computer Science User Defined Functions from StudiesToday.com. These practice sheets have been updated for the 2026-27 session covering all concepts from latest NCERT textbook.
Yes, our teachers have given solutions for all questions in the Class 12 Computer Science User Defined Functions assignments. This will help you to understand step-by-step methodology to get full marks in school tests and exams.
Yes. These assignments are designed as per the latest CBSE syllabus for 2026. We have included huge variety of question formats such as MCQs, Case-study based questions and important diagram-based problems found in User Defined Functions.
Practicing topicw wise assignments will help Class 12 students understand every sub-topic of User Defined Functions. Daily practice will improve speed, accuracy and answering competency-based questions.
Yes, all printable assignments for Class 12 Computer Science User Defined Functions are available for free download in mobile-friendly PDF format.