Computer Science, asked by arpithakotresh22, 1 year ago

__ returns a value unlike___?
1) procedure, subroutine
2) procedure, function
3) function,method
4) function, procedure

Answers

Answered by aditijaink283
0

Answer:

The correct answer to the given question is:

4) function, procedure

Explanation:

Function:

A function is one of the basic thinking in computer programming. It is used to calculate something from a certain input. This is why it takes its name from mathematics. Functions can be user-defined or predefined. A functional program has a block of code that performs some specific task or function.

Procedure:

When programming a particular set of instructions or instructions is called a procedure. Depending on the programming language, it is a procedure, subroutine, function, or subroutine.

Functions always return a value after executing queries. Procedures can return a value using the "IN OUT" and "OUT" arguments.

Whenever functions are compiled, they provide an output based on the given input. Procedures are compiled only once, but they can be called as many times as needed without having to compile each time.

#SPJ2

Answered by ravilaccs
0

Answer:

The correct answer is option 4

Explanation:

  • Functions are "self contained" modules of code that accomplish a specific task. Functions usually "take in" data, process it, and "return" a result. Once a function is written, it can be used over and over and over again.
  • A function definition in C programming consists of a function header and a function body. Here are all the parts of a function −
  • Return Type − A function may return a value. The return_type is the data type of the value the function returns. Some functions perform the desired operations without returning a value. In this case, the return_type is the keyword void.
  • Function Name − This is the actual name of the function. The function name and the parameter list together constitute the function signature.
  • Parameter List − A parameter is like a placeholder. When a function is invoked, you pass a value as a parameter. This value is referred to as the actual parameter or argument. The parameter list refers to the type, order, and number of the parameters of a function. Parameters are optional; that is, a function may contain no parameters.
  • Function Body − The function body contains a collection of statements that defines what the function does.
  • In computer programming, a procedure is a set of coded instructions that tell a computer how to run a program or calculation. Many different types of programming languages build a procedure. Depending on the programming language, a procedure may also be called a subroutine, subprogram or function.
Similar questions