Answer Posted / ramprasad g
ans: +5
-5 will be stored as 2's complement of 5
2's complement of -5, is thus 2 times 2's complement of 5.
so the ans is 5 itself.
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
which type of aspect you want from the student.
How can I avoid the abort, retry, fail messages?
What are the data types present in c?
Tell us two differences between new () and malloc ()?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
How to explain the final year project as a fresher please answer with sample project
Simplify the program segment if X = B then C ← true else C ← false
What is a program flowchart?
What is a pointer in c?
Linked lists -- can you tell me how to check whether a linked list is circular?
How can I do peek and poke in c?
Explain how do you generate random numbers in c?
Why & is used in scanf in c?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Differentiate between declaring a variable and defining a variable?