1. The 2's complement of a binary number is derived by adding 1 to the 1's complement.



Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Show Similar Question And Answers
QA->Find the binary equivalent of decimal number 31?....
QA->The binary number of (12)10 :....
QA->The process of converting electrical signals into binary from is called....
QA->World’s first binary digital computer:....
QA->Convert to Binary (25)10=....
MCQ->What will be the output of the following program? #include<iostream.h> class Base { int x, y; public: Base() { x = y = 0; } Base(int xx) { x = xx; } Base(int p, int q = 10) { x = p + q; y = q; } void Display(void) { cout<< x << " " << y << endl; } }objDefault(1, 1); class Derived: public Base { Base obj; public: Derived(int xx, int yy): Base(xx, xx + 1) { } Derived(Base objB = objDefault) { } }; int main() { Derived objD(5, 3); Derived ptrD = new Derived(objD); ptrD->Display(); delete ptrD; return 0; }....
MCQ->Which of the following statements is correct about the C#.NET program given below? namespace IndiabixConsoleApplication { class Baseclass { int i; public Baseclass(int ii) { i = ii; Console.Write("Base "); } } class Derived : Baseclass { public Derived(int ii) : base(ii) { Console.Write("Derived "); } } class MyProgram { static void Main(string[ ] args) { Derived d = new Derived(10); } } }....
MCQ->The subtraction of a binary number Y from another binary number X, done by adding the 2's complement of Y to X results in a binary number without overflow. This implies that the result is....
MCQ->The 2's complement of a binary number is derived by adding 1 to the 1's complement.....
MCQ->Consider the following statements: In the 2's complement representation, negative numbers are stored in sign magnitude form.Taking 2's complement is equivalent to sign change.In a 4 bit complement representation of a binary number A.In the 2's complement representation the most significant bit (MSB) is zero for a positive number. Of these, the only true statements are....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution