answersLogoWhite

0


Best Answer

It could mean anything without the proper context. It could be the first character in a three-character model number.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does the 0 mean in 011?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the slope intercept form of (011) with a slope of 1?

If you mean: (0, 11) then y = x+11


How do you write 011 in decimal form?

If you mean 011 then it is simply 11.0


How do you write a program in C to swap two variables without using the third one by taking some values?

xor swap is the swap you are asking for XORSwap( int a, int b ) { a = a ^ b; b = a ^ b; a = a ^ b; } xor is a bitwise operation like '&'(and) and '|'(or) but with the resulting value being one but not the other. 0 ^ 0 is 0 1 ^ 0 is 1 0 ^ 1 is 1 1 ^ 1 is 0 so if a is 6 and b is 3 a is 110 in binary b is 011 in binary step 1 a = a ^ b; a = 110 ^ 011 1 ^ 0 = 1 1 ^ 1 = 0 0 ^ 1 = 1 a is 101 after step 1 b remains 011 after step 1 step 2 b = a ^ b; b = 101 ^ 011 1 ^ 0 = 1 0 ^ 1 = 1 1 ^ 1 = 0 a remains 101 after step 2 b is 110 after step 2 step 3 a = a ^ b; a = 101 ^ 110 1 ^ 1 = 0 0 ^ 1 = 1 1 ^ 0 = 1 a is 011 after step 3 b remains 110 after step 3 a started as 110 ( 6 ) b started as 011 ( 3 ) a ended as 011 ( 3 ) b ended as 110 ( 6 ) no extra variables needed


How do you send a fax to Brazil from Canada?

To fax to Brazil from Canada, you would need to dial: 011-55-fax number 011 is to dial internationally, 55 is the country code for Brazil. Remove any 0 or + from the start of the number.


How do you send a fax from Canada to France?

Replace the 0 at the beginning of the French number with 011 33.


What is the smallest perfect cube and perfect square to the eleventh power?

0. 0 is a perfect square as well as a perfect cube. And 011 = 0. The next number will be 1.


How do you dial UK from Canada?

Dial 011 44, and then the UK number, omitting the trunk prefix 0. For example, London is area code 020, which becomes 011 44 20.


What is the code to ring UK from America?

011 44, followed by the UK number, omitting the initial 0.


What is the phone number to communicate state bank of India Delhi university branch?

011 27662310 011 27662306 Ashish Garg 011 27662310 011 27662306 Ashish Garg 011 27662310 011 27662306 Ashish Garg 011 27662310 011 27662306 Ashish Garg 011 27662310 011 27662306 Ashish Garg


In Michigan what does it mean when your charge is MI 011?

it means your an idiot like Larry Eyerly


How do you write 0.11 in expanded form?

011 = (0 x 100) + (1 x 10) + (1 x 1)


Truth table for 3-inputs LUTs?

input output 000 0 001 0 010 0 011 0 100 0 101 0 110 0 111 1 Just to generalize, No high output till all inputs are high.