answersLogoWhite

0

The value of an Alfonso XII 1879 "La Gracia de Dios" coin, which features the Spanish king, can vary based on its condition, rarity, and demand among collectors. Typically, these coins are worth anywhere from a few dollars to several hundred dollars, depending on their specific grade and market trends. To get an accurate valuation, it's best to consult a numismatic expert or look at recent auction prices for similar coins.

User Avatar

AnswerBot

3mo ago

What else can I help you with?

Continue Learning about General Arts & Entertainment

What actors and actresses appeared in Endgame - 2001?

The cast of Endgame - 2001 includes: Adam Allfrey as Mark (barman) Darren Bancroft as Det. Const. Worth Toni Barry as Nikke Bergman John Benfield as Dunston Perry Blanks as Det. Const. Clarke Alain Bourgoin as French man Russell Floyd as Merchant Corey Johnson as Max Bergman Jeremy Legat as Jonathan Norris Ben Macleod as Young Tom Phillip Manikum as Farmer Murray McArthur as Det. Const. Kenny Mark McGann as Norris Kate McKenzie as Kathy Norris Daniel Newman as Tom Sam Smart as Det. Const. Wilson


What movie and television projects has Tony Shepp been in?

Tony Shepp has: Played Danny Lucas in "Homicide" in 1964. Played Will Copfield in "Homicide" in 1964. Played Bob in "Hunter" in 1967. Played Constable in "Division 4" in 1969. Played Mike in "Division 4" in 1969. Played Const. Grice in "Division 4" in 1969. Played Const. Tony Grice in "Division 4" in 1969. Played Jimmy Gordon in "The Long Arm" in 1970.


What actors and actresses appeared in Pippi Longstocking - 1997?

The cast of Pippi Longstocking - 1997 includes: Melissa Altro as Pippi Longstocking Tomas Bolme as Const. Klang Wallis Grahn as Mrs. Prysselius Pontus Gustafsson as Blom Jasmine Heikura as Annika Peter Karlsson as Dunder-Karlsson Elin Larsson as Pippi Longstocking Gordon Pinsent as Capt. Longstocking Carole Pope as Teacher Wayne Robson as Bloom Jan Sigurd as Const. Kling Dave Thomas as Thunder-Karlsson


What actors and actresses appeared in Straight Is the Way - 1921?

The cast of Straight Is the Way - 1921 includes: Mabel Bert as Aunt Mehitabel Van Dyke Brooke as Const. Whipple Emily Fitzroy as Mrs. Crabtree Gladys Leslie as Dorcas Peggy Parr as Bobby Henry Sedley as Jonathan Squoggs


What movie and television projects has Malcolm Keith been in?

Malcolm Keith has: Played Ron Flint in "Z Cars" in 1962. Played Contestant in "Play for Today" in 1970. Played Car Salesman in "The Brothers" in 1972. Performed in "Chopper Squad" in 1977. Played Const. Simms in "Scales of Justice" in 1983. Played Real Estate Boss in "A Street to Die" in 1985.

Related Questions

What is value ofcoin rey const de espana diez centimos alfonso x11?

Four to five dollars


Alfonso XII por la gracia de dios rey const de espana Diez centimos 1879?

1878 alfonso xii por la gracia de dos hoe much is the value.what is the value of this coin


What actors and actresses appeared in Los deseos concebidos - 1983?

The cast of Los deseos concebidos - 1983 includes: Heidi Dettwiler as Prima de Const Tennyson Ferrada as Rector del liceo Leonardo Gaggero as Oso Alfonso Luco as Const Javier Maldonado as Profesor de Castellano


What is the difference between inline and const?

Everything. "inline" refers to functions, "const" refers to variables.


How do you declare a constant Explain it with a suitable example?

Declaring a Constant: We can declare a constant using the keyword "const". E.g. const abc='a';const number=10; const number[10]={1,2,3,4,5,6,7,8,9,10}; const name[7]={'K','U','N','D','A','N'}; #include<stdio.h> #include<conio.h> void main() { int i; const name[7]={'K','U','N','D','A','N'}; for(i=0;i<7;i++) { printf("%c",name[i]); getch(); }


What is the prototype of printf function?

in stdio.h:extern int printf (const char *fmt, ...);


In programming what values do not change?

const type, for instance (const double = 1.1; this you cannot change during run)


When did Nigeria first get a Constitution?

1960(independence constitution). Since then,there has been the 1963 republican constitution, the 1975 const., [ the aborted 1989 const., the aborted 1993 const.,] and the currently operating 1999 constitution


How do you find the general equation of cone using C language?

If you mean the "general equation of a cone" to be the elliptical cone equation: z = √( (x/a)2 + (y/b)2 ) ... then the function in C to compute this given the proper variables is: double genEqCone(const double x, const double y, const double a, const double b) { const double X_A = (x/a); const double Y_B = (y/b); return sqrt((X_A * X_A) + (Y_B * Y_B)); }


How can we replace the value of const variable using scanf statement?

You cannot change the value of a const variable. That's what const means - it is constant. If you are considering "trickery" using pointers and the scanf function, understand that this is not supported, is highly non portable, and may fail, depending on whether or not the implementation places its const data in read only memory. Besides, most modern compilers will not allow you to place a const variable as a non-const argument to a function. Use the language within its defined boundaries.


What are the different types of integer constants in c language?

Well, uh, const unsigned int and const signed int..


What is the full form of printf or scanf?

int printf (const char *fmt, ...)orint scanf (const char *fmt, ...)