answersLogoWhite

0


Best Answer

Argument is a brief summary of a plot/theme prefixed to a literary work.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the function of argument in a literary work?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a argument in Microsoft Excel?

An argument is the name for something used in a function in order for it to work. A SUM function needs something to sum, so you provide that. That is an argument. Most functions require arguments to work, though there are some, like TODAY() that don't need any arguments.An argument is the name for something used in a function in order for it to work. A SUM function needs something to sum, so you provide that. That is an argument. Most functions require arguments to work, though there are some, like TODAY() that don't need any arguments.An argument is the name for something used in a function in order for it to work. A SUM function needs something to sum, so you provide that. That is an argument. Most functions require arguments to work, though there are some, like TODAY() that don't need any arguments.An argument is the name for something used in a function in order for it to work. A SUM function needs something to sum, so you provide that. That is an argument. Most functions require arguments to work, though there are some, like TODAY() that don't need any arguments.An argument is the name for something used in a function in order for it to work. A SUM function needs something to sum, so you provide that. That is an argument. Most functions require arguments to work, though there are some, like TODAY() that don't need any arguments.An argument is the name for something used in a function in order for it to work. A SUM function needs something to sum, so you provide that. That is an argument. Most functions require arguments to work, though there are some, like TODAY() that don't need any arguments.An argument is the name for something used in a function in order for it to work. A SUM function needs something to sum, so you provide that. That is an argument. Most functions require arguments to work, though there are some, like TODAY() that don't need any arguments.An argument is the name for something used in a function in order for it to work. A SUM function needs something to sum, so you provide that. That is an argument. Most functions require arguments to work, though there are some, like TODAY() that don't need any arguments.An argument is the name for something used in a function in order for it to work. A SUM function needs something to sum, so you provide that. That is an argument. Most functions require arguments to work, though there are some, like TODAY() that don't need any arguments.An argument is the name for something used in a function in order for it to work. A SUM function needs something to sum, so you provide that. That is an argument. Most functions require arguments to work, though there are some, like TODAY() that don't need any arguments.An argument is the name for something used in a function in order for it to work. A SUM function needs something to sum, so you provide that. That is an argument. Most functions require arguments to work, though there are some, like TODAY() that don't need any arguments.


What exactly is an optional argument in Excel?

An argument is something inside the brackets of a function that is needed for it to work. An optional argument is an argument that can be left out, in which case a default value is often used. So the function will work with or without the optional argument. For example, if you are using the MATCH function you must specify what it is searching for and the range it is searching in. Those two arguments have to be put in, or it won't work. You can also specify what way it searches, using an optional argument. The MATCH function will find the largest value that is less than or equal to what you searching for if you put in 1, with the values in ascending order. Putting in 0 means it must find an exact match. It will find the smallest value that is less than or equal to what you searching for if you put in -1, with values having to be in descending order. If you leave it out completely, it uses 1 as the default.


What is the function of a claim in a literary analysis?

In literature, a claim is a statement that asserts something to be true. A claim does not have to be factual, it can be the feelings of the author of the literary work.


A literary term for a passage taken from another work?

The literary term for a passage taken from another work is an "excerpt." This is a brief selection or quotation from a book, article, or other piece of writing. Excerpts are often used to support an argument, provide evidence, or introduce a text.


What is the term for an essay that considers parts of a literary work to contribute to the whole?

literary analysis essay


When a function is used as an argument in another function?

It is called callback function. For an example see the qsort function.


What is the function of the hook in a literary analysis?

The function of the hook is to get the attention of the reader.


What are limits in maths?

Limits (or limiting values) are values that a function may approach (but not actually reach) as the argument of the function approaches some given value. The function is usually not defined for that particular value of the argument.


What happen when a c program passes an array as a function argument?

When an array name is passed as a function argument, the address of the first element is passed to the function. In a way, this is implicit call by reference. The receiving function can treat that address as a pointer, or as an array name, and it can manipulate the actual calling argument if desired.


What is a value that is substituted for the independent variable in a relationship or function?

It is called the argument of the function.


What is the name given to the technique whereby a function argument can be modified by passing a pointer to the argument?

Call_by_reference


When argument are passed by value the function works with the original arguments in the calling program?

When a function is passed by value the calling function makes a copy of the passed argument and works on that copy. And that's the reason that any changes made in the argument value does gets reflected to the caller.