0
error in the question
namespace SoloLearn { class Program { static void Main(string[] args) { bool a=true; bool b=true; bool c=false; Console.WriteLine ((a&&b)||c); } } }
6 Answers
+ 1
Its valid.
0
if(a && b)
Console.WriteLine( a, b);
else
Console.WriteLine(c);
0
the question in the quiz is as in my example. so the answer is wrong bit you need to pick it to ass the test.
0
What question is it?
0
that the code is true only if c is false. while it can be true also for c = false just needs a and b to be true.
0
code is true



