1
vote
0answers
48 views

Does order of parameters in logical operators matters equality?

I'm constructing some class that will contains a logical expression: public enum LogicalOperator { And, Or }; public class LogicalExpression { public LogicalOperator Operator { get; private set; ...
1
vote
3answers
89 views

Boolean logic transformation rule explaining this switch to a Java ==?

I'm going through exercices on CodingBat. On this page there is this mention in the solution: // The above can be shortened to: // return ((aSmile && bSmile) || (!aSmile && ...
1
vote
1answer
881 views

Does knockout optimise for logical operators when evaluating data bindings?

For instance, if I have: <div data-bind="visible: viewModel.property1() || viewModel.property2()" /> ... if viewModel.property1() is true, does knockout still evaluate viewModel.property2()? ...
5
votes
4answers
280 views

Is (4 > y > 1) a valid statement in C++? How do you evaluate it if so?

Is that a valid expression? If so, can you rewrite it so that it makes more sense? For example, is it the same as (4 > y && y > 1)? How do you evaluate chained logical operators?
1
vote
3answers
891 views

Logic Evaluator in c# (Evaluate Logical (&& ,|| ) expressions)

In my project there is a Logic evaluation section, it take input as a string which contains logical expressions (true/false) . I want to evaluate this string and return a final Boolean value. ...
8
votes
1answer
239 views

Moving out before brackets with XOR

If I had the sum of products like z*a + z*b + z*c + ... + z*y, it would be possible to move the z factor, which is the same, out before brackets: z(a + b + c + ... y). I'd like to know how it is ...
3
votes
1answer
84 views

Not clear on this jQuery syntax: return !$()

I saw this code and I'm not clear what the '!' does in this line of jQuery code on the return on the jQuery object: $('#remove').click(function() { return !$('#select2 ...
3
votes
3answers
247 views

Can I simplify this conditional statement, which uses the logical negation operator?

Sorry if this is a "Logical Operators 101" kind of question. I've been staring at my screen for 15 minutes trying to wrap my head around it, but I'm stuck. Is there a more concise/elegant way to ...
3
votes
7answers
919 views

Null-coalescing operator and operator && in C#

Is it possible to use together any way operator ?? and operator && in next case: bool? Any { get { var any = this.ViewState["any"] as bool?; return any.HasValue ? any.Value ...