answersLogoWhite

0


Best Answer

Hii

I am Ajay Kumar

MCA Student

A Java application can accept any number of arguments from the command line.

The user enters command-line arguments when invoking the application and specifies them after the name of the class to be run.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Definition of commandline arguments
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How many arguments are required in the definition of an overloaded unary operator?

any number of arguments


What is meant by console application in dotnet?

Simply a non-GUI app. Like commandline in Windows. A black screen with text. The purpose of this type of application is to run in commandline.


What ConsoleWriteLine do when NULL character within a string?

it will print nothing on commandline..


What is the definition of summation?

the final arguments of opposing attorneys before a case goes to the jury.


What is meant by arguments in c?

Arguments appear in functions and in function calls. Arguments passed to a function are known as actual arguments. The arguments used by the function are known as the formal arguments. In C, all arguments are passed by value, such that the formal argument is a copy of the actual argument.


What is the B shell use for in Linux?

A shell in Linux is the interpreter that provides a commandline interface (CLI). There are many kinds of shells.


How do you write a function with a variable number of input elements in PHP?

When defining your function, do not put any arguments in the definition (e.g. function myFuntion()). Inside the function, you can use func_num_args() and func_get_arg($number) to get the function's arguments.


What is Quarrelsome?

Quarrelsome means disputatious or contentious. Hope that helps The definition of quarrelsome is someone who is prone to getting into arguments or fights.


What is a command argument?

Command line arguments are provided at the time of running the program. Example: Suppose that your program needs input name and its value then running it from commandline(DOS prompt) you provide the values after the program name java xyz name JAX(name is name and value is jax)


What is the definition of the word argue?

argue is a verb meaning: 1. Present reasons and arguments 2. Have an argument about something 3. Give evidence of


What is a basic structure of a c programming?

Basic structure of a C program is /* Documentation section */ /* Link section */ /* Definition section */ /* Global declaretion section */ /* Function section */ (return type) (function name) (arguments...) void main() { Declaration part Executable part (statements) } /* Sub-program section */ (return type) (function name 1) (arguments...) (return type) (function name 2) (arguments...) . . . (return type) (function name n) (arguments...) Basic structure of a C program is /* Documentation section */ /* Link section */ /* Definition section */ /* Global declaretion section */ /* Function section */ (return type) (function name) (arguments...) void main() { Declaration part Executable part (statements) } /* Sub-program section */ (return type) (function name 1) (arguments...) (return type) (function name 2) (arguments...) . . . (return type) (function name n) (arguments...)


What are the formal arguments?

Formal arguments are the named arguments defined by the function. Actual arguments are those arguments that were passed to the function by the caller.