answersLogoWhite

0

In most newspapers, there is an opinion page, where various columnists express their views on the issues of the day; these columnists have a by-line at the beginning of the article (it's called a "by-line" because it tells who wrote the opinion piece-- for example, By Joseph Williams. By Heather Donnelly). There is also an editorial page, where the editor expresses the official viewpoint of that newspaper. It may be about a national issue like gun control, or a local issue like building a casino in town. Sometimes, the editorial page editor gives his or her name, but at other times, the editorial will not have the name of the person (or persons) who wrote it. When an editorial does not say the name of who wrote it, that is called an "unsigned editorial."

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

What MLA style parenthetical citation uses the correct format to refer to an unsigned editorial titled Values?

("Values")


Use a sentence with word editorial?

This was editorial mistake. Who is editorial chief there?


What is an unsigned music artist called?

An unsigned artist.


Twelve types of editorial?

1.Editorial of Argumentation 2.Editorial of Criticisms 3.Editorial of Entertainment 4.Editorial for Special Occasion 5.Editorial of Information 6.Editorial of Interpretation 7.Editorial Liner 8.Editorial of Persuasion 9.Editorial of Appreciation/Commendation:Tribute 10.Mood Editorial 11.Sports Editorial 12.Pooled Editorial =HOPE IT CAN HELP!!!!!! =Roxanne R. Alvarez


What is editorial of argumentation?

what is editorial argumentation


What is the value of an unsigned photo of George Harrison?

Unsigned? Not much.


When was The Unsigned Guide created?

The Unsigned Guide was created in 2003.


Can you deposit an unsigned check?

No, you cannot deposit an unsigned check.


What is an unsigned integer?

Having an unsigned integer means that the integer is positive, and not negative; literally, the integer is unsigned and assumed to be positive. The unsigned integer 8 is positive-eight, not negative-eight.


When was Editorial Bruguera created?

Editorial Bruguera was created in 1910.


When was Editorial Humor created?

Editorial Humor was created in 1990.


C plus plus program to list all Armstrong number?

#include<iostream> #include<vector> unsigned count_digits (unsigned num, const unsigned base=10) { unsigned count=1; while (num/=base) ++count; return count; } class number { std::vector<unsigned> value; unsigned base; public: number (const unsigned _value, const unsigned _base=10): value {}, base {_base} { *this = _value; } number& operator= (const unsigned _value); operator unsigned () const; bool is_narcissistic () const; }; number& number::operator= (unsigned _value) { unsigned count = count_digits (_value, base); value.resize (count); while (count) { value[value.size()-count--] = _value%base; _value/=base; } return *this; } number::operator unsigned () const { unsigned num = 0; for (unsigned index=0; index<value.size(); ++index) num += value[index]*static_cast<unsigned>(std::pow (base, index)); return num; } bool number::is_narcissistic () const { unsigned num = 0; for (unsigned index=0; index<value.size(); ++index) num += static_cast<unsigned>(std::pow (value[index], value.size())); return num == static_cast<unsigned> (*this); } unsigned main() { const unsigned min=1; const unsigned max=100; std::cout << "Narcissistic numbers in the range " << min << " through " << max << ":\n\t"; for (unsigned n=min; n<=max; ++n) if (number(n).is_narcissistic()) std::cout << n << ' '; std::cout << '\n' << std::endl; }