answersLogoWhite

0

Parameters are used to pass or assign values to an operation or routine at run time.

These are often used where an executable file is used in order for the user to direct the operation of the routine, but without changing the code of the executable or recompiling it.

For example parameters are used extensively in old MS DOS (compiled) executables in order to to provide different result (without changing the code of the executable).

The DIR (Directory) command for example:

DIR

DIR *.exe / DIR *.txt

DIR /P

DIR /W

DIR /A

All use the same executable (DIR), but provide the user with different sets of output

User Avatar

Wiki User

10y ago

What else can I help you with?

Continue Learning about Computer Science

At this language level, why are generics not supported?

Generics are not supported at this language level because they require a more advanced understanding of programming concepts such as type parameters and polymorphism, which may be too complex for a 12th grade reading level.


Microprocessor uses in robotics?

as we know that the core of the intelligent robot is its programming and as it is made up of electronics to control it assembly language programming is important so microprocessor is used in robotics.


What is the significance of the empty string symbol in programming languages?

The empty string symbol, represented as "", signifies a string with no characters. It is important in programming languages for tasks such as indicating a lack of data or serving as a placeholder in algorithms and functions.


What is the significance of atomic operations in concurrent programming?

Atomic operations are important in concurrent programming because they ensure that certain operations are executed as a single, indivisible unit. This helps prevent race conditions and ensures data integrity in multi-threaded environments.


What is a procedure in computer science and how does it function within the context of programming languages?

In computer science, a procedure is a set of instructions that perform a specific task. It is a reusable block of code that can be called and executed multiple times within a program. Procedures help organize and simplify code by breaking it into smaller, manageable parts. In programming languages, procedures are defined using functions or methods, which can take input parameters and return output values. They play a crucial role in structuring programs and promoting code reusability.

Related Questions

In switch case programming why are some parameters always in brackets?

There are syntax rules that are to be followed in every programming language and similar is the case here. These rules are a part of the Java language specification.


What is multilevel model of computer?

"Multilevel modelling" is a term used in computer programming. It refers to the use of parameters to define the organisation and analysis of information.


What do parameters allow you to do?

parameters let you run more specific and complex queries


Why has C programming become a very important discovery in the programming world?

It is the fastest IDE out there.


What are the important parameters in brayton cycle?

The important parameters in Brayton cycle are the pressure ratio between the compressor and turbine, the efficiency of the compressor and turbine, the temperature of the gas at various points in the cycle, and the specific heat ratio of the working fluid. These parameters are crucial in determining the performance and efficiency of the Brayton cycle.


Why are chromatographic parameters important in chromatographic separations?

Chromatographic parameters are important because they influence the separation of analytes in a mixture. These parameters, such as column temperature, flow rate, and mobile phase composition, directly affect the retention time and resolution of analytes. By optimizing these parameters, one can achieve better separation and detection of compounds in a sample.


What symbol is for a parameter?

In programming and mathematics, parameters are often represented by symbols such as letters, commonly in lowercase (e.g., (x), (y), or (z\)). In function notation, parameters may be denoted within parentheses, such as in (f(x)) or (g(a, b)). Additionally, in some contexts, parameters can be represented by Greek letters (e.g., (\alpha), (\beta)) to signify specific values or constants.


How methods with multiple parameters are declared?

The same as in C, with a comma-separated list of formal arguments enclosed in parenthesis.


How do you emphasize a word in a sentence?

Let me emphasize the most important part of my parameters to you.


Why are rem statements important in qbasic programming?

qbasic is important because its technology


What are the most important uses for C?

System Programming


Why would you use Arguments and Parameters?

Arguments and parameters are used in programming to pass data to functions, enabling them to perform operations based on that data. Parameters act as placeholders in function definitions, while arguments are the actual values provided when the function is called. This allows for greater flexibility and reusability of code, as the same function can be executed with different inputs to produce varying outcomes. Additionally, using arguments and parameters helps improve code readability and organization.