The U.S. and Mexico share a 2,000 mile border, 200 years of history and more personal relationships than anyone can count. But they may be even more interconnected than you think. Take our AQ quiz and see if you can decide whether these 12 items are best described as Mexican, American or Both.
Both. Caesar Cardini, an Italian immigrant living in San Diego in the 1920s, invented this salad to satisfy hungry gringos who flocked to his Tijuana restaurant during Prohibition. His eponymous dining hall still stands on Tijuana’s Avenida de la Revolución.
Both. The masked hero of the Mexican countryside was actually created by Johnston McCulley, a pulp fiction writer of the 1920s who was born in Illinois. In most versions of the story, Zorro is the secret identity of Don Diego de la Vega, a nobleman in California in the era of Mexican rule. Nearly all the actors who have played the part have been Americans, with some notable exceptions (Antonio Banderas, for example, is Spanish).
American. The Carolina Reaper is a chili pepper created in Rock Hill, South Carolina, by the PuckerButt Pepper Company. The reaper has been certified as the world’s hottest chili by Guinness World Records since 2013.
Both. Born in the U.S. to a Mexican father, the comedian Louis C.K. lived in Mexico from age one to seven. He holds a Mexican passport.
Both. U.S. airline giant Boeing makes its signature long-haul craft with parts from all over the world—including thrust reversers manufactured in Mexico.
Both. Cinco de Mayo commemorates Mexico’s unlikely defeat over the French army in the Battle of Puebla in 1862, but the celebration is far more widely recognized in the U.S. than south of the border (to which an annual parade of tequila shots and mariachi bands can attest). Cinco de Mayo was first celebrated in the U.S. by immigrants during the Civil War. In Mexico, only the state of Puebla officially recognizes the holiday.
Mexican. No Tex-Mex here, chilaquiles are 100 percent Mexican. The tasty dish, prepared with fried tortillas and green or red chili sauce, is typically served for breakfast.
Both. The all-star first-baseman was born and went to high school in San Diego, but grew up in Tijuana and played Little League on both sides of the border. He now plays for the Los Angeles Dodgers and has captained Mexico in the World Baseball Classic.
Both. Cattle herding may have originated in Spain, but the cowboy lifestyle first took root in the new world. The early cowboys were “vaqueros,” indigenous Mexicans trained by the Spanish in the 1500s. The activity later spread to Texas, Arizona and New Mexico in the 1700s – along with all the yee-haw we associate with cowboys today.
Both. The actress was born in Texas to ninth-generation Mexican-American parents. She considers herself a “Texican.”
Mexican. Despite Americans’ reputation for showy patriotism, the title for the world’s largest flag belongs to Mexico. Visitors to the capital Mexico City will find a few rather sizable examples, but the largest flag the world has ever flown was in the northern town of Piedras Negras in 2011, according to Guiness World Records.
Cadillac Escalade
Both. Cadillac, the second-oldest automobile brand in the U.S., manufactures its Cadillac Escalade SRX model in Mexico.
$(document).ready(function() { currentQuestion = 1; $('#finalMessageLow').hide(); $('#finalMessageHigh').hide(); $('#finalMessageMed').hide(); numberOfQuestions = $("#quiz div.question").length; questionsRemaining = numberOfQuestions; correctQuestions = 0; $('.question ul li a').click(function() { if (!$(this).parent().parent().hasClass('answered')) { $(this).parent().parent().addClass('answered') var checkExplanation = $(this).parent().parent().parent().find('span.cData').text(); if ($(this).parent().hasClass('i')) { checkResponse = checkExplanation; $(this).addClass('wrong'); $(this).parent().find('span').html(checkResponse); } if ($(this).parent().hasClass('c')) { checkResponse = checkExplanation; $(this).addClass('right'); correctQuestions = correctQuestions + 1; $(this).parent().find('span').html(checkResponse); } questionsRemaining = questionsRemaining - 1;
if (questionsRemaining == 1){ $('#quizMessage').html(questionsRemaining + " question remaining"); } else { $('#quizMessage').html(questionsRemaining + " questions remaining"); }
if (questionsRemaining == 0){
// alert(correctQuestions);
$('#quizMessage').html(''); $('.finalResult').text(correctQuestions);
if (correctQuestions > 8) { $('#finalMessageHigh').show(); // alert(correctQuestions); }
if ( (correctQuestions > 5) && (correctQuestions < 9)) { $('#finalMessageMed').show(); // alert(correctQuestions); } if (correctQuestions < 6) { $('#finalMessageLow').show(); // alert(correctQuestions); } } } }); });