answersLogoWhite

0

The Roman numeral for 12 is XII

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How do you enter 1200 in numeric?

1,200


How do you write 12.00 in a numeric character?

how do you write $12.00 in a numeric character?


Input numeric value of 1200 USD?

MCC


How to check whether a character is numeric in an alphanumeric field in easytrieve.?

IF WS-AGE NUMERIC DISPLAY "NUMERIC" ELSE DISPLAY "NOT NUMERIC' END-IF


What is a non numeric character?

Any character except numbers. So letters, punctuation symbols etc. are non-numeric.


What is a non-numeric character?

Any character except numbers. So letters, punctuation symbols etc. are non-numeric.


What is non numeric character?

Any character except numbers. So letters, punctuation symbols etc. are non-numeric.


How do you write 1400.00 in numeric character?

They are all numeric characters, exactly as you have written it.


What is a numeric character on keyboard?

vn1898553


How do you write 1200 in a numeric?

To write 1200 in numeric form, you simply write the digits 1, 2, 0, and 0 in that order. The number 1 is in the thousands place, the number 2 is in the hundreds place, and the two zeros represent no value in the tens or ones place. Therefore, 1200 is written numerically as 1,200.


What is a numeric character?

a digit (number) as opposed to a letter--


What is difference between '1' and 1 in c plus plus?

1 is an integral integer type with the numeric value 1. '1' is an integral character type with the numeric value 49. That is, ASCII character 49 returns the symbol '1'. To convert an ASCII character in the range '0' to '9' to its integral numeric value, subtract character '0' from the character. ASCII character '0' has the numeric value 48, thus '1' - '0' = 49 - 48 = 1. To convert a numeric value in the range 0 to 9 to its ASCII character equivalent, add character '0' to the value. Thus 1 + '0' = 1 + 48 = 49 = '1'.