recategorized by
2,161 views

4 Answers

1 votes
1 votes

According to boolean algebra here two cases are possible :

Case 1 : if we consider the ‘+’ as the OR operator then the result would be 1(true) as 1 is equivalent to True signal in boolean algebra . It follows the rule that if we are performing OR operation , then if any one of the value is 1 ( true ) then the result would be true.

Case 2: if we consider the ‘+’ as boolean arithmetic operator i.e we are performing the addition of bits then the result would be 0(zero) 

0 votes
0 votes

In boolean algebra + operation means OR operation and ‘1’ refers to True(and ‘0’ as False). 

In OR operation we need only one input to be TRUE for the result to be TRUE.

So result is TRUE i.e. 1.

Answer:

Related questions

2 votes
2 votes
3 answers
1
admin asked Mar 31, 2020
1,055 views
The smallest integer that can be represented by an $8$-bit number in $2$'s complement form is :$-256$$-128$$-127$$0$
1 votes
1 votes
2 answers
2
admin asked Mar 31, 2020
1,221 views
The number $(25)_6$, in base $6$ is equivalent to _________ in binary number system.$11001$$10001$$11000$$10000$
2 votes
2 votes
4 answers
3
2 votes
2 votes
2 answers
4
admin asked Mar 31, 2020
939 views
In binary search tree which traversal is used for getting ascending order values ?InorderPreorderPostorderNone of the options