answersLogoWhite

0


Best Answer

convert 1101 to decimal

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What operator makes converts 00110011 into 11001100?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What are the disadvantage of operator overloading?

The only disadvantage of operator overloading is when it is used non-intuitively. All operators must behave with predictable results, thus it makes no sense to implement the plus (+) operator so that it behaves like a subtract (-) operator, or a multiply (*) operator, or indeed anything other than the intuitive sum of two objects.


Why is it necessary to overload an operator?

The assignment is done explicit without internal operation. Subject to the programming language, explicit assignment operators are needed wherever implicit ones are insufficient. Implicit assignment is typically implemented as a flat copy, while explicit overloading of the assignment operator allows for any other suitable behavior. Consider this example in pseudocode similar to C++: class Demo { int* valuepointer; ... }; Demo a, b; ... b = a; Assigning a to b using implicit assignment means that a.valuepointer and b.valuepointer share the same value. Both a and b can change the pointed-to value, and the either will "see" the change. This is the required behavior in some cases, but often, you'd want to explicitly assign a to b such that each has its own pointer, accessing different copies of the value. This behavior would require an explicit assignment operator (or copy constructor).


What is meant by compile time operator in c?

A compile time operator is an operator involved in an expression where the result is known at compile time. An example is the expression 1 + 2 * 4. Since 1, 2, and 4 are literal expressions, the result is known at compile time, and there is no need to generate code to evaluate it. The compiler is free to substitute the expression 9 in place of the expression 1 + 2 * 4. Don't bother doing it yourself - sometimes the clarity of writing what you are trying to accomplish makes for more well documented code.If you do not have such a compiler, it is high time that you upgrade.


Explain the phase an instrument is only as good as its operator?

Using instrument in the musical sense, all violins are basically the same. A body, some strings and a bow. It makes a big difference who is playing it. This can be applied to anything, bowling ball or backhoe. Most anyone can use either, but how well either is used makes a big difference.


What is the importance of overloading and overriding?

The only disadvantage of operator overloading is when it is used non-intuitively. All operators must behave with predictable results, thus it makes no sense to implement the plus (+) operator so that it behaves like a subtract (-) operator, or a multiply (*) operator, or indeed anything other than the intuitive sum of two objects.

Related questions

What operator makes converts 00110011 to 11001100?

e


Arithmetic operator that makes a number negative?

Negation


What is an arithmetic operator that makes a number negative?

A minus sign. (-)


How do vechicles work?

The driver/operator makes the vehicle work.


What is the annual salary of an oil rig radio operator?

My parent is a radio operator in the North Sea and makes $140,000 CDN/year


How much does a Radio operator on a Oil rig makes a year?

A radio operator on an oil rig makes an average of $42,000 a year. Although it's an important job, it's an easy job.


What is the arithmetic operator that makes a number negative in Excel?

The minus sign.


How much money do a bulldozer operator makes annnually?

30,000 to 40,000


Who makes more a truck driver or a crane operator?

A HGV Driver


How does a press operator makes?

I assume your talking about a hydraulic press or crank press operator. If so they can make anywhere from $11.00/ hr "entry level" up to $22.00 for a very experienced operator.


How much money does a pbx operator make?

How much does a PBX or virtual PBX operator makes depends on which company he is employed. It can be $45000 or more annually.


What are the disadvantage of operator overloading?

The only disadvantage of operator overloading is when it is used non-intuitively. All operators must behave with predictable results, thus it makes no sense to implement the plus (+) operator so that it behaves like a subtract (-) operator, or a multiply (*) operator, or indeed anything other than the intuitive sum of two objects.