User-Defined_Functions_in_C__with_Examples_-_Dot_Net_Tutorials

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/15

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

User-Defined Functions

Functions that are defined by the user in C# to perform specific tasks.

2
New cards

Return Type

The data type of the value that a function returns after execution.

3
New cards

Void Function

A function that does not return a value; its return type is specified as void.

4
New cards

Function Overloading

The ability to create multiple functions with the same name but different parameter lists.

5
New cards

Arguments

Values passed to a function when it is called, which the function uses for its operations.

6
New cards

Parameter List

The set of parameters that a function can accept, defining the kind and number of inputs.

7
New cards

Function with No Argument and No Return Value

A function that neither takes any parameters nor returns a value.

8
New cards

Function with No Argument but Return Value

A function that has no parameters but returns a value.

9
New cards

Function with Argument but No Return Value

A function that accepts parameters but does not return a value.

10
New cards

Function with Argument and Return Value

A function that takes parameters and returns a value after computation.

11
New cards

Static Keyword

A modifier that indicates a member belongs to the type itself rather than to a specific object.

12
New cards

Data Transfer

The movement of data from the calling function to the called function or vice versa.

13
New cards

C# Language

A multi-paradigm programming language developed by Microsoft, known for its versatility and strong typing.

14
New cards

Namespace

A container that holds classes, functions, and other namespaces to organize code and avoid naming conflicts.

15
New cards

Main Method

The entry point of a C# application where program execution begins.

16
New cards

Return Statement

A statement used in a function to return data to the calling function and terminate the function execution.