answersLogoWhite

0


Best Answer

A triangle has 3 closed sides

A triangle has 3 interior angles that add up to 180 degrees

A triangle has 3 exterior angles that add up to 360 degrees

A triangle has a perimeter which is the sum of its 3 sides

A triangle will tessellate leaving no gaps or over laps

A triangle's 3 angles put together will form a straight line

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the 6 parameters in triangle function?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do find area triangle usibg functions?

You define a function with an return value. The return value would be the area of the triangle, and the parameters are the width/length and height of the triangle. Inside the function you would define how you would calculate the area, and then return the result.


What is the smallest number of formal parameters that can be included in a function definition in C?

You can have a function with no parameters.


Relationship between actual and formal arguments?

The formal arguments are the names given to the parameters/arguments in the function declaration. These names will be used within the body of the function. void myFunc( int i, char c ); // Function prototype The actual arguments are the variables and/or constants (those supplied by the caller) that are used when invoking the function. int intVar = 6; char charVar = 'e'; // Actual parameters 3 and 'G' will be mapped to the // formal parameters 'i' and 'c' myFunc( 3, 'G' ); // Execute function // Actual parameters 'intVar' and 'charVar' will be mapped // to the formal parameters 'i' and 'c' myFunc( intVar, charVar ); // Execute function


What is true about the parameters of a function (Python 3)?

a. Functions can have only one parameter. b. The order in which the parameters are defined matters. c. Parameters can be passed to a function in any order. d. Parameters have no order.


How many parameters are possible using the IF function in Excel?

The IF function has 3 parameters. The condition, the true part and the false part.


What does the function counter do and what are its parameters?

There is no builtin function 'counta' in C.


What is the input of a function called?

Parameters


Is sendng inputs to a function optional?

You don't 'send input' to a function, you pass parameters. There are functions without parameters, 'getpid' for example.


What is function parameters?

whatever the variables we declare in function signature to receive the arguments at the calling that are known as parameters.. e.g. int sum(int a,int b); here a & b are known as parameters.....


How do you call a function named my function?

In most languages, you can't have names with space, for functions, variables, etc. Assuming your function is called myFunction, the usual way to call it is: myFunction() This assumes the function requires no parameters. If the function does require parameters, the parameters will be included within parentheses.


define function overloading?

Defining several functions with the same name with unique list of parameters is called as function overloading.


What is the significance of using void in functions parameters lists?

It means that the function doesn't have parameters.example:int foo (void); -- it is a prototype for function 'foo', having no parametersint bar (); -- it is not a prototype as it says nothing about the parameters