answersLogoWhite

0

Sometimes it is true because you never know if one of your firends are not your real friends. they might try to get closer to you so that they find your weakness and stab you in your back with out you noticing.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What is a true best friend?

A true best friend is someone you can trust and someone who treats you kindly and never lies to you. A best friend is someone you can depend on, someone who you can share your sad times with and your funny times with. A true best friend is someone you can tell anything to!


Administer mediction true our false?

To what i Think is that it depend to you What is True or What is False, just Follow your Heart To what you think is right or wrong.


The UCC risk of loss rules depend on transfer of title true or false?

False.


True or false Wireless networks depend on physical security to ensure the transeactions are safe?

False


True or false- The cost of attending a sport event rarely rises above the level of the ticket price?

True,but it does depend on what you buy.=True,but it does depend on what you buy.=


When you delegate someone to do something you authorize them to do it true or false?

That is true.


One someone has hepatitis b the vaccine for them is of no use True or false?

One someone has hepatitis b the vaccine for them is of no use True or false?


True or False Fate is the things that happen to someone?

It is true to say that Fate is the things that happen to someone.


Advances in technology never depend on advances in science?

(true or false)advances in technology never depend on advances in science


To prompt someone during a play is to tell them their lines true or false?

True


when There is no requirement to take action to identify and discipline those responsible for the unauthorized disclosure of Controlled Unclassified Information?

False


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