Question: Does anybody here every take a course called “Science Fiction” in College?
if you did, is it hard to pass?
Answer:
Answer by bdts739
I took one in high school, it was basically a languge arts class that focused on sci fi. If you like sci fi then it shouldn’t be to bad.
Question: Do people take fundie author Tim LaHaye seriously?
I have read a couple of his “non-fiction” books where he dissects the book of Revelations in the Bible and his claims are scary. He uses scriptures to back himself up but his interpretations are taken out of context and grasping at straws. He also claims that currently the center of the universe is Rome and is full of evil due to that “because the Bible says so” as well as the idea that Catholics are not Christian no matter what they claim otherwise. He comes across as instead of “I think” or “I believe” but rather “this is how it is because God says so and you’re destined for hell if you believe otherwise”.
Unfortunately I do know a couple people who take his claims to be the gospel truth, no ifs, ands, or buts about it. But is that how most religious people think or are they much more skeptical?
Answer:
Answer by Farsight
I, being Catholic, could never take him seriously.
Point this out to those people you know –
They no doubt believe that the Catholic Church is the whore of babylon spoken of in Revelation. The problem with this is that the Catholic Church does not sit on seven hills. The “center” of the Church, which most would consider the Vatican sits on one hill, which is not one of the seven that make up Rome. So how can the Church be said whore? It can’t.
Question: C++ – Function does not take 5 agruments..How to fix this?
I keep getting this error when I compile my code.
error C2660: ‘Book::setBook’ : function does not take 5 arguments.
How can I fix this?
#include
#include
using namespace std;
class Book {
private:
int PubYear; //Variables
string Title, Author, Genre, Publisher;
public:
Book( ); //Default Constructor
void setTitle( string BookTitle )
{ Title = BookTitle; }
void setAuthor( string AuthorName)
{ Author = AuthorName; }
void setGenre( string GenreType )
{ Genre = GenreType; }
void setPublisher( string Pub )
{ Publisher = Pub; }
void setPubYear( int Year )
{ PubYear = Year; }
int GetYear() //Accessors
{return PubYear;}
string GetTitle()
{return Title;}
string GetAuthor()
{return Author;}
string GetGenre()
{return Genre;}
string GetPublisher()
{return Publisher;}
void setBook( string BookTitle, string AuthorName, string GenreType, string Pub, int Year )
{
setTitle( BookTitle ); //Mutators
setAuthor( AuthorName );
setGenre( GenreType );
setPublisher( Pub );
setPubYear( Year );
}
void print()
{
cout << "Title: " << GetTitle() << endl
<< "Author: " << GetAuthor() << endl
<< "Genre: " << GetGenre() << endl
<< "Publisher: " << GetPublisher() << endl
<< "Year Published: " << GetYear() << endl;
};
};
//-------------------------------------------------
int main()
{
Book book1, book2, book3, book4, book5;
cout << "Start of test:\n";
book1.setBook("In Cold Blood", "Truman Capote", "Non-Fiction", "Random House", 1966);
book1.print();
return 0;
}
couldn't get it to work using your advice bob b.
i dont know what deconstructor you're talking about.
Answer:
Answer by bob b
I tried your code and i get linker errors with Visual C++ 2005.
Anyhow to get it working I had to put brackets with the constructor and deconstructor
Book(){/* do nothing… */}
~Book(){/* do nothing… */ }
and all works now… hope this helps…
Question: When a literary agent says: “I take literary fiction and genre fiction.” Does science fiction fit into those?
I’m trying to get my finished novel published, and to do this I am trying to find an agent. But every time I look at an agents expectations, it doesn’t say science fiction, it says literary/genre fiction or the like. Is this because all the agents I’m looking at don’t like science fiction, or does science fiction fit into these categories?
Answer:
Answer by Steve
Well, science fiction is considered a genre, AFAIK, so I’d say the agent should consider it. But if you can find someone who specifically says they take science fiction, query him in preference to someone who just says “genre fiction”.
I already have a college degree so I don’t need the credit. I don’t want to pay a ton of money for it, but I do want an actual class with actual assignments. And that’s creative writing as in FICTION. Thanks for your help. A class on the Northside would be great.
About
The Writers' Corner is dedicated to providing the tips and resources required for developing a career as a professional writer.Stuff We Like

