1. When performing subtraction by addition in the 2's-complement system:





Ask Your Doubts Here

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

Comments

Show Similar Question And Answers
QA->Who were hailed for the invention of Addition; Subtraction and Division?....
QA->Which District in Haryana awarded for being the top performing district in the state under the Digital India campaign on 28th December 2015?....
QA->Who constituted a troup for practising and performing Kathakali under the aegis of Mangalam temple?....
QA->Which is the highest honour in the performing arts conferred by the Government of India?....
QA->Which steel firm has won the Prime Minister’s trophy for ‘Best Performing Integrated Steel Plant’ in 2015-16?....
MCQ->What is correct about the following program? #include class Addition { int x; public: Addition() { x = 0; } Addition(int xx) { x = xx; } Addition operator + (int xx = 0) { Addition objTemp; objTemp.x = x + xx; return(objTemp); } void Display(void) { cout<< x << endl; } }; int main() { Addition objA(15), objB; objB = objA + 5; objB.Display(); return 0; }....
MCQ->When performing subtraction by addition in the 2's-complement system:....
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....
MCQ->What will be the output of the following program? #include<iostream.h> struct MyData { public: int Addition(int a, int b = 10) { return (a = b + 2); } float Addition(int a, float b); }; int main() { MyData data; cout<<data.Addition(1)<<" "; cout<<data.Addition(3, 4); return 0; }....
MCQ->Convert each of the decimal numbers to 8-bit two's-complement form and then perform subtraction by taking the two's-complement and adding.

....
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