answersLogoWhite

0

There is not enough information in the question to ascertain whether or not the currency has been changed or demonetised. If not it will be worth 2 shillings, although it may be necessary to go to the Central bank to get it changed.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

What is the value of a 1967 Canadian 2 dollar centennial note?

two dollars


Who minted coins in the pine shiling?

Authorities in Boston gave permission to two men, John Hull and Robert Sanderson, to open a mint to manufacture coins.


Define bit in microprocessor?

: A Bit is a digit in the binary number system. It can have two values, 0 or 1. In computer RAM and ROM memory, a bit is a small electrical switch which is either on (value 1) or off (value 0).


What is the value of a 1966 UK Two Shilling?

A 1967 2 shilling coin is worth nothing really A 1967 2 shilling coin uncirculated would be worth around £1.50 maximum


Does a Canadian centennial 1 bill 1867-1967 with no serial number recorded have any value?

They usually sell for about two dollars.


What is represent by each bit in binary system?

In the binary system, each bit represents a power of two, with the rightmost bit being (2^0) (or 1) and each subsequent bit to the left representing the next higher power of two (e.g., (2^1), (2^2), etc.). A bit value of 1 indicates the presence of that power of two, while a value of 0 indicates its absence. For example, the binary number 1011 represents (2^3 + 0 \times 2^2 + 2^1 + 2^0), which equals 11 in decimal. Thus, each bit contributes to the overall value based on its position and binary state.


Who is the wise-cracker Greaser in the outsiders?

Of corse two - bit his name says it all two bit as in putting ur two cents in! XD


Is ther any value to two dollar bills?

If it's series 1976 or later, then it's still worth face value. Older ones are worth a bit more, but the value really depends on condition.


I have a 1967 kenndy half dollar with two heads?

It's a novelty or magicians coin and is Not a product of the US Mint, as to value maybe 5 bucks


What happens when contents of a register are shifted left to right?

When the contents of a register are shifted left, each bit moves to the next higher bit position, and a zero is typically inserted on the rightmost side. This operation effectively multiplies the value by two for each left shift. Conversely, when shifted right, each bit moves to the next lower bit position, with a zero or the sign bit (in the case of signed numbers) inserted on the left. This right shift operation effectively divides the value by two for each shift, discarding the least significant bit.


What are the limitations of Hamming Code?

Hamming code handles only single-bit errors-two or more errors will cause an incorrect syndrome value. It can detect double bit error but not corrected


What are the three basic types of data?

Java has a total of 8 primitive data types# byte: The byte data type is an 8-bit signed two's complement integer. It has a minimum value of -128 and a maximum value of 127 (inclusive). # short: The short data type is a 16-bit signed two's complement integer. It has a minimum value of -32,768 and a maximum value of 32,767 (inclusive) # int: The int data type is a 32-bit signed two's complement integer. It has a minimum value of -2,147,483,648 and a maximum value of 2,147,483,647 (inclusive). # long: The long data type is a 64-bit signed two's complement integer. It has a minimum value of -9,223,372,036,854,775,808 and a maximum value of 9,223,372,036,854,775,807 (inclusive). # float: The float data type is a single-precision 32-bit IEEE 754 floating point. # double: The double data type is a double-precision 64-bit IEEE 754 floating point. # boolean: The boolean data type has only two possible values: true and false. # char: The char data type is a single 16-bit Unicode character. It has a minimum value of '\u0000' (or 0) and a maximum value of '\uffff' (or 65,535 inclusive). In addition to the eight primitive data types listed above, the Java programming language also provides special support for character strings via the java.lang.String class. Enclosing your character string within double quotes will automatically create a new String object;For ex: String name = "Rocky"; would create a new String object of name "name" and holding an initial value "Rocky"