answersLogoWhite

0


Best Answer

False

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can you only place variables in the parenthesis of function notations?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you declare local and global variables in pseudo code?

Pseudocode is not a programming language (it's specifically intended for human interpretation), so there is no need to declare variables, you simply define them as and when you require them. For instance: Let x = 42 Let y = x * 2


Where do you put a period at the end of parenthesis or in the parenthesis?

After the parenthesis, ie: Jane (a timid girl) walked slowly to school. or Jane walked slowly to school (a big high school). when it is the last part of the sentence you place it inside Jane walked slowly to school (a big school.)


The branch of mathamatics that uses letters called variables in place of numerals?

Basic Algebra is where letters called variables are used in place of numerals


What is the meaning for use of parenthesis for i carry your heart with me?

he goes to anothar place but thier love will be carried with both of them


What is the branch of mathematics that uses letters called variables in place of a numeral?

Algebra uses letters called variables


Why are variables used in expressions?

They take the place of an unknown quantity. They can change values, thus they are called variables, their quantity varies.


The brach of mathematics that uses letters called variables in place of numerals?

Algebra uses variables to represent the unknown numeral.


What is turbo c variables?

Turbo C variables are memory place holders for storage of data during the execution of a Turbo C program. Types of variables include integer, real and char.


Putting numbers in place of variables in an expression is known as?

evalauting the expression


Why and how are variables used in math?

They are used in place of an unknown number or value.


What is a letter the takes the place of a Numbers?

They are variables or unknowns and are used in algebra.


Why you should use functions?

Functions allow the ease of updating repeatedly used sections of code. For example if I wanted the computer to print out the current values of certain variables in various parts of my program I could write the function once and call it many times instead of copy pasting it into the various areas. The benefit to this is that lets say i wanted to change which variables I wanted to print out, without using a function I would have to go in and find and change every place I copy pasted the original code. Whereas with a function all you need to do is change it in one place and your done. Another reason is that it will reduce the amount of code you ultimately need to write.