0 0 votes https://gateoverflow.in/1413/gate2013-4 In the first question if due to the range of 2's complement number the answer is -128 https://gateoverflow.in/39649/gate2016-1-07 Why the answer is -11 here? Here also the number is -ve and answer should be -12 due to the range.. Digital Logic digital-logic number-representation + – Shamim Ahmed 646 views answer comment Share Follow Print See all 2 Comments 2 2 Comments reply Shamim Ahmed commented Nov 7, 2018 reply Follow flag According to me the first number is to be represented in 2's complement form. so we considered 2's complement range and hence the answer is -128. In case of 2nd number the number is to be represented in decimal form, which doesnt have any relation with 2's complement range. Hence the answer is simply -11. Correct me if i am wrong .. 0 0 replyShare Shaik Masthan commented Nov 7, 2018 reply Follow flag In case of 2nd number the number is to be represented in decimal form, Number represented in 2's complement form and they want equivalent decimal number 1111 1111 1111 0101 in 2's complement representation form ===> 1 0101 in 2's complement representation form ( by ignoring leading 1's expect one ) 1 0101 in 2's complement representation form = -1*24 + 1*22 + 1*20 . = -16 + 4 + 1 = -16+5 = -11 1 1 replyShare Please log in or register to add a comment.