English
Tamil Nadu Board of Secondary EducationHSC Science Class 12

What are called Parameters and write a note on Parameter with Type? - Computer Science

Advertisements
Advertisements

Question

What are called Parameters and write a note on Parameter with Type?

Answer in Brief

Solution

Parameters are the variables in a function definition and arguments are the values that are passed to a function definition.

Parameter with Type

Parameter with Type:
Now let us write the same function definition with types for some reason:
(requires: b > 0 )
(returns: a to the power of b )
let rec pow (a: int) (b: int): int: =
if b=0 then 1 else a * pow b (a-1)

  • When we write the type annotations for ‘a’ and ‘b’ the parentheses are mandatory.
  • There are times we may want to explicitly write down types.
  • This useful at times when you get a type error from the compiler that doesn’t make sense.
  • Explicitly annotating the types can help with debugging such an error message.
shaalaa.com
Function with Respect to Programming Language
  Is there an error in this question or solution?
Chapter 1: Function - Evaluation [Page 10]

APPEARS IN

Samacheer Kalvi Computer Science [English] Class 12 TN Board
Chapter 1 Function
Evaluation | Q 1. (ii) | Page 10
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×