answersLogoWhite

0

Julian Saget was a gunsmith in New Orleans from about 1860 to 1890. I have a J Saget double barrel that was imported from Leige, Belgium. It has an engraving of ducks on the water surronded by J Saget, New Orleans, LA. It is a 16 guage with 44 inch barrels. I bought it from an antique dealer in New Orleans. Is this similar to your gun?

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

What is the value of a j Reynolds double barrel shotgun?

i.have.a.j-reynolds-double barrel 16ga belguim rabbit ear shotgun seaking information


When was Double-J - manga - created?

Double-J - manga - was created in 2011.


What is the value of a J Saget and son shotgun?

The value of a J. Saget and Son shotgun can vary significantly based on factors such as its age, condition, and specific model. Generally, these shotguns can range from a few hundred to several thousand dollars. For an accurate appraisal, it's best to consult a firearms expert or appraiser who can evaluate the piece in person. Collectors often seek out specific details like engraving, rarity, and provenance, which can also influence the price.


Write a program to substract two 3x3 matrices?

Subtract3by3 (double *a, double *b) { int i, j for (i=0; i<3; i++) for (j=0; j<3; j++) a[i*3+j] -= b[i*3+j]; }


Where can you find information about a 410 J Stevens Arms Co Model 240 double barrel shotgun - over and under?

Library


Where can you find information a blackpowder pistol with American Gun Co New York on the lock assembly and J Gebhard Ft Wayne engraved on the barrel?

American Gun Co was a trade name used by H&D Folsom, usually found on single and double barrel shotguns c. 1880-1920. The company began operation about 1860 so it is quite possible that they would have distributed some muzzle loaders. I can't find anything about J Gebhard on Google. I suspect was a hardware store in Ft Wayne Indianna, but the original owner could have had his name engraved on the barrel.


What is a fair price of a j saget and son 12 ga black power shot gun?

The fair price for a J. Saget and Son 12-gauge black powder shotgun can vary based on its condition, age, and market demand, but generally ranges from $300 to $800. Factors such as historical significance, rarity, and any modifications or restorations can also influence its value. It's advisable to check recent sales of similar models and consult with a firearms expert or appraiser for a more accurate assessment.


Write a program in c to find the largest no out of a matrix of order mn?

/* using ellipses (...) to indicate tabs for clarity */ double largest (double *array, int M, int N) { ... int i, j; ... double *element; ... double answer = array[0][0]; ... for (i=0; i<M; i++) { ... ... for (j=0; j<N; j++) { ... ... ... element = array + i*M + j; ... ... ... if (*element > answer) answer = *element; ... ... } ... } ... return answer; }


What words have double j in them?

Jumunji?


Are there words with a double j?

No, never.


Value of j t randall double barrel shotgun?

estimated value of a double-barrel J T randall shotgun


How do you find maximum number in an array?

double max(const arr[], int arrSize){double maximum = arr[0];for (int j = 0; j < arrSize; j++){if (maximum < arr[j]){maximum = arr[j];}}return maximum;}