Giter VIP home page Giter VIP logo

Comments (19)

SarahTew avatar SarahTew commented on August 27, 2024

True

Work:
not (not True or False and True) or False
not (False or False and True) or False
not (False or False) or False
not (False) or False
True or False
True

from 2020-2021.

edoardodalborgo avatar edoardodalborgo commented on August 27, 2024

not(((not T) or F) and T) or F -> not((F or F) and T) or F -> not( F and T) or F ->not F or F ->
T or F -> T

from 2020-2021.

giorgiasampo avatar giorgiasampo commented on August 27, 2024

The Value is TRUE because:
-not TRUE is FALSE - not (False or False and True) or False
-FALSE and TRUE is FALSE - not (False or False) or False
-FALSE or FALSE is FALSE - not (False) or False
-Not FALSE is TRUE - True or False
-TRUE or FALSE states TRUE

from 2020-2021.

ChiaraCati avatar ChiaraCati commented on August 27, 2024

not (not True or False and True) or False
-> not (False or False and True) or False
-> not (False or False) or False
-> not False or False
-> True or False
-> True

from 2020-2021.

fcagnola avatar fcagnola commented on August 27, 2024

Given the statement: not (not True or False and True) or False

the order of operation as I understood it should be not->and->or, and parentheses before everything else, so:
not (False or False and True) or False
not (False or False) or False
not False or False
True or False
True

from 2020-2021.

dbrembilla avatar dbrembilla commented on August 27, 2024

The boolean value is True
Procedure:
not (not True or False and True) or False
not (False or False and True) or False
not (False or False) or False
not False or False
True or False
True

from 2020-2021.

vanessabonanno avatar vanessabonanno commented on August 27, 2024

As my colleagues answered before I believe the answer is True:

not(not True or False and True) or False
not(False or False and True) or False
not(False and True) or False
not(False) or False
True or False
True

from 2020-2021.

AlessandraFa avatar AlessandraFa commented on August 27, 2024

The boolean value should be True:

not (not True or False and True) or False
not (False or False and True) or False
not (False or False) or False
not False or False
True or False
True

from 2020-2021.

gabrielefiorenza avatar gabrielefiorenza commented on August 27, 2024

True:
not(not True or False and True) or False
not(False or False and True) or False
not(False or False) or False
not False or False
True or False
True

from 2020-2021.

LuisAmmi avatar LuisAmmi commented on August 27, 2024

The boolean value is TRUE. The method followed is checking the values on the table 1 and replacing terms with the corresponding boolean values.

Not (not-True or False-and-True) or False
Not (False or False) or False
Not (False) or False
True o False
True

from 2020-2021.

samuelespotti avatar samuelespotti commented on August 27, 2024

not (not True or False and True) or False

  • not (False or False and True) or False
  • not (False or False) or False
  • not False or False
  • True or False
  • True

from 2020-2021.

lauratravaglini avatar lauratravaglini commented on August 27, 2024

no(not True or False and True) or False

not(False or False and True) or False
not(False or False) or False
not False or False
True or False
True

from 2020-2021.

GiuliaMenna avatar GiuliaMenna commented on August 27, 2024

not (not True or False and True) or False?

not (F or F and T) or F
not (F or F) or F
not (F) or F
not F or F
T or F =
TRUE

from 2020-2021.

SusannaPinotti avatar SusannaPinotti commented on August 27, 2024

The boolean value resulting from this expression is True.

from 2020-2021.

yunglong28 avatar yunglong28 commented on August 27, 2024

not (not True or False and True) or False
not (False or False) or False
True or False
True

from 2020-2021.

laurentfintoni avatar laurentfintoni commented on August 27, 2024

the Boolean value is True.

We start with the operations between (). not True gives us False. False or False and True gives us False because the and operation requires both values to match and the or operation requires one value to be True. So now we have not (False), which is True. And the final is True or False, which is True.

from 2020-2021.

penelopelask avatar penelopelask commented on August 27, 2024

not (not True or False and True) or False

not (False or False) or False

not (False) or False

True or False

True.

from 2020-2021.

AleRosae avatar AleRosae commented on August 27, 2024

The answer is True. Here is the procedure:

not (not True or False and True) or False

not (False or False and True) or False

not (False or False) or False

not (False) or False

True or False

True

from 2020-2021.

IlaRoss avatar IlaRoss commented on August 27, 2024

not (not true or false and true) or false
not (false or false and true) or false
not (false or false) or false
not false or false
true or false
true

from 2020-2021.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.