answersLogoWhite

0

Are goasts true

User Avatar

Anonymous

15y ago
Updated: 8/17/2019

ohhhhhhhh...goasts are really true but only if the person is dead in the house...

isn't it scary absolutely true (in the house)

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Are there goasts?

yes


What are goasts scared of?

most are scared of people


What is the goasts name on SpongeBob SquarePants?

The Flying Dutchman


Can goasts take over your body?

Ghosts are entirely imaginary. So you may imagine them, but they have no reality.


What time do the first two goasts appear in the Christmas carol?

Marley is the first ghost and no time is given. The first two spirits of Christmas were to arrive at 1 in the morning.


Do goasts exist?

The existence of ghosts is a topic of debate and belief varies among individuals. While some people claim to have experienced encounters with ghosts, there is no scientific evidence to support their existence. Skeptics argue that these experiences can often be explained by psychological or natural phenomena.


MS Office is hardware true or false?

False. It is software.


Is it true or false that significant books about an event won't be published until a year or more after the event?

True because just like what happens at the twin towers there was a big book about it made by time magazine but that book was not made until years after the event


All rectangles are quadrilaterals true or false?

true


Is it true or false all integers are rational numbers?

It is true.


Is it true or false that if you create logical subdirectories you can more easily locate individual files?

true


What is the result of True AND False OR True?

True AND False OR True evaluates to True. IT seems like it does not matter which is evaluated first as: (True AND False) OR True = False OR True = True True AND (False OR True) = True AND True = True But, it does matter as with False AND False OR True: (False AND False) OR True = False OR True = True False AND (False OR True) = False AND True = False and True OR False AND False: (True OR False) AND False = True AND False = False True OR (False AND False) = True OR False = True Evaluated left to right gives a different answer if the operators are reversed (as can be seen above), so AND and OR need an order of evaluation. AND can be replaced by multiply, OR by add, and BODMAS says multiply is evaluated before add; thus AND should be evaluated before OR - the C programming language follows this convention. This makes the original question: True AND False OR True = (True AND False) OR True = False OR True = True